:root {
    /* Palette from Configuration: Rosado, Turquesa, Vintage Magazine + Modern Dark Mode */
    --bg-dark: #121212;
    --bg-card: rgba(255, 255, 255, 0.05);
    /* Glass effect base */
    --text-main: #f0f0f0;
    --text-muted: #cccccca8;

    --accent-pink: #ff4081;
    --accent-turquoise: #00e5ff;
    --accent-green: #69f0ae;
    /* Leaf Green */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --border-radius: 16px;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius);
}

/* Typography & Layout */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-large {
    font-size: 1.2rem;
    padding: 16px 32px;
    min-height: 48px;
    /* Mobile requirement */
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-turquoise));
    color: white;
    border: none;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.5);
    transform: translateY(-2px);
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-green), var(--accent-turquoise));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    /* Removing base padding, moving to inner elements */
    text-align: center;
    background-image:
        linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9)),
        /* Dark overlay for text readability, slightly more transparent at top */
        url('assets/fondo-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: sticky;
    top: 10px;
    z-index: 100;
    margin: 0 1rem;
    /* Added margin to match previous padding */
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem 4rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-turquoise);
    letter-spacing: 1px;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.headline-h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subheadline {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.microcopy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.social-proof-hero {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    margin-top: 3rem;
    height: 300px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Abstract magazine cover style background */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-pink);
    filter: blur(80px);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    opacity: 0.4;
}

.visual-content {
    text-align: center;
    z-index: 1;
}

.visual-content h3 {
    font-size: 2rem;
    font-style: italic;
    border: 1px solid var(--text-main);
    padding: 1rem;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Sections General */
section {
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Problem / Solution */
.problem-solution {
    background: rgba(255, 255, 255, 0.02);
}

.solution-block {
    padding: 2rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-green);
}

.pain-point {
    color: var(--accent-pink);
    font-weight: 600;
}

/* Grid Discovery */
.grid-discovery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 180px;
    /* Adjusted height for better visibility of illustrations */
    object-fit: cover;
    /* Or 'contain' depending on image aspect ratio, cover usually looks better in cards if images are square */
    background: rgba(255, 255, 255, 0.05);
    /* Slight background while loading or for transparent PNGs */
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border matching glassmorphism */
}

/* Trust & Benefits */
.benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-green);
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-turquoise);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Arbitrary max-height for animation */
}

.accordion-item.active .accordion-header::after {
    content: '-';
    color: var(--accent-pink);
}

/* Final CTA */
.final-cta {
    text-align: center;
}

.cta-box {
    padding: 3rem 1rem;
    border: 1px solid var(--accent-pink);
}

.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (min-width: 768px) {
    .headline-h1 {
        font-size: 3.5rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .problem-solution .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
}

/* Floating WhatsApp Button */
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: white;
}