:root {
    /* Brand Colors */
    --color-cyan: #00bdd1;
    --color-navy: #2b619a;
    --color-yellow: #ffc32b;
    --color-purple: #7d459b;
    --color-black: #000000;
    --color-grey: #636464;
    --color-white: #ffffff;
    --color-copper: #d08f4f; /* New brand color */

    /* Functional Color Mapping */
    --color-bg: #FAFCFD;
    --color-text: var(--color-black);
    --color-text-light: var(--color-grey);
    
    --color-primary: var(--color-yellow); /* Primary CTA */
    --color-primary-hover: #e5af26;
    
    --color-secondary: var(--color-cyan); /* Welfare / Wellness */
    --color-tertiary: var(--color-navy); /* Trust / Header */
    --color-brand: var(--color-purple); /* Identity */
    
    --color-glass: rgba(255, 255, 255, 0.85);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Radii */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-pill: 999px;
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 30px 60px rgba(43, 97, 154, 0.12);
    
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 120px;

    /* Glassmorphism Refined */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    /* El fondo ahora es administrado por el .bg-video-overlay */
    background: transparent;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-logo {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-tertiary); /* Azul Marino en títulos da confianza institucional */
    letter-spacing: -0.03em;
}

/* Decoraciones y Highlights UX */
.text-highlight {
    color: var(--color-brand);
    position: relative;
    display: inline-block;
}
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background-color: var(--color-primary);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.hero-highlight {
    color: #f7b731; /* Un tono mostaza más elegante y cálido */
    font-weight: 700;
}

.section-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--space-sm);
}

/* Animations de Scroll UI */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones de Scroll UI */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Animated Video Layer */
.bg-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.bg-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Overlay sutil para no perder legibilidad ni el look "limpio" */
.hero-video-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Typography */
/* Typography Enhancement */
h1 { 
    font-size: clamp(2.8rem, 6vw, 4.5rem); 
    font-weight: 700; 
    line-height: 1.1;
    letter-spacing: -0.04em;
}
h2 { 
    font-size: clamp(2.2rem, 4vw, 3.2rem); 
    font-weight: 700; 
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}
h3 { 
    font-size: clamp(1.5rem, 2.5vw, 2rem); 
    font-weight: 600;
    letter-spacing: -0.02em;
}
p { 
    font-size: 1.125rem; 
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Premium Utility Classes */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.shadow-subtle { box-shadow: var(--shadow-soft); }
.shadow-premium { box-shadow: var(--shadow-premium); }

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-pill); }

/* Buttons & Links */
a { text-decoration: none; color: inherit; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary); /* Amarillo CTA */
    color: var(--color-text); /* Texto oscuro sobre amarillo para contraste */
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 195, 43, 0.4);
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(44, 42, 41, 0.1);
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.icon-btn:hover {
    background: rgba(44, 42, 41, 0.05);
}

.btn-text {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-text);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

.header.scrolled, 
.header.header-subpage {
    background: rgba(15, 15, 15, 0.85); /* Oscuro con blur tipo premium */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header.header-subpage .brand-logo-img {
    height: 60px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.header-left {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 80px; /* Refined size */
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1); /* Logo blanco sobre video */
}

.header.scrolled .brand-logo-img {
    height: 60px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    cursor: pointer;
    opacity: 0.8;
}

.header-wp-icon {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.header-wp-icon:hover {
    opacity: 1;
}

.btn-reservar {
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.75em;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 12px 0;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; /* puente invisible pseudo-element */
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 24px !important;
    color: var(--color-text) !important;
    font-weight: 500 !important;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s !important;
}

.dropdown-item::after {
    display: none !important; /* Esconder subrayado del nav normal */
}

.dropdown-item:hover {
    background: rgba(0,0,0,0.03);
    color: var(--color-headline) !important;
}

.color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 0 5%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    color: white;
}

.hero-shell {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    z-index: 10;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

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

.hero-trust-line {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: var(--color-secondary);
    background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center center;
    /* Organic Shape CSS */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: var(--shadow-hover);
    animation: organicMorph 8s ease-in-out infinite alternate;
    overflow: visible;
}

@keyframes organicMorph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.hero-image-content {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: var(--glass-shadow);
}

.trust-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: auto;
}

.animated-bounce {
    animation: subtleBounce 4s ease-in-out infinite;
}
@keyframes subtleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-text strong {
    display: block;
    line-height: 1.2;
    color: var(--color-tertiary);
    font-weight: 600;
}

.badge-text span {
    font-size: 0.85rem;
    color: #333;
}

/* Trust Strip */
.vet-highlight {
    padding: 0 5%;
    margin-top: -80px;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 20;
}

.vet-highlight-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: 40px 60px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-purple) 0%, #5d3275 100%);
    color: white;
    box-shadow: var(--shadow-premium);
}

.vet-highlight-content h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 2rem;
}

.vet-highlight-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.vet-label {
    display: inline-block;
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.btn-vet-cta {
    background: white;
    color: var(--color-purple);
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-vet-cta:hover {
    transform: scale(1.05);
    background: var(--color-yellow);
    color: var(--color-black);
}

.trust-bar-new {
    padding: var(--space-md) 5%;
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #fbfbfb;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-soft);
}

.trust-card-icon {
    font-size: 1.5rem;
    background: rgba(0, 189, 209, 0.1);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.trust-card-text strong {
    display: block;
    color: var(--color-navy);
    font-size: 1rem;
    margin-bottom: 2px;
}

.trust-card-text span {
    font-size: 0.9rem;
    color: var(--color-grey);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .trust-bar-container {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    padding: var(--space-xl) 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.service-card-new {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-10px);
}

.service-image-header {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.price-tag {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
}

.service-body {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    margin-bottom: 12px;
    color: var(--color-navy);
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    font-size: 0.95rem;
    color: var(--color-grey);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '🐾';
    font-size: 0.8rem;
}

.service-btn-main {
    margin-top: auto;
    background: var(--color-navy);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-btn-main:hover {
    background: var(--color-purple);
}

.wellness-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border-radius: var(--radius-lg);
    gap: 30px;
}

.wellness-text h3 {
    color: var(--color-purple);
    margin-bottom: 8px;
}

/* Cómo funciona */
.how-it-works {
    padding: var(--space-xl) 5%;
    background: #fdfdfd;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 1;
    line-height: 1;
}

.step-visual {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-card h3 {
    margin-bottom: 12px;
    color: var(--color-navy);
    position: relative;
    z-index: 2;
}

.step-card p {
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    /* Comunidad Section Styles (Keep existing or refine) */
}

/* Testimonials */
.testimonials {
    padding: var(--space-xl) 5%;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-tertiary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info strong {
    display: block;
    color: var(--color-black);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-grey);
}

/* Location & Trust */
.location-trust {
    padding: var(--space-xl) 5%;
    background: #f8f9fa;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.address-line {
    font-weight: 600;
    color: var(--color-navy);
    margin: 20px 0 10px;
}

.location-context {
    color: var(--color-grey);
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 20px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

.map-placeholder {
    height: 400px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    border: 1px dashed #ccc;
}

/* FAQ */
.faq-preview {
    padding: var(--space-xl) 5%;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-content {
    padding: 0 24px 24px;
    color: var(--color-grey);
}

/* Final CTA */
.final-cta {
    padding: var(--space-xl) 5%;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-navy) 100%);
    color: white;
    border-radius: var(--radius-xl);
}

.final-cta-container h2 {
    color: white;
    margin-bottom: 20px;
}

.final-cta-container p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================
   MOBILE NAVIGATION DRAWER
   ========================================= */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-tertiary);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
}


/* =========================================
   COMUNIDAD PAGE SHARED STYLES
   ========================================= */
.photo-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.photo-mosaic .mosaic-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #e6ddd5;
}
.photo-mosaic .mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.photo-mosaic .mosaic-item:hover img { transform: scale(1.04); }
.mosaic-tall { grid-row: span 2; height: auto; min-height: 452px; }
.mosaic-wide { grid-column: span 2; }
.mosaic-item { height: 220px; }
.mosaic-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    color: white;
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}
.mosaic-item:hover .mosaic-caption { opacity: 1; }

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.event-card {
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    padding: 28px 24px;
    border-top: 5px solid var(--comunidad-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(45, 110, 78, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(45, 110, 78, 0.14); }
.event-icon { font-size: 2rem; margin-bottom: 14px; }
.event-card h3 { font-size: 1.25rem; color: var(--color-tertiary); margin-bottom: 10px; }

.classes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.class-pill {
    background: var(--comunidad-tint);
    color: var(--comunidad-color);
    border: 1.5px solid rgba(45,110,78,0.2);
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.25s, color 0.25s;
}
.class-pill:hover { background: var(--comunidad-color); color: white; }

.pack-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--comunidad-color);
    text-align: center;
    line-height: 1.25;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .photo-mosaic { grid-template-columns: repeat(2, 1fr); }
    .mosaic-tall { min-height: 280px; }
    .mosaic-wide { grid-column: span 1; }
    .mobile-menu-btn { display: block; }
}


.service-card {
    position: relative;
    height: 540px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    isolation: isolate;
    box-shadow: 0 20px 44px rgba(30, 15, 44, 0.18);
    background-repeat: no-repeat;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255,255,255,0.7);
    pointer-events: none;
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 56px rgba(30, 15, 44, 0.28);
}

.service-card.beauty { 
    background: linear-gradient(to bottom, rgba(91, 34, 122, 0.06), rgba(18, 10, 28, 0.88)), url('beauty_service.png');
    background-size: cover;
    background-position: center;
}
.service-card.wellness { 
    background: linear-gradient(to bottom, rgba(197, 147, 220, 0.08), rgba(25, 10, 28, 0.86)), url('wellness_service.png');
    background-size: cover;
    background-position: center center;
}
.service-card.salud { 
    background: linear-gradient(to bottom, rgba(94, 168, 220, 0.08), rgba(14, 22, 40, 0.84)), url('salud_service.png');
    background-size: cover;
    background-position: center center;
}
.service-card.cuidado { 
    background: linear-gradient(to bottom, rgba(219, 175, 78, 0.05), rgba(31, 19, 12, 0.84)), url('cuidado_service.png');
    background-size: cover;
    background-position: center center;
}
.service-card.foto { 
    background: linear-gradient(to bottom, rgba(227, 164, 103, 0.04), rgba(36, 18, 19, 0.84)), url('foto_service.png');
    background-size: cover;
    background-position: center center;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.34) 46%, rgba(0,0,0,0.02) 78%),
        linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 26%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.96);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.card-content h3 {
    color: var(--color-white);
    margin-bottom: 0;
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    line-height: 1.04;
    text-wrap: balance;
    text-shadow: 0 3px 18px rgba(0,0,0,0.32);
}

.service-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 92%;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 132px;
    padding: 13px 20px;
    border-radius: 999px;
    background: #f2ca62;
    color: #241423;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card:hover .service-cta {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
    background: #ffd76e;
}

/* Why Us */
.why-us {
    padding: var(--space-xl) 5%;
    max-width: 1400px;
    margin: var(--space-xl) auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.why-image {
    height: 550px;
    border-radius: 40px 100px 40px 100px;
    background-color: var(--color-secondary);
    background-image: url('https://images.unsplash.com/photo-1599839619722-39751411ea63?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 25px 50px rgba(43, 97, 154, 0.15); /* Sombra azul marina suave */
}

.floating-paw {
    position: absolute;
    font-size: 3rem;
    background: var(--color-white);
    width: 80px; height: 80px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    animation: subtleBounce 5s ease infinite alternate-reverse;
    z-index: 10;
}

/* Modificadores de las Huellitas Flotantes 🐾 */
.paw-hero {
    bottom: -15px; left: -15px;
    font-size: 2.2rem;
    width: 60px; height: 60px;
    animation: subtleBounce 4s ease infinite alternate;
}

.paw-services-left {
    top: 50px; left: 1%;
    font-size: 2.5rem;
    width: 70px; height: 70px;
    animation: subtleBounce 6s ease infinite alternate-reverse;
}

.paw-services-right {
    bottom: 50px; right: 2%;
    font-size: 2.1rem;
    width: 60px; height: 60px;
    animation: subtleBounce 4.5s ease infinite alternate;
}

.paw-why-tr {
    top: -20px; right: -20px;
}

.paw-why-bl {
    bottom: -20px; left: -20px;
    font-size: 2rem;
    width: 55px; height: 55px;
    animation: subtleBounce 5.5s ease infinite alternate;
}

.benefit-list {
    list-style: none;
    margin-top: var(--space-md);
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Mobile Action Bar - Oculto en favor del Floating Action Container Global */
.mobile-action-bar {
    display: none;
}

/* Nuevos Botones Flotantes Permanentes (Desktop & Mobile) */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.fab-whatsapp {
    background-color: #25d366; /* Color de WhatsApp nativo para máxima conversión o --color-secondary */
    color: #ffffff;
}
.fab-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.fab-reservar {
    background-color: var(--color-primary); /* Amarillo */
    color: var(--color-text);
}
.fab-reservar:hover {
    box-shadow: 0 10px 30px rgba(255, 195, 43, 0.4);
}

/* Floating Promo Badge ($99) */
.fab-promo {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px 20px 6px 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(43, 97, 154, 0.25);
    text-decoration: none;
    z-index: 1000;
    border: 2px solid #2b619a; /* Color Confianza */
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-promo:hover {
    transform: translateY(-5px) scale(1.03);
}

.promo-badge {
    background: #2b619a;
    color: white;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: inset 0 -3px 6px rgba(0,0,0,0.15);
}

.promo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-text strong {
    color: #2b619a;
    font-size: 0.95rem;
    line-height: 1.2;
}

.promo-text span {
    color: var(--color-cta);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   MÁS BEAUTY - SUBPAGE COMPONENTS
   ========================================= */

/* Inner Hero */
.inner-hero {
    padding: var(--space-xl) 5% var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding-top: calc(var(--space-xl) + 50px);
}
.inner-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--space-sm);
}
.inner-hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Brand Promise */
.brand-promise {
    padding: 0 5%;
    max-width: 1000px;
    margin: 0 auto var(--space-xl);
}
.promise-card {
    text-align: center;
    padding: 3rem 4rem;
    border: none;
    box-shadow: 0 15px 45px rgba(125, 69, 155, 0.08); /* Sombra morada */
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.package-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.package-card.featured {
    border: 2px solid var(--color-brand);
    position: relative;
    top: -15px; /* Stand out slightly */
    box-shadow: 0 20px 50px rgba(125, 69, 155, 0.15);
}
.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-brand);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.package-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1.5rem;
}
.package-subtitle {
    font-size: 1rem;
}
.package-includes {
    list-style: none;
    flex-grow: 1; /* Pushes the button down */
}
.package-includes li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Inclusion Section */
.inclusion-section {
    padding: var(--space-xl) 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}
.trust-feature h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.trust-feature p {
    font-size: 1rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: var(--space-lg);
    justify-content: space-between;
}
.step-card {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 4px solid var(--color-secondary);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,189,209,0.3);
}
.step-card h4 {
    margin-top: 5px;
    margin-bottom: 10px;
}

/* =========================================
   MÁS WELLNESS - SUBPAGE COMPONENTS
   ========================================= */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 20px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255, 0.9);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.bento-card h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.bento-subtitle {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.ideal-for {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: rgba(0, 189, 209, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.beneficio-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-tertiary);
    background: rgba(125, 69, 155, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

button.open-modal {
    border: none !important;
    background: none !important;
    font-size: 1.15rem !important;
    font-weight: 700;
    color: var(--color-cta) !important;
    text-align: left;
    margin-top: 20px;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    align-self: flex-start;
}

button.open-modal:hover {
    transform: translateX(6px);
    opacity: 0.8;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

/* Modals / Pop-ups */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -40%);
    width: 90%;
    max-width: 900px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    max-height: 90vh;
}

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--color-white);
    color: var(--color-brand);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.modal-text {
    padding: 30px;
    overflow-y: auto;
    color: var(--color-text);
}

.modal-text h3 {
    color: var(--color-brand);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.modal-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* =========================================
   MÁS SALUD - SUBPAGE COMPONENTS
   ========================================= */

.salud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.salud-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255, 0.9);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 6px solid #2b619a; /* Color confianza Salud */
}

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

.salud-card h3 {
    color: #2b619a;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.salud-desc {
    color: var(--color-text);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.5;
    flex-grow: 1; /* Pushes microcopy to bottom */
}

.salud-microcopy {
    font-size: 0.95rem;
    font-style: italic;
    color: #444;
    font-weight: 500;
    background: rgba(43, 97, 154, 0.05); /* Tinte azul muy suave */
    padding: 12px 18px;
    border-radius: var(--radius-md);
    border-left: 2px solid rgba(43, 97, 154, 0.4);
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Timeline (How it works) */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s;
}

.timeline-step:hover {
    transform: translateX(10px);
}

.step-num {
    background: #2b619a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

/* =========================================
   MÁS CUIDADO - SUBPAGE COMPONENTS
   ========================================= */
.cuidado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.cuidado-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 6px solid #e09b2d;
    overflow: hidden;
}

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

.cuidado-card .card-header {
    background: rgba(224, 155, 45, 0.05); /* very light warm tint */
    padding: 30px 30px 20px 30px;
}

.cuidado-card h3 {
    color: #e09b2d;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cuidado-card .subtitle {
    font-size: 1.05rem;
    color: var(--color-headline);
    font-weight: 600;
}

.cuidado-card .card-body {
    padding: 20px 30px;
    flex-grow: 1;
}

.cuidado-card .card-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
}

.cuidado-divider {
    border: none;
    border-top: 1px dashed rgba(0,0,0,0.1);
    margin: 20px 0;
}

.cuidado-card .emotional-text {
    font-style: italic;
    font-weight: 500;
    color: var(--color-headline);
    font-size: 1.1rem;
    line-height: 1.5;
}

.cuidado-card .card-footer {
    padding: 25px 30px 30px 30px;
    background: rgba(0,0,0,0.015);
    border-top: 1px solid rgba(0,0,0,0.03);
}

.cuidado-card .microcopy {
    font-size: 0.95rem;
    color: #555;
    background: rgba(255,255,255,0.8);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    border-left: 3px solid #e09b2d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* =========================================
   NUESTRA MANADA & COMUNIDAD
   ========================================= */
#comunidad {
    background: linear-gradient(to bottom, #fdfbf9 0%, #f7f3f0 100%);
    scroll-margin-top: 80px;
}

.manada-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 50px;
}

.collage-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 540px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.collage-small {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.collage-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-label {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.collage-main:hover img, .collage-small:hover img {
    transform: scale(1.05);
}

.collage-main:hover .collage-overlay, .collage-small:hover .collage-overlay {
    opacity: 1;
}

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

.manada-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.manada-pill {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-top: 4px solid #2d6e4e;
    transition: transform 0.3s ease;
}

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

.manada-pill-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 15px;
}

.manada-pill strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--color-headline);
    margin-bottom: 8px;
}

.manada-pill p {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
}

.manada-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d6e4e;
    margin-bottom: 25px;
    font-style: italic;
}

/* Timeline/Steps in Community Page */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-left: 20px;
}

.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.step-content {
    background: rgba(255,255,255,0.6);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    color: var(--color-text);
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 38px;
    bottom: 30px;
    width: 2px;
    background: rgba(45, 110, 78, 0.2);
    z-index: 1;
}

@media (max-width: 768px) {
    .manada-collage {
        grid-template-columns: 1fr;
    }
    .collage-main {
        height: 350px;
    }
    .collage-sidebar {
        flex-direction: row;
        height: 200px;
    }
    .collage-small {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .collage-sidebar {
        flex-direction: column;
        height: auto;
    }
    .collage-small {
        height: 180px;
    }
}

/* =========================================
   PREMIUM PROMO MODAL & MINI BANNER
   ========================================= */
.promo-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: calc(100% - 60px);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.promo-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.promo-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text);
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(125, 69, 155, 0.08);
    padding: 6px 14px;
    border-radius: 99px;
    width: fit-content;
}

.promo-badge-icon {
    font-size: 14px;
}

.promo-badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promo-eyebrow {
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 0;
    font-weight: 500;
}

.promo-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-tertiary);
    line-height: 1;
    margin: 4px 0;
}

.promo-description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

.promo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-tertiary);
    color: white;
    padding: 16px 24px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px -5px rgba(43, 97, 154, 0.3);
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(43, 97, 154, 0.4);
    filter: brightness(1.1);
}

.promo-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-light);
    opacity: 0.7;
    margin: 0;
}

/* Mini Banner */
.promo-mini-banner {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 99px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 1999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.promo-mini-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.promo-mini-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.mini-banner-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-tertiary);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .promo-modal {
        right: 20px;
        left: 20px;
        bottom: 90px;
        width: auto;
        padding: 24px;
    }
    .promo-price {
        font-size: 3.2rem;
    }
    .promo-mini-banner {
        right: 20px;
        left: 20px;
        bottom: 90px;
        text-align: center;
    }
}

/* Media Queries overrides for subpage */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inclusion-section {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .promise-card {
        padding: 2rem 1.5rem;
    }
    .package-card.featured {
        top: 0;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-wide, .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bond-section > div {
        grid-template-columns: 1fr !important;
    }
    .modal-content {
        flex-direction: column;
    }
    .modal-img {
        height: 200px;
    }
    .fab-promo {
        left: 50%;
        transform: translateX(-50%);
        bottom: 85px; /* Evita chocar con menu de abajo o whatsapp */
        padding: 5px 18px 5px 5px;
    }
    .fab-promo:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}

@media (min-width: 768px) {
    .modal-content {
        flex-direction: row;
    }
    .modal-img {
        width: 45%; 
        height: auto;
    }
    .modal-text {
        width: 55%; 
        padding: 40px;
    }
}

/* Media Queries Originales del App */
@media (max-width: 1024px) {
    .trust-strip {
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    .desktop-nav, .header-actions .btn-primary, .lang-switcher {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding-top: var(--space-xl);
        min-height: auto;
        gap: var(--space-md);
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto var(--space-md);
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .trust-strip {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .why-us {
        grid-template-columns: 1fr;
    }
    
    .why-image {
        height: 300px;
        order: -1;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}


/* =========================================
   NUESTRA MANADA - HOME CAROUSEL REFRESH
   ========================================= */
.manada-gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.manada-featured {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
}

.manada-feature-frame {
    position: relative;
    min-height: 520px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(25, 63, 46, 0.18);
    background: #d9d2c7;
}

.manada-feature-frame img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.55s ease, filter 0.55s ease;
}

.manada-feature-frame:hover img {
    transform: scale(1.06);
}

.manada-feature-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    padding: 36px;
    color: white;
    background: linear-gradient(to top, rgba(9, 14, 22, 0.72), rgba(9, 14, 22, 0.08) 55%, transparent 78%);
}

.manada-chip {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 10px 16px;
}

.manada-feature-overlay h3 {
    color: white;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    margin: 0;
    max-width: 640px;
}

.manada-feature-overlay p {
    color: rgba(255,255,255,0.92);
    font-size: 1.08rem;
    max-width: 620px;
    margin: 0;
}

.manada-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    color: #2d6e4e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.manada-nav:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 16px 34px rgba(0,0,0,0.16);
    background: white;
}

.manada-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.manada-thumb {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.manada-thumb img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    display: block;
}

.manada-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 22px;
    transition: border-color 0.24s ease, opacity 0.24s ease;
}

.manada-thumb.active {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 34px rgba(45, 110, 78, 0.18);
}

.manada-thumb.active::after {
    border-color: #2d6e4e;
}

.manada-thumb:not(.active) {
    opacity: 0.85;
}

.manada-thumb:hover {
    transform: translateY(-4px);
    opacity: 1;
}

.manada-pillars {
    align-items: stretch;
}

.manada-pill {
    background: rgba(255,255,255,0.9);
}

.manada-quote {
    max-width: 760px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .manada-featured {
        grid-template-columns: 1fr;
    }
    .manada-nav {
        display: none;
    }
    .manada-feature-frame,
    .manada-feature-frame img {
        min-height: 420px;
    }
    .manada-feature-overlay {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .manada-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .manada-feature-frame,
    .manada-feature-frame img {
        min-height: 360px;
    }
    .manada-feature-overlay h3 {
        font-size: 1.7rem;
    }
    .manada-feature-overlay p {
        font-size: 1rem;
    }
}

/* =========================================
   CONTACTO PAGE
   ========================================= */
.contact-hero {
    padding: calc(var(--space-xl) + 30px) 5% var(--space-lg);
}

.contact-hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: stretch;
}

.contact-address-card {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.contact-address-card .address-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(125, 69, 155, 0.1);
    color: var(--color-brand);
    font-weight: 700;
    width: fit-content;
    margin-bottom: 20px;
}

.contact-address-card h1 {
    margin-bottom: 18px;
}

.contact-address {
    font-size: 1.18rem;
    color: var(--color-text);
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.6;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.contact-hero-actions .btn-secondary-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    background: rgba(43, 97, 154, 0.08);
    color: var(--color-tertiary);
    border: 1px solid rgba(43, 97, 154, 0.12);
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-hero-actions .btn-secondary-soft:hover {
    transform: translateY(-2px);
    background: rgba(43, 97, 154, 0.12);
}

.contact-image-stack {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    min-height: 100%;
}

.contact-image-main,
.contact-image-small {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}

.contact-image-main img,
.contact-image-small img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
}

.contact-image-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.contact-image-main { min-height: 540px; }
.contact-image-small { min-height: 242px; }

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% var(--space-xl);
}

.contact-section .section-header {
    margin-bottom: 48px;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.contact-card {
    padding: 30px 26px;
    border-radius: 24px;
    background: rgba(255,255,255,0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
    border-top: 5px solid var(--color-brand);
}

.contact-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.contact-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-card .contact-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-brand);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(125, 69, 155, 0.14);
    background: rgba(255,255,255,0.85);
    color: var(--color-text);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: rgba(125, 69, 155, 0.24);
}

.contact-map-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 22px;
}

.contact-map-copy {
    padding: 36px;
}

.contact-map-copy h2 {
    margin-bottom: 18px;
}

.contact-map-copy p {
    margin-bottom: 18px;
}

.contact-map-embed {
    border-radius: 32px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.82);
}

.contact-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 12px;
}

@media (max-width: 980px) {
    .contact-hero-grid,
    .contact-map-panel {
        grid-template-columns: 1fr;
    }
    .contact-image-main {
        min-height: 380px;
    }
}

@media (max-width: 640px) {
    .contact-address-card {
        padding: 30px 24px;
    }
    .contact-image-stack {
        grid-template-columns: 1fr;
    }
    .contact-image-column {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }
    .contact-image-main {
        min-height: 300px;
    }
    .contact-image-small {
        min-height: 190px;
    }
    .contact-map-copy {
        padding: 28px 24px;
    }
}


/* Home - Nuestra Manada collage */
.manada-collage-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 120px;
    gap: 16px;
    align-items: stretch;
}

.manada-collage-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.75);
    box-shadow: 0 16px 36px rgba(20, 12, 29, 0.12);
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0.2s ease;
}

.manada-collage-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 13, 35, 0.04) 12%, rgba(22, 13, 35, 0.72) 100%);
    z-index: 1;
}

.manada-collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.manada-collage-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 22px 48px rgba(20, 12, 29, 0.18);
    z-index: 3;
}

.manada-collage-card:hover img {
    transform: scale(1.08);
}

.manada-collage-card.featured {
    grid-column: span 6;
    grid-row: span 3;
}

.manada-collage-card.tall {
    grid-column: span 3;
    grid-row: span 2;
}

.manada-collage-card.wide {
    grid-column: span 3;
    grid-row: span 2;
}

.manada-collage-card.small {
    grid-column: span 3;
    grid-row: span 1;
}

.manada-collage-card.panorama {
    grid-column: span 6;
    grid-row: span 2;
}

.manada-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    color: #fff;
    z-index: 2;
}

.manada-card-overlay h3 {
    color: #fff;
    margin: 10px 0 8px;
    font-size: clamp(1.25rem, 1.8vw, 1.85rem);
}

.manada-card-overlay p,
.manada-card-overlay strong {
    color: rgba(255,255,255,0.94);
}

.manada-card-overlay.compact strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.manada-card-overlay.compact p {
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 1024px) {
    .manada-collage-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 120px;
    }

    .manada-collage-card.featured {
        grid-column: span 6;
        grid-row: span 3;
    }

    .manada-collage-card.tall,
    .manada-collage-card.wide {
        grid-column: span 3;
        grid-row: span 2;
    }

    .manada-collage-card.small {
        grid-column: span 3;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .manada-collage-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .manada-collage-card,
    .manada-collage-card.featured,
    .manada-collage-card.tall,
    .manada-collage-card.wide,
    .manada-collage-card.small {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .manada-collage-card.featured {
        min-height: 320px;
    }

    .manada-card-overlay {
        padding: 18px;
    }
}


@media (max-width: 900px) {
    .service-card {
        height: 440px;
        border-radius: 24px;
        padding: 20px;
    }

    .card-content h3 {
        font-size: 1.7rem;
    }

    .service-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .service-card {
        height: 400px;
        padding: 18px;
    }

    .service-kicker {
        font-size: 0.82rem;
        padding: 7px 11px;
    }

    .card-content h3 {
        font-size: 1.45rem;
    }

    .service-cta {
        min-width: 118px;
        padding: 12px 18px;
    }
}


/* Homepage video hero refresh */
.hero.hero-video {
    position: relative;
    min-height: 92vh;
    max-width: none;
    margin: 0;
    padding: 0;
    display: block;
    overflow: clip;
    border-radius: 0 0 40px 40px;
}

.hero-video-media,
.hero-video-bg,
.hero-video-layer {
    position: absolute;
    inset: 0;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-layer {
    background:
        radial-gradient(circle at top right, rgba(144, 83, 199, 0.32), transparent 35%),
        linear-gradient(115deg, rgba(24, 19, 32, 0.72) 12%, rgba(24, 19, 32, 0.38) 52%, rgba(24, 19, 32, 0.62) 100%);
}

.hero-shell {
    position: relative;
    z-index: 1;
    min-height: 92vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 5% 90px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2.5rem;
    align-items: end;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero.hero-video .hero-content {
    max-width: 720px;
    padding-right: 0;
}

.hero.hero-video .hero-content h1 {
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 12px 34px rgba(0,0,0,0.18);
}

.hero.hero-video .hero-content p {
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin-bottom: 1.5rem;
    text-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-text-light {
    color: #fff;
}
.btn-text-light::after {
    background-color: #fff;
}

.hero-highlights {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-pill {
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-pill strong {
    color: #ffd15a;
}

.hero-sidecards {
    display: grid;
    gap: 1rem;
    justify-self: end;
    width: min(100%, 390px);
}

.hero-service-spotlight {
    display: grid;
    gap: 0.35rem;
    padding: 1.2rem 1.2rem 1.15rem;
    border-radius: 26px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-service-spotlight:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.34);
}

.hero-service-spotlight strong {
    font-size: 1.08rem;
}

.hero-service-spotlight span:last-child {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    line-height: 1.45;
}

.spotlight-label {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffd15a;
    font-weight: 700;
}

.hero-service-spotlight.community .spotlight-label {
    color: #d8b6ff;
}

@media (max-width: 1024px) {
    .hero-shell {
        grid-template-columns: 1fr;
        align-items: end;
    }

    .hero-sidecards {
        justify-self: stretch;
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hero.hero-video,
    .hero-shell {
        min-height: auto;
    }

    .hero-shell {
        padding: 124px 1.25rem 56px;
        gap: 1.4rem;
    }

    .hero.hero-video .hero-content h1 {
        font-size: clamp(2.2rem, 9vw, 3.3rem);
    }

    .hero.hero-video .hero-content p {
        max-width: none;
        font-size: 1rem;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-highlights {
        gap: 0.7rem;
    }

    .hero-pill {
        width: 100%;
    }

    .hero-sidecards {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}


/* =========================================
   MÁS FOTO - PHOTO WALL HERO
   ========================================= */
.photo-studio-hero {
    padding: calc(var(--space-xl) + 40px) 5% var(--space-xl);
    position: relative;
    overflow: hidden;
}

.photo-studio-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(196, 122, 106, 0.18), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(244, 206, 136, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 249, 245, 0.98), rgba(255, 246, 240, 0.92));
    z-index: 0;
}

.photo-studio-grid {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr 1.1fr;
    grid-template-rows: 220px 290px 220px;
    gap: 18px;
    align-items: stretch;
}

.studio-shot {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 24px 45px rgba(64, 34, 25, 0.12);
    min-height: 0;
    background: rgba(255,255,255,0.55);
}

.studio-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(45,24,24,0.08));
    pointer-events: none;
}

.studio-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.shot-a { grid-column: 1; grid-row: 1 / span 2; }
.shot-b { grid-column: 2; grid-row: 1; }
.shot-c { grid-column: 3 / 5; grid-row: 1; }
.shot-d { grid-column: 4; grid-row: 2; }
.shot-e { grid-column: 1; grid-row: 3; }
.shot-f { grid-column: 2; grid-row: 3; }
.shot-g { grid-column: 3; grid-row: 3; }
.shot-h { grid-column: 4; grid-row: 3; }

.photo-intro-card {
    grid-column: 2 / 4;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    width: min(100%, 760px);
    padding: 46px 48px;
    text-align: center;
    background: rgba(255, 253, 251, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 60px rgba(58, 31, 24, 0.14);
}

.photo-intro-card h1 {
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.photo-intro-card p {
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
}

.photo-hero-actions {
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 1100px) {
    .photo-studio-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 14px;
    }

    .photo-intro-card {
        grid-column: 1 / -1;
        grid-row: auto;
        order: -1;
        width: 100%;
        padding: 36px 28px;
    }

    .shot-a, .shot-b, .shot-c, .shot-d, .shot-e, .shot-f, .shot-g, .shot-h {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .photo-studio-hero {
        padding: calc(var(--space-lg) + 80px) 5% var(--space-lg);
    }

    .photo-studio-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .photo-intro-card {
        padding: 30px 22px;
        border-radius: 28px;
    }

    .photo-intro-card p {
        font-size: 1.04rem;
    }

    .studio-shot {
        border-radius: 22px;
    }

    .shot-c {
        grid-column: 1 / -1;
        min-height: 210px;
    }

    .shot-a, .shot-b, .shot-d, .shot-e, .shot-f, .shot-g, .shot-h {
        min-height: 155px;
    }
}
