/* =========================================
   RESET & VARIABLES
========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #F5EFE6;
    --cream-light: #FAF6EE;
    --cream-dark: #E8DECC;
    --beige: #E0D3BC;
    --tan: #9D7559;
    --tan-light: #B89478;
    --tan-dark: #7E5A42;
    --brown: #3E332D;
    --brown-soft: #5A4A40;
    --white: #FFFFFF;
    --green: #25D366;
    --green-dark: #128C7E;
    --red: #C62828;
    --red-dark: #8B1A1A;
    --shadow: rgba(62, 51, 45, 0.08);
    --shadow-md: rgba(62, 51, 45, 0.15);
    --shadow-strong: rgba(62, 51, 45, 0.25);

    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Poppins', -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;

    --t: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--brown);
    background: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero .container {
    max-width: 1380px;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

/* =========================================
   LOGO
========================================= */
.nav-logo, .footer-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-align: center;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 80px;
    filter: brightness(0) invert(1) opacity(0.95);
}

@media (max-width: 640px) {
    .logo-img { height: 44px; }
    .footer-logo-img { height: 64px; }
}

.brand-dra {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--tan);
    margin-bottom: 4px;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-sub {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--brown-soft);
    margin-top: 4px;
    border-top: 1px solid var(--cream-dark);
    padding-top: 4px;
}

/* =========================================
   BUTTONS — CONVERSION FOCUSED
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* CTA principal - verde WhatsApp para virar reflexo */
.btn-cta {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: white;
}

.btn-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-cta:hover::before { left: 100%; }

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

.btn-cta-small {
    background: var(--brown);
    color: var(--cream-light);
    padding: 11px 22px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-cta-small:hover {
    background: var(--tan-dark);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

.btn-huge {
    padding: 22px 50px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* =========================================
   URGENCY BAR
========================================= */
.top-stack {
    position: sticky;
    top: 0;
    z-index: 100;
}

.urgency-bar {
    background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
    background-size: 200% 100%;
    color: #FFFFFF;
    padding: 10px 0;
    position: relative;
    z-index: 101;
    animation: urgencyShimmer 6s ease infinite;
}

@keyframes urgencyShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.urgency-flame {
    font-size: 1.1rem;
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.urgency-divider { opacity: 0.5; }

/* =========================================
   NAVBAR
========================================= */
.navbar {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px var(--shadow);
    transition: all var(--t);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* =========================================
   HERO
========================================= */
.hero {
    position: relative;
    padding: 24px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #FFFFFF;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.hero-text {
    position: relative;
    z-index: 2;
}

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

.hero-pre {
    display: inline-block;
    background: rgba(157, 117, 89, 0.12);
    color: var(--tan-dark);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(157, 117, 89, 0.25);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-headline em {
    color: var(--tan-dark);
    font-style: italic;
    font-weight: 600;
}

.hero-headline .highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(157, 117, 89, 0.35) 60%);
    padding: 0 4px;
}

.hero-headline strong,
.hero-headline .hl-red {
    color: var(--red);
    font-weight: 700;
}

.hero-headline .hl-red {
    display: inline-block;
    margin-top: 8px;
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--brown-soft);
    margin-bottom: 28px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--brown);
    font-weight: 600;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--brown);
    color: var(--cream-light);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    min-width: 70px;
    box-shadow: 0 8px 20px var(--shadow-md);
    position: relative;
}

.cd-block::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.cd-num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.cd-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    opacity: 0.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 28px;
}

.btn-helper {
    font-size: 0.82rem;
    color: var(--brown-soft);
    padding-left: 8px;
}

.trust-badges {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    padding-top: 24px;
    border-top: 1px solid var(--cream-dark);
}

.trust-item {
    font-size: 0.78rem;
    color: var(--brown-soft);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.trust-icon {
    background: var(--red);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* HERO VISUAL — FOTO */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.photo-frame {
    position: relative;
    width: calc(100% + 240px);
    max-width: 1200px;
    aspect-ratio: 1/1;
    background: transparent;
    overflow: visible;
    margin-left: -200px;
}

.photo-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(157,117,89,0.05), transparent 70%);
    z-index: -1;
}

.photo-frame img,
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    -webkit-mask-image: radial-gradient(ellipse 95% 100% at 60% 50%, #000 75%, transparent 100%);
    mask-image: radial-gradient(ellipse 95% 100% at 60% 50%, #000 75%, transparent 100%);
    filter: drop-shadow(0 20px 40px rgba(62, 51, 45, 0.12));
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--tan-dark);
    text-align: center;
    padding: 30px;
    gap: 12px;
}

.photo-placeholder span {
    font-size: 4rem;
    opacity: 0.5;
}

.photo-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.2;
}

.photo-placeholder small {
    font-size: 0.75rem;
    opacity: 0.6;
    max-width: 200px;
    line-height: 1.4;
}

.photo-tag {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background: var(--red);
    color: #FFFFFF;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
    box-shadow: 0 12px 30px rgba(198, 40, 40, 0.4);
    z-index: 3;
    animation: tagSpin 6s ease-in-out infinite;
}

@keyframes tagSpin {
    0%, 100% { transform: rotate(-12deg) scale(1); }
    50% { transform: rotate(-8deg) scale(1.05); }
}

.photo-tag-num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.photo-tag-text {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 600;
}

/* =========================================
   EMOTIONAL SECTION
========================================= */
.emotional {
    padding: 100px 0;
    background: #FFFFFF;
    text-align: center;
}

.emotional-content {
    max-width: 820px;
    margin: 0 auto;
}

.emotional-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--brown);
    margin-bottom: 24px;
}

.emotional-title em {
    color: var(--tan-dark);
}

.emotional-text {
    font-size: 1.1rem;
    color: var(--brown-soft);
    line-height: 1.8;
    margin-bottom: 36px;
}

.emotional-text strong {
    color: var(--brown);
    font-weight: 600;
}

/* =========================================
   OFFER / PRICES — CORE
========================================= */
.offer {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.offer-header, .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-tag {
    display: inline-block;
    background: rgba(157, 117, 89, 0.15);
    color: var(--tan-dark);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.offer-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--brown);
    letter-spacing: -0.5px;
}

.offer-title em {
    color: var(--tan-dark);
}

.offer-sub {
    font-size: 1.05rem;
    color: var(--brown-soft);
    max-width: 620px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.offer-sub strong {
    color: var(--red);
    font-weight: 700;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.price-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    transition: all var(--t);
    border: 2px solid #EAEAEA;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow-strong);
    border-color: var(--tan);
}

.price-card-featured {
    background: linear-gradient(180deg, var(--brown) 0%, var(--brown-soft) 100%);
    color: var(--cream-light);
    border-color: var(--tan);
    transform: scale(1.04);
    box-shadow: 0 30px 60px rgba(62, 51, 45, 0.35);
}

.price-card-featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.price-card-featured .price-card-top h3,
.price-card-featured .val,
.price-card-featured .cur {
    color: var(--cream-light);
}

.price-card-featured .price-area {
    color: var(--tan-light);
}

.price-card-featured .price-old {
    color: rgba(255,255,255,0.6);
}

.price-card-featured .price-feat li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.1);
}

.price-card-featured .price-feat li::before {
    background: var(--tan-light);
}

.price-card-featured .price-couple {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.price-card-featured .couple-label,
.price-card-featured .couple-value {
    color: var(--cream-light);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tan);
    color: var(--cream-light);
    padding: 7px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(125, 90, 66, 0.35);
}

.price-card-top {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cream-dark);
}

.price-card-featured .price-card-top {
    border-bottom-color: rgba(255,255,255,0.15);
}

.price-card-top h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 4px;
}

.price-area {
    font-size: 0.78rem;
    color: var(--tan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.price-old {
    font-size: 0.85rem;
    color: var(--brown-soft);
    margin-bottom: 4px;
}

.price-old s {
    color: #c44;
    margin-right: 4px;
}

.price-now {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.cur {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--tan);
    font-weight: 600;
}

.val {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1;
    letter-spacing: -1.5px;
}

.price-couple {
    background: rgba(157, 117, 89, 0.1);
    border: 1px dashed var(--tan);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.couple-label {
    font-size: 0.78rem;
    color: var(--tan-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.couple-value {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown);
}

.price-feat {
    margin-bottom: 24px;
    flex-grow: 1;
}

.price-feat li {
    padding: 10px 0 10px 26px;
    color: var(--brown-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(232, 222, 204, 0.5);
    position: relative;
}

.price-feat li:last-child { border-bottom: none; }

.price-feat li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 11px;
    background: var(--red);
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.offer-note {
    text-align: center;
    margin-top: 40px;
    padding: 18px 24px;
    background: rgba(157, 117, 89, 0.1);
    border-left: 4px solid var(--tan);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--brown);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   SOBRE A DRA. AMANDA
========================================= */
.about {
    padding: 100px 0;
    background: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-photo {
    display: flex;
    justify-content: center;
}

.about-frame {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4/5.6;
    background: linear-gradient(135deg, var(--beige), var(--cream-dark));
    border-radius: 260px 260px 24px 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px var(--shadow-strong);
}

.about-frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 248px 248px 14px 14px;
    z-index: 2;
    pointer-events: none;
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.18);
    transform-origin: center 75%;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--brown);
    color: var(--cream-light);
    padding: 14px 22px;
    border-radius: var(--radius-full);
    z-index: 3;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.badge-num {
    font-family: var(--font-script);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tan-light);
    line-height: 1;
}

.badge-label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    margin-top: 2px;
    color: var(--cream-light);
    letter-spacing: 0.5px;
}

.about-text .offer-tag {
    margin-bottom: 18px;
}

.about-text .offer-title {
    text-align: left;
    margin-bottom: 8px;
}

.about-script {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--tan);
    margin-bottom: 20px;
    line-height: 1;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--brown-soft);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-lead strong {
    color: var(--brown);
    font-weight: 600;
}

.about-features {
    margin-bottom: 32px;
}

.about-features li {
    padding: 10px 0;
    color: var(--brown-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-features .feat-icon {
    flex-shrink: 0;
    background: var(--red);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.about-features .feat-text {
    flex: 1;
    display: block;
}

.about-features li strong {
    color: var(--brown);
    font-weight: 600;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text .offer-title {
        text-align: center;
    }

    .about-text .offer-tag,
    .about-text .btn-cta {
        display: inline-flex;
    }

    .about-text {
        text-align: center;
    }

    .about-features {
        text-align: left;
        max-width: 460px;
        margin: 0 auto 32px;
    }

    .about-frame {
        max-width: 360px;
    }
}

/* =========================================
   HOWTO
========================================= */
.howto {
    padding: 100px 0;
    background: #FFFFFF;
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.howto-step {
    text-align: center;
    padding: 36px 28px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    transition: all var(--t);
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.howto-step:hover {
    transform: translateY(-6px);
    border-color: var(--tan);
    box-shadow: 0 20px 40px var(--shadow);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--tan);
    color: var(--cream-light);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(125, 90, 66, 0.3);
}

.howto-step h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 10px;
}

.howto-step p {
    color: var(--brown-soft);
    font-size: 0.95rem;
}

.howto-cta {
    text-align: center;
}

/* =========================================
   PROOF / DEPOIMENTOS
========================================= */
.proof {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--brown) 0%, var(--brown-soft) 100%);
    color: var(--cream-light);
}

.proof .offer-tag {
    background: rgba(184, 148, 120, 0.2);
    color: var(--tan-light);
}

.proof .offer-title {
    color: var(--cream-light);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--t);
}

.proof-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--tan-light);
}

.proof-card p {
    color: var(--cream-light);
}

.proof-card .proof-author {
    color: var(--tan-light);
}

.stars {
    color: #E8B83A;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.proof-card p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 16px;
}

.proof-author {
    font-size: 0.82rem;
    color: var(--tan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* =========================================
   FAQ
========================================= */
.faq {
    padding: 100px 0;
    background: #FFFFFF;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid #EAEAEA;
    transition: all var(--t);
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--tan);
    box-shadow: 0 10px 30px var(--shadow);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--brown);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 0.98rem;
}

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

.faq-item summary::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--tan);
    font-weight: 300;
    transition: transform var(--t);
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 22px;
    color: var(--brown-soft);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item p strong {
    color: var(--brown);
}

/* =========================================
   FINAL CTA
========================================= */
.final-cta {
    padding: 100px 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(157,117,89,0.4), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(184, 148, 120, 0.3), transparent 50%),
        var(--brown);
    color: var(--cream-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.final-content h2 em {
    color: var(--tan-light);
}

.final-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.final-helper {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background: #2A211C;
    color: var(--cream-dark);
    padding: 50px 0 30px;
}

.footer-content { text-align: center; }

.footer-brand .brand-name {
    color: var(--cream-light);
    font-size: 2rem;
}

.footer-brand .brand-dra {
    color: var(--tan-light);
}

.footer-brand .brand-sub {
    color: var(--tan-light);
    border-top-color: rgba(255,255,255,0.15);
}

.footer-copyright {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    opacity: 0.6;
}

/* =========================================
   WHATSAPP FLOAT
========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--green);
    color: white;
    padding: 14px 20px 14px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 99;
    transition: all var(--t);
    font-weight: 600;
    font-size: 0.9rem;
    animation: floatPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    background: var(--green-dark);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.8), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-sub { margin-left: auto; margin-right: auto; }

    .hero-buttons { align-items: center; }

    .countdown { justify-content: center; }

    .trust-badges { justify-content: center; }

    .photo-frame {
        width: 100%;
        max-width: 420px;
        order: -1;
        margin: 0 auto;
    }

    .trust-badges {
        flex-wrap: wrap;
    }

    .trust-item {
        white-space: normal;
    }

    .prices-grid,
    .howto-grid,
    .proof-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-card-featured { transform: scale(1); }
    .price-card-featured:hover { transform: translateY(-10px); }
}

@media (max-width: 640px) {
    .urgency-content {
        font-size: 0.72rem;
        gap: 6px;
    }

    .hero { padding: 40px 0 60px; }

    .emotional, .offer, .howto, .proof, .faq, .final-cta {
        padding: 70px 0;
    }

    .cd-block {
        min-width: 60px;
        padding: 12px 12px;
    }

    .cd-num { font-size: 1.5rem; }

    .countdown { gap: 8px; }

    .btn { padding: 14px 24px; font-size: 0.85rem; }

    .btn-huge { padding: 18px 32px; font-size: 0.95rem; }

    .photo-tag {
        width: 90px;
        height: 90px;
        bottom: 16px;
        right: 16px;
    }

    .photo-tag-num { font-size: 1.4rem; }

    .whatsapp-float .whats-text { display: none; }

    .whatsapp-float {
        padding: 14px;
        width: 56px;
        height: 56px;
    }

    .nav-container .btn-cta-small {
        padding: 9px 14px;
        font-size: 0.7rem;
    }

    .brand-name { font-size: 1.2rem; }
}
