/* Base Styles & Design Tokens */
:root {
    --color-primary: #ac9173;   /* Golden Beige */
    --color-bg-light: #f1ede3;  /* Light Cream */
    --color-bg-dark: #876347;   /* Dark Cocoa */
    --color-accent: #c9b8a4;    /* Sand Beige */
    --text-dark: #2C2C2C;
    --text-muted: #5A5A5A;
    --whatsapp-green: #25D366;
    --accent-gold: #ac9173;     /* Primary Gold-ish */
    --white: #FFFFFF;
    --black: #000000;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.08);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseAlert {
    0% { opacity: 0.8; }
    50% { opacity: 1; text-shadow: 0 0 10px rgba(230, 108, 108, 0.5); }
    100% { opacity: 0.8; }
}

.reveal {
    opacity: 0;
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    animation: fadeInUp 1s forwards;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .accent-text {
    font-family: 'Swily Bright', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.mb-large { margin-bottom: 60px; }

/* Placeholder Styles */
.placeholder-img {
    background: linear-gradient(135deg, var(--color-accent) 25%, var(--color-bg-light) 50%, var(--color-accent) 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    border-radius: 4px;
    width: 100%;
}

.placeholder-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Typography & Display */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
}

h2.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    font-weight: 400;
}

.accent-text {
    color: var(--color-primary);
    font-style: italic;
}

p.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}
/* Alert Banner (Pill Style) */
.top-alert-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    z-index: 1002;
    padding: 0 20px;
}

.top-alert-pill {
    background-color: #3b1717; /* Dark reddish brown background */
    border: 1px solid #7c2d2d; /* Lighter red border */
    color: #cc6060; /* Soft reddish text */
    padding: 12px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulseAlert 2.5s infinite;
}

.top-alert-pill i {
    font-size: 1.1rem;
}

/* Header */
.main-header {
    padding: 24px 0;
    position: fixed;
    top: 0; /* Changed back to 0 as the alert is now absolute, not fixed full width */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(241, 237, 227, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

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

.logo {
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
}

.cta-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--whatsapp-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.cta-small::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 1 1-7.6-10.6 8.38 8.38 0 0 1 3.8.9L21 3z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 14px;
    height: 14px;
}

.cta-small:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--color-primary);
    text-align: center;
    background-color: var(--color-primary);
    color: var(--white);
}

.btn:hover {
    background-color: var(--color-bg-dark);
    border-color: var(--color-bg-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(135, 99, 71, 0.2);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--white);
}

.btn-gold {
    background-color: var(--color-primary);
    color: var(--white);
}

.btn-large {
    padding: 22px 60px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px; 
    background-color: var(--color-bg-light);
    text-align: center;
}

.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.hero-content p.subheadline {
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-accent);
    color: var(--text-dark);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.trust-text span {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
}

/* Section Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.v-center { align-items: center; }

.image-wrapper {
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 15px;
    background: white;
}

.image-wrapper.decorative::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px 20px;
    background: white;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Plans Section */
.bg-black-section {
    background-color: #111111;
    color: var(--white);
}

.bg-black-section .section-title {
    color: var(--white);
}

.plans-grid-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    padding: 20px 0;
}

.plan-card-dark {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px 30px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    min-height: 100%;
}

.plan-card-dark:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.plan-card-dark.featured-dark {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    z-index: 2;
    background-color: #222;
}

.plan-card-dark.featured-dark:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(172, 145, 115, 0.4);
    text-transform: uppercase;
}

.plan-card-dark .plan-header h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 400;
    font-family: 'Swily Bright', serif;
}

.plan-card-dark .plan-features {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
    list-style: none;
}

.plan-card-dark .plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
    color: #e0e0e0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan-card-dark .plan-features li i {
    color: var(--color-primary);
    margin-top: 5px;
    font-size: 0.85rem;
}

.plan-card-dark .plan-features li.brinde {
    color: var(--color-primary);
    font-weight: 500;
    border-bottom: none;
}

.plan-price {
    margin: 20px 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-strikethrough {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-prefix {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: 'Swily Bright', serif;
}

.plan-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.duration {
    font-size: 0.85rem;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.availability {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 5px;
}

.btn-whatsapp {
    background-color: transparent;
    border: 1px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    width: 100%;
    border-radius: 50px;
    padding: 18px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.featured-dark .btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

.featured-dark .btn-whatsapp:hover {
    background-color: #1ebe5d;
}

@media (max-width: 968px) {
    .plan-card-dark.featured-dark {
        transform: scale(1);
    }
    .plan-card-dark.featured-dark:hover {
        transform: translateY(-5px);
    }
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.result-item-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.result-item-premium:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.before-after {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.before-after .mini, .result-img {
    aspect-ratio: 1/1;
    font-size: 0.7rem;
    width: 50%;
    object-fit: cover;
    border-radius: 4px;
}

.result-caption {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
}

.disclaimer {
    margin-top: 60px;
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-style: italic;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    height: calc(100% - 30px);
    width: 1px;
    background-color: var(--color-primary);
}
@media (max-width: 768px) {
    .timeline-step { gap: 20px; }
    .timeline-step:not(:last-child)::after { left: 15px; }
    .step-num { width: 30px; font-size: 1.2rem; }
}

.step-num {
    font-family: 'Swily Bright', serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    width: 40px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Authority */
.authority .image-wrapper.circle {
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.authority .placeholder-img.square {
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.credentials {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.final-quote {
    margin-top: 40px;
    font-family: 'Swily Bright', serif;
    font-size: 1.5rem;
    font-style: italic;
    border-left: 3px solid var(--color-primary);
    padding-left: 30px;
}

/* CTA Section */
.cta-box {
    margin-top: 40px;
}

.refurco {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Footer */
.main-footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Dark Sections */
.bg-dark-premium {
    background-color: var(--color-bg-dark);
    color: var(--white);
}

.bg-dark-premium .section-title, 
.bg-dark-premium h3, 
.bg-dark-premium p {
    color: var(--white);
}

/* Card Style for Dark Backgrounds */
.bg-dark-premium .feature-card,
.bg-dark-premium .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--white);
}

.benefit-card {
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card .icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Comparison Slider */
.results-container {
    max-width: 800px;
    margin: 50px auto;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-after {
    width: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--white);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 968px) {
    .grid-2, .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content { order: 2; text-align: center; }
    .hero-image { order: 1; }
    .pain-content { order: 2; }
    .pain-visual { order: 1; }
    .hero-content p { margin: 0 auto 40px; }
    
    .section-padding { padding: 80px 0; }

    .authority-image { margin-bottom: 30px; }
    .comparison-slider { height: 400px; }
}

@media (max-width: 768px) {
    .plans-grid, .plans-grid-dark, .results-grid {
        grid-template-columns: 1fr;
    }

    .main-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .logo img { height: 30px !important; }

    .top-alert-container {
        margin-bottom: 16px;
        padding-top: 24px;
    }

    .top-alert-pill {
        font-size: 0.90rem;
        padding: 5px 12px;
        text-align: center;
    }

    .main-header { top: 0; } 

    .hero { text-align: center; padding-top: 60px; padding-bottom: 20px; min-height: auto; margin-left: 12px; margin-right: 12px;}
    
    .hero-content h1 { font-size: 2rem; margin-top: 5px; margin-bottom: 5px; line-height: 1.1; }

    .badge { margin-bottom: 0px; font-size: 0.60rem; padding: 4px 10px;}
    
    .hero-content p.subheadline { margin-bottom: 15px; font-size: 1rem; line-height: 1.3; padding: 0 5px; }
    .hero-grid { gap: 40px; }
    
    .comparison-slider { height: 350px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .btn { width: 100%; padding: 18px 10px; }
    .section-padding { padding: 40px 0; }
    .plan-card { padding: 40px 20px; }
    .hero { min-height: auto; padding-top: 50px; padding-bottom: 20px; }
    .comparison-slider { height: 300px; }
}

/* Floating WhatsApp Button */
@keyframes jumpWhatsApp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: jumpWhatsApp 2.5s infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #128C7E;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

.floating-whatsapp .tooltip-text {
    position: absolute;
    right: 75px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.floating-whatsapp:hover .tooltip-text {
    opacity: 1;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .floating-whatsapp .tooltip-text {
        display: none;
    }
}
