:root {
    --beige-light: #F4EBE4;
    --sand-rose: #EAD9CC;
    --brown-soft: #8B5E4A;
    --brown-deep: #5C3A30;
    --cream-warm: #FAF4EE;
    --caramel: #C79A7C;
    --accent: #D4956A;
    --green-whatsapp: #25D366;
    
    --text-primary: #5C3A30;
    --text-secondary: #8B5E4A;
    --text-light: #A88B7D;
    
    --shadow-soft: 0 4px 20px rgba(92, 58, 48, 0.06);
    --shadow-medium: 0 8px 30px rgba(92, 58, 48, 0.1);
    --shadow-hover: 0 12px 40px rgba(92, 58, 48, 0.14);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cream-warm);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
    background: linear-gradient(135deg, var(--brown-soft), var(--brown-deep));
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
}

.announcement-bar strong {
    font-weight: 700;
}

/* ========== HEADER ========== */
.header {
    background-color: rgba(250, 244, 238, 0.95);
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 52px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-price {
    font-weight: 700;
    color: var(--brown-deep);
    font-size: 1rem;
    display: none;
}

/* ========== BUTTONS ========== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brown-soft) 0%, var(--brown-deep) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(92, 58, 48, 0.2);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(92, 58, 48, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--caramel);
}

.btn-secondary:hover {
    background-color: var(--sand-rose);
    border-color: var(--brown-soft);
    color: var(--brown-deep);
}

.btn-header {
    font-size: 0.85rem;
    padding: 10px 20px;
}

.btn-header svg { flex-shrink: 0; }

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-large svg { flex-shrink: 0; }

.btn-cta-final {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
    border: none;
}

.btn-cta-final:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.55);
}

/* ========== HERO ========== */
.hero {
    padding: 48px 0 64px;
    background: linear-gradient(160deg, var(--cream-warm) 0%, var(--beige-light) 60%, var(--sand-rose) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 154, 124, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 560px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    color: var(--brown-deep);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 12px rgba(92, 58, 48, 0.08);
    border: 1px solid rgba(199, 154, 124, 0.2);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--brown-deep);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: italic;
    color: var(--brown-soft);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 2px 12px rgba(92, 58, 48, 0.06);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.stat strong {
    font-size: 1.3rem;
    color: var(--brown-deep);
    font-weight: 700;
    line-height: 1;
}

.stat span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background-color: var(--sand-rose);
    margin: 0 16px;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-trust svg {
    color: var(--green-whatsapp);
}

.hero-image {
    width: 100%;
    max-width: 400px;
    position: relative;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.product-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ========== SOCIAL PROOF BAR ========== */
.social-proof {
    padding: 24px 0;
    background-color: white;
    border-bottom: 1px solid rgba(199, 154, 124, 0.15);
}

.proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.proof-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown-deep);
}

.proof-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: lowercase;
}

/* ========== BENEFITS ========== */
.benefits {
    padding: 72px 0;
    background-color: var(--cream-warm);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    background-color: white;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(199, 154, 124, 0.1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--caramel);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--sand-rose) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-soft);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--sand-rose) 0%, var(--caramel) 100%);
    color: white;
}

.benefit-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ========== PRODUCT DETAILS ========== */
.product-details {
    padding: 56px 0;
    background-color: var(--beige-light);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown-deep);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 40px;
}

.details-grid {
    display: flex;
    justify-content: center;
    max-width: 680px;
    margin: 0 auto;
    margin-top: 32px;
}

.details-content {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.details-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.details-list {
    list-style: none;
    display: grid;
    gap: 16px;
}

.details-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--cream-warm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.details-list li:hover {
    background: var(--beige-light);
    transform: translateX(4px);
}

.detail-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.details-list li div {
    display: flex;
    flex-direction: column;
}

.details-list li strong {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.details-list li span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 72px 0;
    background: white;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    text-align: left;
    padding: 24px 20px;
    background: var(--cream-warm);
    border-radius: var(--radius-md);
    width: 100%;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, var(--brown-soft), var(--brown-deep));
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-card h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.step-arrow {
    display: none;
}

/* ========== EMOTIONAL ========== */
.emotional {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--sand-rose) 0%, var(--beige-light) 100%);
}

.emotional-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.emotional-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.emotional-text em {
    font-style: italic;
    color: var(--brown-deep);
}

.emotional-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--brown-deep);
    margin-top: 24px;
    font-weight: 700;
}

.emotional-highlight strong {
    color: var(--accent);
}

/* ========== PRICING ========== */
.pricing {
    padding: 72px 0;
    background: var(--cream-warm);
}

.pricing-card {
    max-width: 460px;
    margin: 0 auto;
    margin-top: 8px;
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--caramel);
    position: relative;
    overflow: hidden;
}

.urgency-banner {
    background: linear-gradient(135deg, #e8740e 0%, #d46400 100%);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-banner svg { flex-shrink: 0; }

.pricing-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.price-main {
    display: flex;
    align-items: flex-start;
    color: var(--brown-deep);
}

.currency {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 8px;
}

.amount {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 4px;
}

.decimals {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 8px;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.price-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.include-item svg {
    color: var(--green-whatsapp);
    flex-shrink: 0;
}

.delivery-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 20px;
    padding: 10px 16px;
    background: var(--cream-warm);
    border-radius: var(--radius-sm);
    color: var(--brown-soft);
    font-size: 0.85rem;
    font-weight: 500;
}

.delivery-info svg {
    flex-shrink: 0;
    color: var(--caramel);
}

.pricing-safety {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.pulse-effect {
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(92, 58, 48, 0.2); }
    50% { box-shadow: 0 8px 28px rgba(92, 58, 48, 0.35); }
}

.pulse-effect:hover { animation: none; }

/* ========== FAQ ========== */
.faq {
    padding: 72px 0;
    background: var(--beige-light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 32px;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(199, 154, 124, 0.1);
}

.faq-item:hover { box-shadow: var(--shadow-medium); }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
    font-family: inherit;
    gap: 12px;
}

.faq-question:hover { background: var(--cream-warm); }

.faq-icon {
    color: var(--caramel);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ========== CTA FINAL ========== */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--brown-soft) 0%, var(--brown-deep) 100%);
    text-align: center;
}

.cta-final-content {
    max-width: 640px;
    margin: 0 auto;
}

.cta-final-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.cta-final-title span {
    color: var(--caramel);
    display: block;
    margin-top: 8px;
}

.cta-final-subtitle {
    font-size: 1rem;
    color: var(--sand-rose);
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-safety {
    margin-top: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* ========== FOOTER ========== */
.footer {
    padding: 32px 0;
    background-color: var(--brown-deep);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-text {
    color: var(--beige-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
    .hero-ctas { flex-direction: row; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid {
        flex-direction: row;
        align-items: flex-start;
    }
    .step-arrow { transform: rotate(0deg); }
    .header-price { display: block; }
}

@media (min-width: 768px) {
    .logo { height: 60px; }
    .logo-img { max-width: 200px; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .stat strong { font-size: 1.5rem; }
    .section-title { font-size: 2.4rem; }
    .product-details { padding: 72px 0; }
    .details-grid { max-width: 780px; }
    .emotional-text { font-size: 1.5rem; }
    .emotional-highlight { font-size: 1.8rem; }
    .cta-final-title { font-size: 2.4rem; }
    .proof-number { font-size: 1.4rem; }
}

@media (min-width: 1024px) {
    .logo { height: 68px; }
    .logo-img { max-width: 220px; }
    .hero { padding: 64px 0 80px; }
    .hero .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .hero-content {
        text-align: left;
        flex: 1;
    }
    .hero-stats { justify-content: flex-start; }
    .hero-ctas { justify-content: flex-start; }
    .hero-trust { justify-content: flex-start; }
    .hero-image {
        flex: 1;
        max-width: 480px;
    }
    .benefits-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid {
        flex-direction: row;
        align-items: stretch;
    }
    .step-card {
        text-align: center;
        flex: 1;
    }
    .step-number {
        margin: 0 auto 12px;
    }
    .step-arrow {
        display: block;
        transform: rotate(0deg);
    }
}
