/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #1A1A1A;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /* fica por cima da banner/hero */
    top: 20px;
    left: 0;
    z-index: 999;
    /* fica sempre acima do hero */
    background: transparent;
    /* hero aparece por trás */
}

.navbar__logo img {
    height: 50px;
    /* AUMENTA OU DIMINUI AQUI */
    width: auto;
    display: block;
}


/* HERO */
/* ---------------- HERO GERAL ---------------- */

.hero {
    position: relative;
    padding: 80px 0 120px;
    background:
        linear-gradient(rgba(10, 20, 40, 0.75),
            rgba(5, 10, 25, 0.85)),
        url("images/hero\ 1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fdfdfd;
    overflow: hidden;
}

.selo-natal {
    top: -20px;
    /* ajusta vertical */
    left: -40px;
    /* ajusta horizontal */
    width: 500px;
    /* tamanho do selo */
    opacity: 0.9;
    /* brilho */
    z-index: 0;
    /* fica atrás do texto */
    pointer-events: none;
}

/* garante que o conteúdo fique acima do fundo */
.hero>.container {
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: center;
}

/* ---------------- TAG / PILL ---------------- */

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 199, 44, 0.12);
    border: 1px solid rgba(255, 199, 44, 0.6);
    font-size: 14px;
    font-weight: 600;
    color: #ffd863;
    margin-bottom: 20px;
}

.hero__pill-icon,
.hero__pill-spark {
    display: inline-flex;
}

/* ---------------- TEXTO ESQUERDA ---------------- */

.hero__title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin: 0 0 14px;
}

.hero__highlight {
    color: #ffc72c;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.hero__subtitle {
    max-width: 520px;
    font-size: 16px;
    color: #c3cbf1;
    margin-bottom: 30px;
}

/* ---------------- BOTÕES ---------------- */

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn--primary {
    background: #ffc72c;
    color: #172344;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.btn--ghost {
    background: transparent;
    color: #fdfdfd;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* ---------------- STATS ---------------- */

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 8px;
}

.hero__stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    color: #c3cbf1;
}

.hero__stat-number {
    font-weight: 700;
    color: #ffc72c;
}

.hero__stat-text {
    opacity: 0.9;
}

/* ---------------- COLUNA DIREITA / CARD ---------------- */
.hero-card {
    max-width: 1280px;
    position: relative;
}

/* borda externa glass */
.hero-card__outer {
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.25),
            rgba(10, 21, 49, 0.15));
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

/* bloco interno */
.hero-card__inner {
    border-radius: 24px;
    min-height: 320px;
    background: radial-gradient(circle at 20% 0%, rgba(255, 199, 44, 0.14), rgba(3, 12, 32, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
    color: #f4f4f8;
}

/* SELO GRANDE DA CAMPANHA */
.hero-selo {
    position: absolute;
    top: -20px;
    /* ajusta vertical */
    left: -40px;
    /* ajusta horizontal */
    width: 300px;
    /* tamanho do selo */
    opacity: 0.9;
    /* brilho */
    z-index: 0;
    /* fica atrás do texto */
    pointer-events: none;
}

/* garante que o texto fique acima do selo */
.hero__left>* {
    position: relative;
    z-index: 2;
}


/* ---------------- RESPONSIVO ---------------- */

@media (max-width: 1024px) {
    .hero__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 60px;
    }

    .hero__title {
        font-size: 38px;
    }
}

@media (max-width: 800px) {
    .hero {
        padding: 40px 0 60px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__right {
        order: -1;
        /* card sobe pra cima no mobile, se quiser tira isso */
    }

    .hero-card {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero__stats {
        gap: 16px;
    }
}

/* =========================
   SEÇÃO CAIXA SURPRESA
   ========================= */

.gift-section {
    position: relative;
    padding: 90px 0 80px;
    background: #fff9ec;
    /* fundo clarinho */
    overflow: hidden;
}

/* curva suave separando do bloco azul anterior */
.gift-section::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    height: 120px;
    background: #fff9ec;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

/* textura de pontinhos bem suave */
.gift-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 199, 44, 0.18) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.25;
    pointer-events: none;
}

.gift-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: center;
}

/* ---------- CARD ESQUERDA ---------- */

.gift-card {
    max-width: 480px;
    margin: 0 auto;
}

.gift-card-inner {
    position: relative;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
    padding: 16px;
}

/* ilustração interna com degradê */
.gift-illustration {
    border-radius: 26px;
    background: radial-gradient(circle at 10% 0%, #ffe2c7 0, #fff5c6 45%, #e5ffe5 100%);
    min-height: 320px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.imagem-caixa {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ícone central */
.gift-icon {
    font-size: 64px;
    color: #e53935;
    /* vermelho da caixa */
    margin-bottom: 26px;
}

/* pill “GRÁTIS” */
.gift-free-pill {
    border: none;
    outline: none;
    border-radius: 999px;
    padding: 10px 26px;
    background: #ffc72c;
    color: #18213c;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.03em;
    cursor: default;
    box-shadow: 0 14px 30px rgba(255, 199, 44, 0.65);
}

/* fitas no canto superior direito */
.gift-card-ribbons {
    position: absolute;
    top: 0;
    right: 40px;
    width: 40px;
    height: 80px;
}

/* base da fita */
.gift-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 70px;
    border-radius: 0 0 14px 14px;
}

.gift-ribbon--yellow {
    background: #ffc72c;
    z-index: 2;
}

.gift-ribbon--red {
    background: #e53935;
    right: 18px;
    top: 10px;
    z-index: 1;
}

/* ---------- TEXTO DIREITA ---------- */

.gift-text {
    color: #0c1b3e;
}

.gift-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(229, 57, 70, 0.06);
    border: 1px solid rgba(229, 57, 70, 0.45);
    color: #e53935;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.gift-tag-icon {
    font-size: 16px;
}

.gift-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 14px;
    color: #0c1b3e;
}

.gift-subtitle {
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    color: #6f7287;
    margin-bottom: 22px;
}

/* lista com bullets amarelos */
.gift-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.gift-list li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    color: #555b7b;
    margin-bottom: 8px;
}

.gift-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffc72c;
}

/* CTA */
.gift-cta {
    margin-top: 10px;
}

.gift-cta-btn {
    padding-inline: 30px;
}

/* reaproveitando .btn e .btn--primary do hero;
   se quiser específico pra cá, é só criar variação */


/* ---------- RESPONSIVO ---------- */

@media (max-width: 960px) {
    .gift-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gift-card {
        order: -1;
        /* card vem primeiro no mobile */
    }

    .gift-text {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .gift-section {
        padding: 70px 0 60px;
    }

    .gift-card-inner {
        padding: 24px;
    }

    .gift-illustration {
        padding: 50px 26px;
    }

    .gift-title {
        font-size: 26px;
    }

    .gift-subtitle {
        font-size: 15px;
    }

    .gift-cta-btn,
    .gift-cta-btn.btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   SEÇÃO SORTEIO / KIT SOLAR
   ========================= */

.raffle-section {
    position: relative;
    padding: 90px 0 90px;
    background: radial-gradient(circle at 10% 0%, #17376a 0, #0b1f46 40%, #071530 80%);
    color: #ffffff;
    overflow: hidden;
}

/* pontinhos de fundo */
.raffle-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 12% 20%, rgba(255, 216, 0, 0.6) 0, transparent 60%),
        radial-gradient(2px 2px at 80% 35%, rgba(255, 216, 0, 0.4) 0, transparent 60%),
        radial-gradient(2px 2px at 50% 80%, rgba(255, 216, 0, 0.4) 0, transparent 60%);
    opacity: 0.35;
    pointer-events: none;
}

.raffle-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

/* TAG SUPERIOR */

.raffle-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 199, 44, 0.16);
    border: 1px solid rgba(255, 199, 44, 0.7);
    color: #ffd863;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 22px;
}

.raffle-tag-icon {
    font-size: 15px;
}

/* TÍTULO */

.raffle-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 30px;
}

/* CARD BRANCO CENTRAL */

.raffle-main-card {
    margin: 0 auto 30px;
    max-width: 540px;
    background: #ffffff;
    border-radius: 26px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
    position: relative;
}

/* sombra suave ao redor (glow) */
.raffle-main-card::before {
    content: "";
    position: absolute;
    inset: -30px;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(255, 199, 44, 0.32), transparent 60%);
    opacity: 0.8;
    z-index: -1;
}

.raffle-main-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #ffe9a3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #e0a100;
}

.raffle-main-text {
    text-align: left;
}

.raffle-main-value {
    font-size: 30px;
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 4px;
}

.raffle-main-sub {
    font-size: 14px;
    color: #6f7287;
}

/* QUADRINHOS DAS REGRAS */

.raffle-steps {
    margin: 22px auto 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 800px;
}

.raffle-step {
    background: rgba(3, 16, 46, 0.6);
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: #e4ebff;
    font-size: 14px;
}

.raffle-step-badge {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #ffc72c;
    color: #172344;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.raffle-step-text {
    display: block;
}

/* CTA */

.raffle-cta {
    margin-top: 10px;
    margin-bottom: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* BUTTONS */
.btn-primary {
    background: #FFC72C;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    color: #1A1A1A;
    cursor: pointer;
    display: inline-block;
}

.btn-outline {
    padding: 14px 24px;
    border-radius: 10px;
    border: 2px solid #FFC72C;
    text-decoration: none;
    font-weight: 700;
    color: #FFC72C;
    cursor: pointer;
}

.big {
    font-size: 18px;
    padding: 18px 32px !important;
}

/* FORM */
/* =========================
   SEÇÃO FORMULÁRIO / CONTATO
   ========================= */

.form-section {
    position: relative;
    padding: 90px 0 90px;
    background: #f3f5fb;
    overflow: hidden;
}

/* textura de pontinhos de fundo */
.form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(12, 27, 62, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.4;
    pointer-events: none;
}

.form-container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    text-align: center;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    color: #6f7287;
    max-width: 520px;
    margin: 0 auto 32px;
}

/* CARD BRANCO DO FORM */

.form-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 32px 40px 34px;
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.16);
    text-align: left;
    margin: 0 auto;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* LINHAS */

.form-row {
    display: flex;
    gap: 18px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* LABELS */

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2140;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-label-icon {
    font-size: 16px;
}

/* CAMPOS */

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    border-radius: 14px;
    border: 1px solid #e0e3f0;
    padding: 12px 14px;
    font-size: 15px;
    background: #fefaf1;
    color: #1a1a1a;
}

.form-group input::placeholder {
    color: #b0b3c5;
}

/* GRUPO DE RÁDIOS */

.form-group--radios {
    margin-top: 8px;
    border-radius: 18px;
    background: #fff4d8;
    border: 1px solid #ffe1a2;
    padding: 16px 18px 18px;
}

.form-group-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.form-group-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #ffc72c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #18213c;
    flex-shrink: 0;
}

.form-group-texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-group-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2140;
}

.form-group-helper {
    font-size: 13px;
    color: #7a7f96;
}

/* radios em grid */

.radio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 14px;
    color: #313759;
    transition: border 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.radio-option input[type="radio"] {
    accent-color: #ffc72c;
    width: 16px;
    height: 16px;
}

.radio-option:hover {
    border-color: #ffc72c;
    box-shadow: 0 6px 18px rgba(255, 199, 44, 0.35);
}

.radio-option input[type="radio"]:checked+.radio-label {
    font-weight: 700;
}

/* BOTÃO E TEXTO FINAL */

.form-submit {
    margin-top: 8px;
    align-self: center;
    padding-inline: 46px;
    font-size: 16px;
    border-radius: 999px;
}

.form-disclaimer {
    margin-top: 8px;
    text-align: center;
    font-size: 12px;
    color: #9a9fb2;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .form-card {
        padding: 26px 20px 28px;
    }

    .form-row {
        flex-direction: column;
    }

    .radio-grid {
        grid-template-columns: 1fr;
    }

    .form-submit {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .form-title {
        font-size: 26px;
    }

    .form-subtitle {
        font-size: 14px;
    }
}

/* =========================
   SEÇÃO BENEFÍCIOS
   ========================= */

.benefits-section {
    padding: 80px 0 90px;
    background: #fbf6ea;
    /* bege clarinho do print */
}

.benefits-container {
    text-align: center;
}

/* TAG */
.benefits-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: #ffe9a6;
    color: #7b5b1a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* TÍTULO + SUB */
.benefits-title {
    font-size: 32px;
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 10px;
}

.benefits-subtitle {
    font-size: 15px;
    color: #7a7f96;
    margin: 0 auto 34px;
    max-width: 520px;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    text-align: left;
}

/* CARD */
.benefit-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf0fb;
}

/* ÍCONE */
.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #0c1b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon span {
    color: #ffc72c;
    font-size: 22px;
}

/* TEXTOS DO CARD */
.benefit-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2140;
    margin-bottom: 6px;
}

.benefit-content p {
    font-size: 14px;
    color: #7a7f96;
    line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 960px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .benefits-title {
        font-size: 26px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   SEÇÃO POR QUE ESCOLHER
   ========================= */

.why-section {
    padding: 80px 0;
    background: #f3f5fb;
    /* cinza claro do print */
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr);
    gap: 60px;
    align-items: flex-start;
}

/* COLUNA ESQUERDA */

.why-left {
    max-width: 520px;
}

.why-tag {
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 999px;
    background: #dde2f0;
    color: #1f2a4d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    cursor: default;
}

.why-title {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 16px;
}

.why-title-highlight {
    color: #ffc72c;
}

.why-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5d627a;
    margin-bottom: 26px;
}

/* NÚMEROS */

.why-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 12px;
    border-top: 1px solid #e2e5f0;
}

.why-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: #0c1b3e;
}

.why-stat-number--yellow {
    color: #ffc72c;
}

.why-stat-label {
    font-size: 13px;
    color: #7b8098;
}

/* COLUNA DIREITA – CARDS */

.why-right {
    display: flex;
    justify-content: flex-end;
}

.why-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
    max-width: 520px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 18px;
    background: #ffffff;
    padding: 16px 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf0fb;
}

.why-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: #fff4d8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0a800;
    flex-shrink: 0;
    font-size: 18px;
}

.why-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a2140;
}

.why-card-text {
    font-size: 13px;
    color: #7a7f96;
    line-height: 1.5;
}

/* RESPONSIVO */

@media (max-width: 960px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-right {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .why-title {
        font-size: 26px;
    }

    .why-card-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SEÇÃO DEPOIMENTOS
   ========================= */

.testimonials-section {
    position: relative;
    padding: 90px 0 90px;
    background: radial-gradient(circle at 10% 0%, #17376a 0, #0b1f46 40%, #071530 80%);
    color: #ffffff;
    overflow: hidden;
}

/* aspas gigantes de fundo – decor */
.testimonials-section::before,
.testimonials-section::after {
    content: "❝";
    position: absolute;
    font-size: 260px;
    color: rgba(8, 22, 56, 0.55);
    font-weight: 700;
    pointer-events: none;
}

.testimonials-section::before {
    left: 40px;
    top: 40px;
    transform: scaleX(-1);
}

.testimonials-section::after {
    right: 40px;
    bottom: -40px;
}

/* pontinhos discretos (opcional) */
.testimonials-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1050px;
}

/* TAG */
.testimonials-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 199, 44, 0.2);
    border: 1px solid rgba(255, 199, 44, 0.8);
    color: #ffd863;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* TÍTULO + MÉDIA */
.testimonials-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.testimonials-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 32px;
}

.testimonials-rating .stars {
    color: #ffc72c;
    letter-spacing: 2px;
    font-size: 18px;
}

.rating-text {
    color: #d0d7ff;
}

/* GRID DE CARDS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
    margin-top: 10px;
}

/* CARD */
.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 22px 24px 20px;
    text-align: left;
    color: #111827;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
    border: 1px solid #e4e7f5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-stars {
    color: #ffc72c;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: #4b4f67;
    line-height: 1.7;
    font-style: italic;
}

/* rodapé do card */
.testimonial-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 13px;
}

.testimonial-person {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-weight: 700;
    color: #111827;
}

.testimonial-city {
    color: #6b7280;
}

.testimonial-date {
    color: #9ca3af;
}

/* RESPONSIVO */
@media (max-width: 960px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section::before,
    .testimonials-section::after {
        opacity: 0.2;
        font-size: 200px;
    }
}

@media (max-width: 640px) {
    .testimonials-title {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 20px 18px;
    }
}

/* =========================
   CTA FINAL
   ========================= */

.final-cta-section {
    padding: 90px 0 80px;
    background: linear-gradient(135deg, #fff7e3 0%, #ffffff 35%, #f5f7fb 100%);
    text-align: center;
}

.final-cta-container {
    max-width: 900px;
}

/* TAG */

.final-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 999px;
    background: #ffe9a6;
    color: #b68410;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.final-tag-icon {
    font-size: 16px;
}

/* TÍTULOS / TEXTOS */

.final-title {
    font-size: 36px;
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 12px;
}

.final-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #19407a;
    margin-bottom: 16px;
}

.final-text {
    font-size: 15px;
    color: #70748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* BOTÕES */

.final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 26px;
}

/* reaproveita .btn base se você já tiver;
   se não tiver, pode usar esse modelo: */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

/* botão amarelo */

.final-btn-primary {
    background: #ffc72c;
    color: #172344;
    box-shadow: 0 14px 40px rgba(255, 199, 44, 0.6);
}

.final-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 48px rgba(255, 199, 44, 0.75);
}

.final-btn-arrow {
    font-size: 16px;
}

/* botão verde WhatsApp */

.final-btn-whats {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 14px 40px rgba(34, 197, 94, 0.6);
}

.final-btn-whats:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 48px rgba(22, 163, 74, 0.8);
}

.final-btn-icon {
    font-size: 18px;
}

/* BENEFÍCIOS DE BAIXO */

.final-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    justify-content: center;
    font-size: 14px;
    color: #7a7f96;
    margin-top: 6px;
}

/* RESPONSIVO */

@media (max-width: 768px) {
    .final-title {
        font-size: 30px;
    }

    .final-subtitle {
        font-size: 18px;
    }

    .final-buttons {
        flex-direction: column;
    }

    .btn.final-btn-primary,
    border-radius: 6px;
}

.footer-logo-name {
    font-size: 18px;
    font-weight: 700;
}

.footer-logo-tag {
    font-size: 13px;
    opacity: 0.7;
}

/* ===== TEXTOS ===== */

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

/* ===== ICONES DE TEXTO ===== */

.footer-col p {
    font-size: 14px;
    margin: 6px 0;
    opacity: 0.9;
    text-align: center;
}

.footer-col p i {
    margin-right: 8px;
    color: #ffd34d;
}

/* ===== REDES SOCIAIS ===== */

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}


/* ===== LINKS ===== */

.footer-links {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 6px 0;
}

.footer-links a {
    color: #ffffff;
    opacity: 0.85;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

/* ===== RODAPÉ FINAL ===== */

.footer-bottom {
    max-width: 1300px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links a {
    margin-left: 20px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    transition: 0.2s;
}/* =========================================
   AJUSTES FINAIS RESPONSIVIDADE (HERO)
   ========================================= */

@media (max-width: 800px) {
    .selo-natal {
        width: 300px;
        left: -20px;
        top: -10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0 50px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero__highlight {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .hero__stats {
        gap: 12px;
        justify-content: center;
    }

    .selo-natal {
        width: 200px;
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
        position: relative;
        margin-bottom: -40px;
        display: block;
    }

    .hero__left {
        text-align: center;
    }

    .hero__pill {
        margin: 0 auto 16px;
    }
}
/* =========================================
   CORREÇÃO DEFINITIVA RESPONSIVIDADE E SELO
   ========================================= */

/* 1. Garante que a imagem do selo nunca estoure */
.selo-natal img {
    width: 100%;
    height: auto;
    display: block;
}

/* 2. No Desktop, o selo DEVE ser absoluto para não quebrar o grid */
@media (min-width: 769px) {
    .selo-natal {
        position: absolute;
        top: -30px;
        left: -50px;
        width: 450px;
        z-index: 0;
    }
}

/* 3. Ajustes para Mobile e Tablet (até 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }

    .hero__grid {
        display: flex;
        /* Muda para flex para controlar melhor a ordem */
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    /* O Selo fica no topo, centralizado e pequeno */
    .selo-natal {
        position: relative;
        /* Ocupa espaço no mobile */
        width: 180px;
        margin: 0 auto -20px;
        /* Margem negativa para aproximar do título */
        left: auto;
        top: auto;
        display: block;
        order: -2;
        /* Garante que fique em primeiro */
    }

    .hero__left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }

    .hero__title {
        font-size: 28px !important;
        /* Força o tamanho menor */
        line-height: 1.2;
        margin-top: 10px;
    }

    .hero__subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-card {
        max-width: 100%;
        width: 100%;
        order: 2;
        /* Card vai por último ou onde preferir */
    }
}
