/* 
   Project: Ceo_mjs Luxury One-Page
   Theme: Medical Luxury x Fashion Editorial
*/

:root {
    /* Color Palette */
    --color-bg-base: #FAFAFA;
    /* Blanco Porcelana */
    --color-bg-alt: #F5F0EB;
    /* Beige Arena */
    --color-accent: #00B2A9;
    /* Teal/Turquesa Clínico (Subtle) */
    --color-gold: #C5A059;
    /* Dorado Mate */
    --color-bronze: #A8854A;
    /* Bronce (Alternative for Gold) */
    --color-text: #333333;
    /* Gris Carbón */
    --color-text-light: #666666;
    /* Gris Suave */
    --color-white: #FFFFFF;
    --color-pink-brand: #FF85A2;
    --color-bg-sand: #FCFAF8;
    --color-brand-pink: #FF85A2;
    /* Pastel Pink */
    --color-brand-pink-dark: #E6738F;
    /* Darker Pink for Hover */
    --color-brand-cyan: var(--color-brand-pink);
    --color-brand-cyan-dark: var(--color-brand-pink-dark);
    --color-blue-deep: var(--color-brand-pink);

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    /* Elegant, Classic */
    --font-sans: 'Montserrat', sans-serif;
    /* Modern, Clean */

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    --shadow-intense: 0 30px 60px rgba(0, 0, 0, 0.1);

    /* SEO Utilities */
    --seo-hidden: {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    ;
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   PREMIUM UI DETAILS (Final Polish)
   ========================================= */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-bronze);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Custom Text Selection */
::selection {
    background: var(--color-accent);
    /* Maria Blue context or Teal */
    color: white;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-base);
    color: var(--color-text);
    line-height: 1.6;
    max-width: 100vw;
    overflow-x: hidden;

    /* Luxury Texture Integration */
    background-image: url('../assets/images/luxury_texture.webp');
    background-repeat: repeat;
    background-position: center top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    /* Transparencia */
    backdrop-filter: blur(12px);
    /* Efecto Glassmorphism */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

/* Adjust body padding to prevent fixed header overlap */
body {
    padding-top: 70px;
    /* Base header height */
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
        /* Compact mobile header height */
    }
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area .brand-name {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--color-text);
    text-transform: uppercase;
    margin-bottom: 0;
}

.header-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    transition: var(--transition-base);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.btn-agendar {
    background-color: var(--color-brand-cyan);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(255, 133, 162, 0.3);
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 133, 162, 0.4);
    background-color: var(--color-brand-cyan-dark);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.bg-dark {
    background-color: #1a1a1a;
}

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

.text-white {
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

.text-light {
    color: var(--color-text-light);
}

.mt-small {
    margin-top: var(--spacing-sm);
}

/* Buttons */
.btn-vip {
    display: inline-block;
    background-color: var(--color-bronze);
    color: var(--color-white);
    padding: 1.2rem 3.5rem;
    /* Larger touch target */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.btn-vip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background-color: var(--color-gold);
}

/* HERO SECTION (Warm/Editorial Redesign) */
/* HERO SECTION (Full Image Design) */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFF5F7 35%, #FFD1DC 100%);
    overflow: hidden;
    margin-bottom: 0;
    z-index: 2;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    /* Centers the nested text overlay vertically */
}

/* Hero Image Display Logic - Full Width Background */
.hero-img-desktop {
    position: absolute;
    bottom: 0;
    right: 0;
    /* Flush right */
    top: auto;
    left: auto;
    width: 65%;
    /* Larger width */
    height: 100%;
    /* Full height */
    object-fit: cover;
    /* Back to cover to ensure it fills the space if needed, or stick to contain if we want the full head/body. Let's try cover with position right */
    object-position: bottom right;
    /* Anchor to bottom right */
    display: block;
    z-index: 0;
    /* Apply fade on the left edge */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

.hero-img-mobile {
    display: none;
}

/* Hero Text Overlay Positioning - Left Half */
.hero-text-overlay {
    position: relative;
    padding-left: 8%;
    width: 50%;
    z-index: 10;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    /* This guarantees perfect vertical centering against the 100vh container */
}

.hero-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #64748B;
    margin-bottom: 0.8rem;
}

.text-cyan {
    color: var(--color-brand-cyan);
    font-weight: 800;
}

.text-gold-shine {
    background: linear-gradient(45deg,
            #c5a059 0%,
            #f5d190 30%,
            #fff9e6 50%,
            #f5d190 70%,
            #c5a059 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    display: inline-block;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3));
}


.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 8.5vh, 3.2rem);
    /* Slightly smaller for visibility */
    font-style: normal;
    color: #1E293B;
    line-height: 1.05;
    margin-bottom: 0.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.85rem, 2vh, 1.1rem);
    color: #475569;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    max-width: 440px;
    letter-spacing: 0.01em;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--color-brand-cyan);
    color: var(--color-white);
    padding: 1.2rem 3.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(255, 133, 162, 0.3);
    transition: var(--transition-base);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 133, 162, 0.5);
    background-color: var(--color-brand-cyan-dark);
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {

    /* --- BULLETPROOF HERO RESET --- */
    .hero,
    .hero * {
        min-height: unset !important;
    }

    .hero {
        height: auto !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .hero-text-overlay {
        height: auto !important;
        min-height: unset !important;
    }

    .hero::before,
    .hero::after,
    .hero-text-overlay::before,
    .hero-text-overlay::after {
        content: none !important;
        display: none !important;
    }

    /* ------------------------------ */

    /* Mobile Optimization: Premium Stacked Layout */
    .hero {
        min-height: auto !important;
        /* CRITICAL: Override 100vh from desktop */
        display: flex;
        flex-direction: column;
        /* Completely transparent and clean mobile hero */
        background: transparent;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .hero-image-container {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* CRITICAL: Override vertical centering */
        align-items: flex-start;
        overflow: visible;
    }

    .hero-img-desktop {
        display: none !important;
    }

    .hero-img-mobile {
        display: none !important;
        /* Image removed completely for cleaner mobile layout */
    }

    .hero-text-overlay {
        position: relative;
        width: 100%;
        padding: 0 1.5rem 4rem 1.5rem;
        /* ZERO top padding to connect directly to the header */
        /* Push text down to avoid header, give space */
        text-align: left;
        /* Keep left alignment for readability */
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 10;
        height: auto !important;
        /* CRITICAL: Override inherited 100vh from desktop */
        justify-content: flex-start;
    }

    .hero-label {
        margin-bottom: 1rem;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem;
        font-size: 1rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-text-overlay {
        padding-left: 5%;
        width: 60%;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Glassmorphism Badge */
.glass-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    /* Overlap effect */
    background: rgba(255, 255, 255, 0.4);
    /* Translucent white */
    backdrop-filter: blur(12px);
    /* Frosted glass */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.badge-icon-check {
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    /* Teal Check */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-serif);
    color: #222;
}

.badge-info span {
    font-size: 0.8rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVE Adjustments */
@media (max-width: 960px) {


    .glass-card {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        /* Centered on mobile */
        width: 80%;
        justify-content: center;
        animation: none;
        /* Disable float on mobile for performance/layout stability */
    }
}

/* AUTHORITY SECTION */
.authority.section-padding {
    padding: var(--spacing-xl) 0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.authority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50/50 split */
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.authority-image-wrapper {
    position: relative;
    height: 600px;
    /* Taller stature */
    background-color: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Anchor image to bottom */
}

.authority-image-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.1));
    /* Add subtle depth */
}

.authority-content {
    padding-right: var(--spacing-lg);
}

.section-title {
    font-size: 3.5rem;
    /* Larger, more impactful */
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.architect-name {
    color: var(--color-text-light);
    /* Softer gray */
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Wider tracking */
}

.divider-gold {
    width: 80px;
    /* Slightly longer */
    height: 2px;
    background-color: var(--color-gold);
    margin: 0 0 2.5rem 0;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--color-text);
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

/* AUTHORITY MOBILE Adjustments */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .authority-content {
        order: 1;
        /* Move text above image */
        padding-right: 0;
        text-align: left;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .authority-image-wrapper {
        order: 2;
        /* Move image below text */
        height: auto;
        padding-top: 1rem;
    }

    .authority-image-wrapper img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        object-position: top center;
        border-radius: 50%;
        /* Make it circular like the mockup */
        margin: 0 auto;
        border: 4px solid var(--color-white);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        background-color: var(--color-bg-base);
        /* Ensure it has a solid back if transparent */
    }

    .stats-bar {
        justify-content: space-between;
        gap: 0.5rem;
    }
}


/* VIRAL RESULTS SECTION */
.viral-results {
    background-color: var(--color-bg-alt);
    /* Mármol/Beige suave */
}

.viral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    /* Widened width */
    margin-inline: auto;
}

.viral-card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

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

.card-badge {
    background-color: #EBE4DC;
    color: var(--color-text);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
    display: inline-block;
    align-self: flex-start;
    border-radius: 4px;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    /* aspect-ratio removed */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-gold);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-soft);
    background-color: transparent;
    line-height: 0;
}

.viral-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
    transform: scale(1.03);
    /* Default zoom "antes de clickear" */
}

.viral-card:hover .viral-img {
    transform: scale(1.08);
    /* "Uno más" al poner el mouse */
}



.btn-viral {
    background: linear-gradient(90deg, #A07F43 0%, #C8A362 50%, #A07F43 100%);
    color: var(--color-white);
    padding: 0.8rem 0;
    width: 100%;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
    transition: var(--transition-base);
}

.viral-card:hover .btn-viral {
    box-shadow: 0 8px 15px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

/* Responsive Viral Grid */
@media (max-width: 768px) {
    .viral-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns to reduce scrolling */
        gap: 0.8rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 0.5rem;
    }

    .card-badge {
        font-size: 0.7rem;
        /* Smaller badge for mobile */
        padding: 0.3rem 0.6rem;
    }

    .btn-viral {
        font-size: 0.75rem;
        padding: 0.6rem 0;
    }
}


.separator {
    color: #ccc;
    font-weight: 300;
}

/* GALLERY SECTION */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    overflow-x: auto;
    /* Allow scroll on mobile */
    padding-bottom: var(--spacing-sm);
}

.gallery-item {
    aspect-ratio: 9/16;
    /* TikTok vertical format */
    background-color: #eee;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    color: #777;
    font-weight: 600;
}

/* SERVICES SECTION */
/* Services Section Spacing */
.services.section-padding {
    padding-top: 0;
    /* Reduce gap from Authority section */
    padding-bottom: var(--spacing-xl);
}

/* =========================================
   SERVICIOS EXCLUSIVOS (High Impact)
   ========================================= */
.services-exclusive {
    background-color: var(--color-bg-sand);
    padding: 100px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* --- SERVICES REDESIGN --- */
.services-exclusive {
    position: relative;
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-base);
    overflow: hidden;
}

.services-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin-top: 4rem;
}

/* Side Box Help */
.services-help-sidebar {
    flex: 0 0 350px;
    background: var(--color-white);
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.help-box-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.help-visual {
    margin-bottom: 0.5rem;
}

.help-btn-circle {
    width: 60px;
    height: 60px;
    background-color: var(--color-brand-cyan);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(255, 133, 162, 0.3);
}

.help-btn-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(255, 133, 162, 0.5), 0 0 15px rgba(255, 133, 162, 0.2);
    background-color: var(--color-brand-cyan-dark);
}

.help-info h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.help-info p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Services Grid (Chips) */
.services-list-container {
    flex: 1;
    z-index: 2;
}

.services-chips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-chip {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.service-chip:hover {
    background: var(--color-brand-cyan);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(255, 133, 162, 0.3);
    border-color: var(--color-brand-cyan);
}

/* Subtle Background Image */
.services-bg-image {
    position: absolute;
    bottom: -100px;
    right: -150px;
    width: 60%;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    filter: sepia(0.5) contrast(0.9);
}

.services-bg-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 1100px) {
    .services-layout {
        flex-direction: column;
    }

    .services-help-sidebar {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-exclusive {
        padding: var(--spacing-lg) 0;
    }

    .services-chips-grid {
        grid-template-columns: 1fr;
    }

    .services-bg-image {
        width: 100%;
        bottom: 0;
        right: 0;
    }
}

/* =========================================
   LOCATION SECTION (Premium)
   ========================================= */
/* Sección Ubicación */
.location-section {
    background-color: #f7f3f0;
    /* Beige arena suave */
    padding: 80px 0;
}

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

.address-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0 2rem;
    font-size: 1.1rem;
    color: var(--color-text);
}

.pin-icon {
    font-size: 1.4rem;
    color: var(--color-gold);
}

.btn-como-llegar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-gold);
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-como-llegar:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    transform: translateX(5px);
}

/* El toque Maestro: Filtro del Mapa */
.google-map-embed {
    border-radius: 24px;
    /* rounded-2xl */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    filter: saturate(0.7) contrast(1.1);
    /* Saturation filter premium */
    transition: filter 0.3s ease;
    display: block;
}

.google-map-embed:hover {
    filter: saturate(1);
    /* Se ilumina al pasar el mouse */
}

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

    .location-content {
        order: 1;
    }

    .map-container {
        order: 2;
    }

    .address-box {
        justify-content: center;
    }

    .sticky-header .nav-links {
        display: flex;
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Hide text/external on mobile for ultra-narrow screens */
    .brand-name {
        display: none;
    }

    .nav-links a[target="_blank"] {
        display: none;
    }

    .btn-agendar {
        padding: 8px 16px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .header-logo {
        height: 30px;
    }
}

/* BOOKING SECTION */
.booking {
    position: relative;
    background-attachment: fixed;
    /* Simple parallax */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    /* Dark overlay */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem 0;
    /* Reduced default padding for a sleeker rectangular look */
}

.booking h2.booking-title {
    color: white;
    border-bottom: none;
    font-size: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   TYPEFORM STYLE WIDGET (Redesign)
   ========================================= */

/* Modal Overlay - Full Screen White */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    /* Mobile viewport fix */
    background-color: #ffffff;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

/* Container */
.booking-widget {
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Changed from height: 100% to auto/min-height to center better */
    height: auto;
    /* Remove justify-content: center to let it sit naturally */
    background: transparent;
    /* Ensure centering in flex container */
    margin-bottom: 20vh;
    /* Strong visual lift */
}

/* Progress Bar (Top Fixed) */
.tf-progress-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #f3f3f3;
}

.tf-progress-bar {
    height: 100%;
    background: var(--color-brand-pink-dark);
    /* Brand Pink */
    width: 0%;
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Typography */
.tf-h1 {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: left;
}

.tf-h1 strong {
    font-weight: 700;
    display: block;
    color: #000;
}

.tf-h2 {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: left;
}

.tf-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 500px;
}

/* Start Button */
.btn-tf-start {
    background-color: var(--color-brand-pink-dark);
    color: white;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-tf-start:hover {
    background-color: var(--color-gold);
    transform: translateY(-2px);
}

/* Options Stack */
.tf-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.tf-option-btn {
    background: rgba(255, 133, 162, 0.1);
    /* Light pink bg */
    border: 1px solid var(--color-brand-pink-dark);
    color: #333;
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tf-option-btn:hover {
    background: var(--color-brand-pink-dark);
    color: white;
}

.tf-option-index {
    background: rgba(255, 255, 255, 0.5);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 2px;
    border: 1px solid currentColor;
}

/* Input Fields */
.tf-input-group {
    margin-bottom: 2rem;
    text-align: left;
}

.tf-input {
    width: 100%;
    max-width: 600px;
    border: none;
    border-bottom: 2px solid #ddd;
    font-size: 1.5rem;
    font-family: var(--font-serif);
    padding: 10px 0;
    color: var(--color-brand-pink-dark);
    outline: none;
    transition: border-color 0.3s;
}

.tf-input:focus {
    border-bottom-color: var(--color-brand-pink-dark);
}

.tf-input::placeholder {
    color: #ccc;
    font-family: var(--font-sans);
    font-size: 1.5rem;
}

/* Navigation Arrows */
.tf-nav-btn {
    background: var(--color-brand-pink-dark);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Loading Screen */
.tf-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.tf-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--color-brand-pink-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Close Button */
.tf-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    background: none;
    border: none;
    z-index: 100;
}

.tf-close:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-modal {
        padding: 1rem;
        /* Add padding to modal wrapper on mobile */
    }

    .booking-widget {
        padding: 1rem;
        height: auto;
        /* Allow shrink wrap */
    }

    .tf-h1 {
        font-size: 1.8rem;
        /* Slightly smaller */
        margin-bottom: 1.5rem;
    }

    .tf-h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .tf-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-tf-start {
        width: 100%;
        /* Full width button on mobile */
        justify-content: center;
    }
}

/* FOOTER */
.footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-base);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-links {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--color-text-light);
    /* Default color */
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.social-link:hover {
    color: var(--color-gold);
    /* Gold on hover */
    transform: translateY(-3px);
}

/* FOOTER LAYOUT */
.footer-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-branding {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.branding-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    width: fit-content;
    /* Ensure link wraps tightly */
    transition: opacity 0.3s ease;
}

.branding-link:hover {
    opacity: 0.8;
}

.powered-text {
    font-size: 0.65rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.autogrowth-logo {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-auto {
    color: #1a1a1a;
}

.brand-growth {
    color: #00D084;
    /* Vibrant Green */
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

/* Mobile Footer adjustments */
@media (max-width: 768px) {
    .footer-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-branding {
        text-align: center;
        align-items: center;
        order: 2;
        /* Place at bottom on mobile */
        opacity: 0.7;
    }

    .footer-content {
        order: 1;
    }

    .footer-spacer {
        display: none;
    }
}

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

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

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Delay Utils */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* MOBILE RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
    .authority.section-padding {
        padding: 1.5rem 0;
    }

    .authority-grid {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
        margin-left: 0;
    }

    .authority-image-wrapper {
        flex: 0 0 45%;
        /* Restored visibility (was 30%, user wanted bigger) */
        height: auto;
        aspect-ratio: 1/1;
        width: 100%;
        border-radius: 50%;
        margin: 0;
        overflow: hidden;
        border: 2px solid #EBE4DC;
    }

    .authority-image-wrapper img {
        border-radius: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        image-rendering: -webkit-optimize-contrast;
    }

    .authority-content {
        flex: 1;
        padding-left: 0.5rem;
        /* Slight padding for text breathing room */
    }

    .authority-content h2 {
        font-size: 1.2rem;
        /* Reduced from 1.35rem */
        margin-bottom: 0.2rem;
        line-height: 1.1;
    }

    .architect-name {
        font-size: 0.7rem;
        /* Slightly smaller to fix "poquito grande" */
        margin-top: -0.2rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .divider-gold {
        margin: 0.3rem 0;
        width: 30px;
    }

    .lead-text {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
        color: #555;
    }

    .stats-bar {
        gap: 0.8rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(197, 160, 89, 0.2);
    }

    .stat-item {
        align-items: flex-start;
    }

    .stat-number {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.6em;
        line-height: 1;
    }

    /* Reduce Services vertical spacing */
    .services.section-padding {
        padding-top: 1rem;
        /* Add slight breathing room but keep tight */
        padding-bottom: 2rem;
        /* Drastically reduce bottom gap (was 8rem) */
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        /* Keep space for floating circles */
    }

    /* Reduce Viral Spacing */
    .viral-results.section-padding {
        padding-top: 0;
        /* Remove top padding to close gap with services */
        padding-bottom: 2rem;
    }

    .viral-results .section-header {
        margin-bottom: 0;
    }

    .viral-grid {
        margin-top: 1.5rem;
        /* Reduced from 3rem to bring sliders closer to title */
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .booking h2.booking-title {
        font-size: 1.5rem;
        /* Reduced from 2.5rem/1.8rem default */
        line-height: 1.3;
    }

    .booking {
        padding: 2.5rem 0;
        /* Even sleeker on mobile */
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 80vw);
        /* Carousel like scroll */
        gap: var(--spacing-sm);
        scroll-snap-type: x mandatory;
    }

    /* MOBILE HERO REFINEMENTS */
    .hero {
        min-height: auto;
        padding: 60px 0 0 0;
        flex-direction: column;
        align-items: flex-start;
        background-color: #FFFFFF;
    }

    .hero-image-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
        align-items: flex-start;
        max-width: 100%;
    }

    .hero-text-overlay {
        width: 100%;
        padding-top: 3rem;
        padding-bottom: 2rem;
        text-align: left;
    }

    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero {
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #FFFFFF;
    }

    .hero-image-container {
        position: relative;
        padding: 0;
        height: auto;
    }

    .hero-text-overlay {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
        padding: 4rem 20px 2rem;
        z-index: 10;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    }

    .hero-img-desktop {
        width: 100% !important;
        height: 50vh !important;
        object-fit: cover !important;
        margin-right: 0 !important;
    }
}

/* =========================================
   CHATBOT WIDGET (Ceo)
   ========================================= */

.chatbot-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9990;
    font-family: var(--font-sans);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* FAB (Floating Button) */
.chatbot-fab {
    background-color: white;
    border: none;
    border-radius: 50px;
    padding: 5px 20px 5px 5px;
    /* Space for text */
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 60px;
}

.chatbot-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.fab-icon-container {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* border: 2px solid #0445AF; Removed by user request */
}

.fab-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fab-text {
    color: #0445AF;
    font-weight: 700;
    font-size: 1rem;
    padding-right: 5px;
}

/* Chat Window */
.chatbot-window {
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.chatbot-window.hidden {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    pointer-events: none;
    display: none;
    /* Helper for layout */
}

/* Header */
.chat-header {
    background: var(--color-brand-cyan);
    /* Brand Cyan (Cuteness match) */
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    overflow: hidden;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat-title h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF !important;
    /* Force white */
}

.chat-status {
    font-size: 0.75rem;
    opacity: 1;
    /* Remove opacity for cleaner look */
    color: #FFFFFF !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
}

.chat-close:hover {
    opacity: 1;
}

/* Body */
.chat-body {
    flex: 1;
    background: #f3f4f6;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message.bot {
    background: white;
    padding: 12px 16px;
    border-radius: 12px 12px 12px 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    max-width: 85%;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.4;
}

/* Options Grid */
.chat-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.chat-option-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-option-card:hover {
    border-color: var(--color-brand-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 209, 255, 0.1);
}

.chat-opt-icon {
    font-size: 1.5rem;
    color: var(--color-brand-cyan);
    background: rgba(0, 209, 255, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-option-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-brand-cyan);
}

/* Footer */
.chat-footer {
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
    font-size: 0.9rem;
}

.chat-send {
    background: var(--color-brand-cyan);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Styling for Chatbot */
@media (max-width: 768px) {
    .chatbot-window {
        width: 90vw;
        height: 70vh;
        right: 5vw;
        bottom: 80px;
        /* Above the FAB */
    }
}

/* --- SEO VISUAL OPTIMIZATION --- */
.seo-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.seo-visible-section {
    padding: var(--spacing-xxl) 0;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.seo-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.seo-image {
    flex: 1;
}

.seo-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
}

.seo-content {
    flex: 1.2;
}

.seo-text {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .seo-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}