/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1A1A1A;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

/* Respeita preferência do usuário por menos movimento */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.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;
    width: auto;
    display: block;
}


/* ---------------- 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 / Logo lateral */

.selo-logo {
    position: absolute;
    top: 100px;
    left: -80px;
    width: 500px;
    opacity: 0;
    transform: translateX(-60px);
    animation: seloIn 1s ease forwards;
    animation-delay: 0.15s;
}

@keyframes seloIn {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse sutil para chamar atenção ao CTA */
@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(255, 199, 44, 0.35),
            0 4px 8px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 8px 32px rgba(255, 199, 44, 0.5),
            0 4px 12px rgba(0, 0, 0, 0.12);
    }
}

.hero__buttons .btn--primary {
    animation: subtlePulse 2.5s ease-in-out infinite;
    animation-delay: 1s;
}

.hero__buttons .btn--primary:hover {
    animation: none;
}

/* Garante que o conteúdo fique acima do background */

.hero>.container {
    position: relative;
    z-index: 1;
}

/* Grid principal do hero */

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ---------------- TAG / PILL ---------------- */

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.65s;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 199, 44, 0.15);
    border: 1px solid rgba(255, 199, 44, 0.65);
    font-size: 13px;
    font-weight: 600;
    color: #ffe082;
    margin-bottom: 20px;
    animation-delay: 0.1s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero__pill-icon,
.hero__pill-spark {
    display: inline-flex;
}

/* ---------------- TEXTO ESQUERDA ---------------- */

.hero__title {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.2s;
}

.hero__highlight {
    color: #ffc72c;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.hero__subtitle {
    max-width: 520px;
    font-size: clamp(15px, 2vw, 17px);
    color: #d0d8f5;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.35s;
}

/* ---------------- 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 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.btn--primary {
    background: linear-gradient(135deg, #ffd644 0%, #ffc72c 50%, #f5b800 100%);
    color: #172344;
    box-shadow: 0 8px 24px rgba(255, 199, 44, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 199, 44, 0.5),
        0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffe066 0%, #ffd644 50%, #ffc72c 100%);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--primary:focus-visible {
    outline: 3px solid rgba(255, 199, 44, 0.5);
    outline-offset: 2px;
}

.btn--ghost {
    background: transparent;
    color: #fdfdfd;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn--ghost:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ---------------- 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 */

/* garante que o texto fique acima do selo */
.hero__left>* {
    position: relative;
    z-index: 2;
}


/* ---------------- RESPONSIVO ---------------- */

@media (max-width: 1024px) {
    .hero__grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-top: 0;
    }

    .selo-natal {
        position: static;
        width: 180px;
        margin: 100px auto 40px auto;
        display: block;
        transform: none;
        align-self: center;
    }

    .hero__pill-wrapper {
        justify-content: center;
    }

    .hero__title {
        font-size: 38px;
    }
}

@media (max-width: 800px) {
    .hero {
        padding: 140px 0 100px;
    }

    .hero__right {
        order: -1;
    }

    .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;
}

/* Estilos do vídeo */
.gift-card-inner video {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

/* 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: clamp(24px, 4vw, 32px);
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0c1b3e;
    letter-spacing: -0.01em;
}

.gift-subtitle {
    text-align: center;
    max-width: 520px;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 1.6;
    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;
    }
}

/* 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: clamp(26px, 4vw, 32px);
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.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: 1.5px solid #e0e3f0;
    padding: 14px 16px;
    font-size: 15px;
    background: #fefaf1;
    color: #1a1a1a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
    border-color: #ffc72c;
    box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.2);
    outline: none;
}

.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: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid transparent;
    cursor: pointer;
    font-size: 14px;
    color: #313759;
    transition: border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 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 20px rgba(255, 199, 44, 0.3);
    transform: translateY(-1px);
}

.radio-option:has(input:checked) {
    border-color: #ffc72c;
    background: rgba(255, 199, 44, 0.1);
    box-shadow: 0 4px 14px rgba(255, 199, 44, 0.25);
}

.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: clamp(26px, 4vw, 32px);
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.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 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf0fb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Í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 {
    text-align: center;
    padding: 80px 20px;
    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;
    margin-inline: auto;
}

.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: clamp(26px, 4vw, 32px);
    line-height: 1.25;
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.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;
    justify-content: center;
}

.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: 18px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf0fb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.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: clamp(26px, 4vw, 32px);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.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-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(255, 199, 44, 0.75);
}

.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: clamp(28px, 4.5vw, 36px);
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.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: linear-gradient(135deg, #34d068 0%, #22c55e 50%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.final-btn-whats:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(22, 163, 74, 0.55);
    background: linear-gradient(135deg, #4ade80 0%, #34d068 50%, #22c55e 100%);
}

.final-btn-whats:active {
    transform: translateY(-1px);
}

.final-btn-whats:focus-visible {
    outline: 3px solid rgba(34, 197, 94, 0.5);
    outline-offset: 2px;
}

.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 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;
    }
}

/* =========================================
   RESPONSIVIDADE E SELO
   ========================================= */

/* 3. Ajustes para Mobile e Tablet (até 768px) */
@media (max-width: 768px) {

    .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;

    }
}

/* responsividade do selo em dispositivos móveis */

.selo-natal {
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .selo-natal {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* responsividade e centralização textos da pill */
@media (max-width: 1024px) {
    .hero__left {
        align-items: center;
        text-align: center;
    }

    .hero__pill-wrapper {
        justify-content: center;
    }
}

/* responsividade e centralização textos da caixa surpresa */
@media (max-width: 1024px) {
    .gift-text {
        text-align: center;
    }
}

@media (max-width: 960px) {
    .why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-right {
        justify-content: center;
    }
}

/* responsividade do logo Sollar (selo-logo) */
@media (max-width: 1024px) {
    .selo-logo {
        position: static;
        width: 280px;
        margin: 0 auto 30px;
        display: block;
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .selo-logo {
        width: 220px;
        margin: 0 auto 24px;
    }

    .selo-logo img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .selo-logo {
        width: 180px;
        margin: 0 auto 20px;
    }
}

/* responsividade do vídeo na gift-section */
@media (max-width: 768px) {
    .gift-card {
        max-width: 100%;
    }

    .gift-card-inner {
        padding: 12px;
    }

    .gift-card-inner video {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .gift-card-inner {
        padding: 8px;
    }

    .gift-card-inner video {
        border-radius: 16px;
    }
}

/* =========================
   BARRA DE URGÊNCIA
   ========================= */

.urgency-bar {
    background: linear-gradient(135deg, #e53935 0%, #d32f2f 50%, #c62828 100%);
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 18px;
}

.urgency-text {
    letter-spacing: 0.02em;
}

.urgency-text strong {
    color: #ffeb3b;
}

@media (max-width: 480px) {
    .urgency-bar {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* =========================
   SELOS DE CONFIANÇA
   ========================= */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8ebf5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-size: 14px;
    font-weight: 600;
    color: #1a2140;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-badge-icon {
    font-size: 18px;
}

.trust-badge-text {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .trust-badges {
        gap: 12px;
    }

    .trust-badge {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* =========================
   SEÇÃO FAQ
   ========================= */

.faq-section {
    padding: 90px 0;
    background: #fbf6ea;
}

.faq-container {
    max-width: 800px;
    text-align: center;
}

/* TAG */
.faq-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 */
.faq-title {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 800;
    color: #0c1b3e;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.faq-subtitle {
    font-size: 15px;
    color: #7a7f96;
    margin-bottom: 36px;
}

/* LISTA */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8ebf5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
}

.faq-item[open] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* PERGUNTA */
.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1a2140;
    list-style: none;
    transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: #fafbfe;
}

.faq-question-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.faq-chevron {
    margin-left: auto;
    font-size: 12px;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

/* RESPOSTA */
.faq-answer {
    padding: 0 20px 20px 52px;
    font-size: 14px;
    line-height: 1.7;
    color: #5d627a;
}

.faq-answer p {
    margin: 0;
}

/* RESPONSIVO */
@media (max-width: 640px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 16px 44px;
        font-size: 13px;
    }

    .faq-question-icon {
        font-size: 18px;
    }
}

/* =========================
   PÁGINA OBRIGADO (THANK YOU PAGE)
   ========================= */

.thank-you-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, #17376a, #071530);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.thank-you-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    z-index: 10;
    text-align: center;
}

/* Círculos decorativos */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: #ffc72c;
    top: -100px;
    right: -100px;
    filter: blur(100px);
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #e53935;
    bottom: -50px;
    left: -50px;
    filter: blur(80px);
}

/* Card Principal */
.thank-you-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Animação Checkmark */
.success-animation {
    margin: 0 auto 30px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #ffc72c;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #ffc72c;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
    top: 5px;
    right: 5px;
    margin: 0 auto;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #ffc72c;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px rgba(255, 199, 44, 0.15);
    }
}

/* Textos */
.thank-you-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #d0d8f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thank-you-text {
    font-size: 16px;
    line-height: 1.6;
    color: #d0d8f5;
    margin-bottom: 20px;
}

.thank-you-text strong {
    color: #ffc72c;
}

.thank-you-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.thank-you-subtext {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Botões */
.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn--instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #ffffff;
    font-weight: 600;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn--instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(193, 53, 132, 0.4);
}

.btn--outline {
    display: block;
    text-align: center;
    padding: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.btn--outline:hover {
    color: #ffffff;
}

.thank-you-footer {
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsivo */
@media (max-width: 480px) {
    .thank-you-card {
        padding: 40px 24px;
    }

    .thank-you-title {
        font-size: 24px;
    }
}