/* Reset global e box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #2d0b4e;
    --accent-yellow: #ffb800;
    --purple-primary: #6b21a8;
    --purple-light: #f5f3ff;
    --text-dark: #1e1b4b;
    --white: #ffffff;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f8f7fa;
}

/* Header com reserva de espaço fixa para evitar CLS */
header {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 3.5rem 1rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.6rem;
    color: var(--accent-yellow);
    font-weight: 800;
    letter-spacing: -0.5px;
}

header p {
    font-size: 1.25rem;
    color: #f3e8ff;
    max-width: 700px;
    margin: 0.5rem auto 0;
}

/* Foto com dimensões cravadas em pixels para zerar o layout shift */
.foto-perfil {
    width: 240px;
    height: 240px;
    min-width: 120px;
    min-height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent-yellow);
    object-fit: cover;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-cta-wrapper {
    text-align: center;
    margin-top: 1.8rem;
}

main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(45, 11, 78, 0.05);
}

h2 {
    color: var(--bg-dark);
    border-bottom: 3px solid var(--accent-yellow);
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
}

/* Layout da Grade de Modelos */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: var(--white);
    border: 1px solid #e9d5ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease; /* APENAS transform */
}

.card:hover {
    transform: translateY(-3px);
}


.btn-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--purple-primary);
    text-decoration: none;
    font-weight: 700;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Botões Principais de Conversão (CTA) */
.cta-btn {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: #1a052e;
    padding: 1rem 2.2rem;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.25); /* Sombra fixa */
    transition: transform 0.2s ease, background-color 0.2s ease; /* Sem transição de sombra */
}

.cta-btn:hover {
    background-color: #e6a100;
    transform: translateY(-2px);
}
.diferenciais-lista {
    list-style: none;
    padding: 0;
}

.diferenciais-lista li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3e8ff;
}

.diferenciais-lista li:last-child {
    border-bottom: none;
}

blockquote {
    background: var(--purple-light);
    border-left: 4px solid var(--purple-primary);
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--text-dark);
    border-radius: 0 8px 8px 0;
}

/* Seção Números */
.numeros {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    margin: 1.5rem 0;
    gap: 1rem;
}

.numeros .item {
    padding: 1rem;
    flex: 1;
    min-width: 200px;
}

.numeros .numero {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--purple-primary);
    display: block;
    margin-bottom: 0.3rem;
}

/* FAQ sem animações não compostas */
.faq-container {
    max-width: 800px;
    margin: 20px auto 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e9d5ff;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 15px;
}

.faq-item[open] {
    border-color: var(--purple-primary);
}

.faq-item[open] {
    border-color: var(--purple-primary);
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.08);
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    outline: none;
    list-style: none;
    color: var(--bg-dark);
}

.faq-resposta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3e8ff;
    color: #374151;
    line-height: 1.6;
}

.contato-section {
    text-align: center;
    padding: 40px 20px;
}

.contato-section p {
    margin-bottom: 25px;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-dark);
    color: #d8b4fe;
    margin-top: 4rem;
}

footer a {
    color: var(--accent-yellow);
    text-decoration: none;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-flutuante {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-flutuante:hover {
    background-color: #128c7e;
    transform: scale(1.08);
}

.whatsapp-flutuante svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

/* Responsividade */
@media (max-width: 600px) {
    header h1 { font-size: 1.8rem; }
    .cta-btn { display: block; width: 100%; text-align: center; }
    .numeros { flex-direction: column; }
}