/* ========================================
   Variables CSS Modernas
   ======================================== */

:root {
    /* Paleta de colores moderna - Tierra y naturaleza evolucionada */
    --color-primary: #6B4E3D;        /* Marrón tierra profundo */
    --color-secondary: #8FBC8F;      /* Verde salvia moderno */
    --color-accent: #D4A574;         /* Dorado cálido */
    --color-background: #FDFCFA;     /* Blanco casi puro */
    --color-surface: #FFFFFF;        /* Superficie limpia */
    --color-text-primary: #1A1A1A;   /* Negro suave para texto principal */
    --color-text-secondary: #6B7280; /* Gris medio para texto secundario */
    --color-text-light: #9CA3AF;     /* Gris claro */
    --color-white: #FFFFFF;
    
    /* Colores sólidos elegantes */
    --color-primary-solid: #7A8B7A;        /* Verde grisáceo elegante */
    --color-secondary-solid: #8B9DC3;      /* Azul grisáceo suave */
    --color-accent-solid: #B8A082;         /* Marrón dorado suave */
    --color-hero-solid: rgba(122, 139, 122, 0.95);  /* Verde grisáceo con transparencia */
    
    /* Tipografía moderna */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Sistema de espaciado fluido */
    --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
    --spacing-sm: clamp(1rem, 2vw, 1.25rem);
    --spacing-md: clamp(2rem, 4vw, 2.5rem);
    --spacing-lg: clamp(3rem, 6vw, 4rem);
    --spacing-xl: clamp(4rem, 8vw, 6rem);
    
    /* Bordes modernos */
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    /* Sistema de sombras elegantes */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.10), 0 8px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Transiciones fluidas */
    --transition-fast: all 0.15s ease-out;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Curvas de transición ultra modernas */
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* ========================================
   Scrollbar Personalizado Moderno
   ======================================== */

/* Para navegadores WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(61, 72, 82, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3d4852, #4a5563);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4a5563, #5a6570);
    box-shadow: 0 2px 8px rgba(61, 72, 82, 0.3);
}

/* Para Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #3d4852 rgba(61, 72, 82, 0.1);
}

/* ========================================
   Toast Notifications Modernas
   ======================================== */

/* ========================================
   Botón flotante de WhatsApp
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
    color: white;
}

.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: var(--z-tooltip);
    pointer-events: none;
    max-width: 400px;
}

.toast {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    border-left: 4px solid var(--color-primary-solid);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s var(--ease-elastic);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary-solid);
    transform: scaleX(0);
    transform-origin: left;
    animation: toastProgress 5s linear forwards;
}

.toast-success {
    border-left-color: #10b981;
}

.toast-success::before {
    background: #10b981;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-error::before {
    background: #ef4444;
}

.toast-warning {
    border-left-color: #f59e0b;
}

.toast-warning::before {
    background: #f59e0b;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.toast-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.toast-message {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 4px;
    margin: -4px;
    transition: var(--transition);
    border-radius: 4px;
}

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

@keyframes toastProgress {
    to {
        transform: scaleX(1);
    }
}

/* Responsive para móvil */
@media (max-width: 767px) {
    .toast-container {
        left: 20px;
        right: 20px;
        top: 80px; /* Después del header */
        max-width: none;
    }
    
    .toast {
        transform: translateY(-100%);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}

/* Reset moderno y base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   Efectos Hover Ultra Modernos
   ======================================== */

/* Clase utilitaria para hover con "glow" */
.modern-glow:hover {
    filter: drop-shadow(0 0 8px currentColor);
    transition: var(--transition);
}

/* Efecto de "breathing" para elementos importantes */
@keyframes gentle-breathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

.breathing-hover:hover {
    animation: gentle-breathing 2s ease-in-out infinite;
}

/* Efecto de shimmer para botones premium */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease-out;
}

.shimmer-effect:hover::after {
    left: 100%;
}

/* ========================================
   Header Moderno
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-butterfly {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    display: none !important; /* Oculto en todas las pantallas */
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu-content {
    display: contents;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: #3d4852;  /* Mismo color que el footer */
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s var(--ease-elastic);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(61, 72, 82, 0.4);
    background: #4a5563;
    transition: all 0.4s var(--ease-bounce);
}

.nav-cta:hover::before {
    left: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 1);
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: #5a4a3a;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Sidebar */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

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

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: var(--color-white);
    backdrop-filter: blur(20px);
    padding: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: var(--z-modal);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-elastic);
}

.nav-menu.active.show {
    transform: translateX(0);
}

/* Contenido del menú móvil */
.nav-menu.active .nav-menu-content {
    display: flex;
    flex-direction: column;
    padding: 70px var(--spacing-lg) var(--spacing-sm);
    gap: 0.5rem;
    flex: 1;
}

.nav-menu.active .nav-link {
    color: #2d3436;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out;
}

.nav-menu.active .nav-link:hover {
    color: var(--color-primary);
    padding-left: var(--spacing-sm);
    background: rgba(131, 165, 152, 0.05);
}

.nav-menu.active .mobile-cta {
    background: #949569;
    color: var(--color-white);
    text-align: center;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease-out;
}

.nav-menu.active .mobile-cta:hover {
    background: #7a7c56;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(131, 165, 152, 0.4);
}

/* Sección de redes sociales en móvil */
.mobile-social-section {
    margin-top: 1rem;
    padding: 0.75rem var(--spacing-lg) var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-social-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #949569, transparent);
    margin-bottom: 0.75rem;
}

.mobile-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem;
    background: transparent;
    color: #949569;
    border: 2px solid #949569;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-bounce);
    position: relative;
    overflow: hidden;
}

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

.mobile-social-btn:hover::before {
    left: 100%;
}

.mobile-social-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(148, 149, 105, 0.4);
    background: #949569;
    color: var(--color-white);
    border-color: #949569;
}

.social-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    flex-shrink: 0;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-text {
    flex: 1;
    font-size: 0.9rem;
}

.social-arrow {
    font-size: 1rem;
    flex-shrink: 0;
}

.social-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease-out;
}

.mobile-social-btn:hover .social-arrow {
    transform: translateX(4px);
}

/* Mostrar elementos móviles solo cuando el menú está activo */
.mobile-social-section {
    display: none;
}

.nav-menu.active .mobile-social-section {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* ========================================
   Utilidades
   ======================================== */

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: slideUp 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-text-primary) !important;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: #5a4a3a !important;
    margin-bottom: var(--spacing-md);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* ========================================
   Botones CTA Modernos
   ======================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-primary {
    background: var(--color-primary-solid);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(131, 165, 152, 0.5);
    background: #8fb5a6;
}

.pulse-button {
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

.pulse-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    animation: pulse-ring 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.cta-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.cta-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(131, 165, 152, 0.4);
    border-color: transparent;
}

.cta-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.cta-icon {
    font-size: 1.2rem;
    transition: var(--transition);
}

.cta-button:hover .cta-icon {
    transform: translateX(6px) scale(1.1);
    filter: brightness(1.2);
}

/* ========================================
   Sección Hero Moderna con Imagen
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('hero.webp');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: var(--spacing-xl) var(--spacing-md);
    padding-top: calc(70px + var(--spacing-xl));
    overflow: hidden;
}

/* Difuminado sutil de la imagen */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('hero.webp');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    filter: blur(3px);
    z-index: 0;
}

/* Overlay elegante con degradado suave */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.hero-text-container {
    max-width: 700px;
    text-align: left;
    animation: heroFadeIn 1.2s ease-out;
    backdrop-filter: blur(2px);
    padding: 2rem;
    border-radius: 12px;
}

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

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.2rem 0;
    line-height: 1.15;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.7),
                 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-logo {
    max-width: min(600px, 85vw);
    width: 100%;
    height: auto;
    margin: 0 0 1.5rem -40px;
    display: block;
    filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.7))
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: min(400px, 90vw);
        margin-bottom: 1.2rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-subtitle {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.97);
    margin: 0 0 0.8rem 0;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6),
                 0 1px 5px rgba(0, 0, 0, 0.4);
    font-weight: 600;
    max-width: 600px;
}

.hero-description {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-primary {
    display: inline-block;
    background: #949569;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(131, 165, 152, 0.45),
                0 3px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hero-cta-secondary:active {
    transform: translateY(-1px);
}

.hero-cta-primary:hover {
    background: #6f9184;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(131, 165, 152, 0.6),
                0 5px 15px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-cta-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        background-position: center 40%;
        background-attachment: scroll;
    }
    
    .hero::before {
        background-position: center 40%;
        filter: blur(2px);
    }
    
    .hero-text-container {
        text-align: center;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .hero-content {
        justify-content: center;
        padding: 0 1.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        font-size: 0.95rem;
        padding: 1rem 2rem;
    }
    
    .hero-image-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.65) 100%
        );
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
}

/* ========================================
   SECCIÓN DE URGENCIA Y PRUEBA SOCIAL
======================================== */

.urgencia-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.1), 
        rgba(255, 69, 0, 0.1),
        rgba(255, 140, 0, 0.1)
    );
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.urgencia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.urgencia-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #DC143C, #FF4500);
    color: white;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: urgent-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

@keyframes urgent-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.estadistica-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.estadistica-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.estadistica-numero {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.estadistica-label {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.urgencia-mensaje {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #FF4500;
}

.urgencia-mensaje p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.urgencia-disclaimer {
    font-size: 0.9rem !important;
    color: #666 !important;
    font-style: italic;
}

.countdown-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    color: white;
}

.countdown-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FF4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.time-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.cta-urgencia {
    background: linear-gradient(135deg, #DC143C, #FF4500) !important;
    font-size: 1.2rem !important;
    padding: 1.2rem 2.5rem !important;
    margin-top: 2rem;
    border: 3px solid rgba(255, 215, 0, 0.5);
    animation: urgent-glow 2s ease-in-out infinite alternate;
}

@keyframes urgent-glow {
    0% { 
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
        border-color: rgba(255, 215, 0, 0.5);
    }
    100% { 
        box-shadow: 0 0 40px rgba(220, 20, 60, 0.8);
        border-color: rgba(255, 215, 0, 1);
    }
}

/* ========================================
   ELEMENTOS DE MARKETING
======================================== */

.garantia-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(122, 139, 122, 0.08);
    border: 2px solid rgba(122, 139, 122, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.garantia-icon {
    font-size: 2rem;
    color: var(--color-primary-solid);
}

.garantia-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}

/* Tarjetas de Servicio Mejoradas */
.benefit-focused {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #FF6B35, #F7931E) border-box;
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #DC143C, #FF4500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.service-benefits {
    margin: 1.5rem 0;
    padding: 0;
}

.benefit {
    display: flex;
    align-items: center;
    margin: 0.8rem 0;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.price-before {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.price-now {
    font-size: 1.8rem;
    color: #FF4500;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(255, 69, 0, 0.3);
}

.price-now::before {
    content: 'Solo ';
    font-size: 0.7rem;
    color: #666;
    font-weight: 400;
}

/* ========================================
   RESPONSIVE PARA ELEMENTOS DE MARKETING
======================================== */

@media (max-width: 768px) {
    .garantia-box {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .garantia-icon {
        font-size: 1.5rem;
    }
    
    .service-benefits {
        margin: 1rem 0;
    }
    
    .benefit {
        font-size: 0.85rem;
    }
    
    .service-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .price-before {
        font-size: 1rem;
    }
    
    .price-now {
        font-size: 1.5rem;
    }
}

/* ========================================
   SECCIÓN PROPUESTA DE VALOR
======================================== */

.propuesta-valor {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-white);
    position: relative;
    z-index: 2;
    margin-top: -1px; /* Elimina cualquier gap */
}

.propuesta-valor .container {
    max-width: 900px;
}

.propuesta-valor .section-title {
    font-size: 2.2rem;
    color: #2d3436 !important;
}

.propuesta-valor .section-text {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: #5a4a3a !important;
}

/* ========================================
   Sección Servicios Moderna
   ======================================== */

.servicios {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: var(--color-background);
    position: relative;
    overflow: hidden;
}

.servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

/* Grid para 7 servicios - Layout 3-3-1 */
/* ========================================
   Sección Servicios Moderna - TARJETAS
   ======================================== */

.servicios {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

/* Grid de Tarjetas de Servicios - Mobile First */
.servicios-grid-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: clamp(2rem, 5vw, 3rem);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Tarjeta Individual de Servicio */
.servicio-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(131, 165, 152, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #949569, #a8c5b8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(131, 165, 152, 0.3);
}

.servicio-card:hover::before {
    transform: scaleX(1);
}

/* Ícono del Servicio */
.servicio-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
    filter: grayscale(0.2);
    transition: transform 0.3s ease;
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.1);
}

/* Título del Servicio */
.servicio-titulo {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: #2d3436 !important;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

/* Descripción del Servicio */
.servicio-descripcion {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Tablet: Diseño piramidal (2-2-1) */
@media (min-width: 640px) {
    .servicios-grid-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 700px;
    }
    
    /* Primera fila: 2 tarjetas */
    .servicio-card:nth-child(1) {
        grid-column: 1 / 3;
    }
    
    .servicio-card:nth-child(2) {
        grid-column: 3 / 5;
    }
    
    /* Segunda fila: 2 tarjetas */
    .servicio-card:nth-child(3) {
        grid-column: 1 / 3;
    }
    
    .servicio-card:nth-child(4) {
        grid-column: 3 / 5;
    }
    
    /* Tercera fila: 1 tarjeta centrada */
    .servicio-card:nth-child(5) {
        grid-column: 2 / 4;
    }
}

/* Desktop: 3 columnas - Pirámide invertida (3 arriba, 2 abajo centradas) */
@media (min-width: 1024px) {
    .servicios-grid-cards {
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
        max-width: 1000px;
    }
    
    /* Primera fila: 3 tarjetas */
    .servicio-card:nth-child(1) {
        grid-column: 1 / 3;
    }
    
    .servicio-card:nth-child(2) {
        grid-column: 3 / 5;
    }
    
    .servicio-card:nth-child(3) {
        grid-column: 5 / 7;
    }
    
    /* Segunda fila: 2 tarjetas centradas */
    .servicio-card:nth-child(4) {
        grid-column: 2 / 4;
    }
    
    .servicio-card:nth-child(5) {
        grid-column: 4 / 6;
    }
}

/* ========================================
   FIN Sección Servicios TARJETAS
   ======================================== */

/* Botón Ver Más Servicios */
.servicios-ver-mas {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-ver-mas {
    background: none;
    border: none;
    color: #949569;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-ver-mas:hover {
    color: #a3c1a5;
    transform: translateX(5px);
}

.btn-ver-mas .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-ver-mas:hover .arrow {
    transform: translateX(5px);
}

/* Modal de Servicios - Rediseñado */
.modal-servicios {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    overflow-y: auto;
    padding: 1rem;
}

.modal-servicios.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-contenido {
    background: #fafaf8;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-cerrar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(131, 165, 152, 0.2);
    color: #5a4a3a;
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-cerrar:hover {
    background: white;
    border-color: #83a598;
    color: #3a2a1a;
    transform: rotate(90deg);
}

.modal-titulo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #2d3436;
    margin-bottom: 0.5rem;
    text-align: center;
    padding-right: 2rem;
}

.modal-descripcion {
    text-align: center;
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Filtros Rediseñados */
.modal-filtros {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(131, 165, 152, 0.08);
    border-radius: 1rem;
}

/* Select desplegable para móvil */
.filtro-select {
    display: none;
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d3436;
    background: white;
    border: 2px solid rgba(131, 165, 152, 0.3);
    border-radius: 0.75rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2383a598' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filtro-select:focus {
    outline: none;
    border-color: #83a598;
    box-shadow: 0 0 0 4px rgba(131, 165, 152, 0.15);
}

.filtro-btn {
    background: white;
    border: 1.5px solid rgba(131, 165, 152, 0.25);
    color: #2d3436;
    padding: 0.65rem 1.25rem;
    border-radius: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.filtro-btn:hover {
    background: #f8f9fa;
    border-color: #83a598;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(131, 165, 152, 0.2);
}

.filtro-btn.active {
    background: linear-gradient(135deg, #83a598 0%, #6f9184 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(131, 165, 152, 0.35);
}

/* Lista de servicios rediseñada */
.modal-servicios-lista {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.modal-servicios-lista::-webkit-scrollbar {
    width: 8px;
}

.modal-servicios-lista::-webkit-scrollbar-track {
    background: rgba(131, 165, 152, 0.1);
    border-radius: 10px;
}

.modal-servicios-lista::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #83a598 0%, #6f9184 100%);
    border-radius: 10px;
}

.modal-servicios-lista::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6f9184 0%, #5a7a6d 100%);
}

/* Tarjeta de servicio rediseñada con imagen */
.servicio-detalle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.75rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(131, 165, 152, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: fit-content;
}

.servicio-detalle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #83a598 0%, #949569 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.servicio-detalle.hidden {
    display: none;
}

.servicio-detalle:hover {
    border-color: rgba(131, 165, 152, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.servicio-detalle:hover::before {
    transform: scaleX(1);
}

/* Servicios especiales (proyectos externos) */
.servicio-detalle.servicio-especial {
    background: linear-gradient(135deg, #fafaf8 0%, #f5f7f6 100%);
}

/* Contenedor de contenido y imagen */
.servicio-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.servicio-imagen {
    width: 100%;
    height: 180px;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
}

.servicio-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.servicio-detalle:hover .servicio-imagen img {
    transform: scale(1.05);
}

.servicio-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.servicio-detalle h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.servicio-subtitulo {
    color: #636e72;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1.4;
}

.servicio-texto {
    color: #636e72;
    line-height: 1.7;
    font-size: 0.925rem;
    margin-bottom: 1rem;
}

/* Layout desktop con imagen a la derecha en forma de "D" */
@media (min-width: 640px) {
    .servicio-detalle {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
    
    /* Servicios sin imagen ocupan todo el ancho */
    .servicio-detalle:not(.servicio-especial) {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .servicio-content {
        order: 1;
        min-width: 0;
    }
    
    .servicio-imagen {
        order: 2;
        height: 100%;
        min-height: 250px;
        width: 100%;
    }
}

/* Ajustes para desktop más grande */
@media (min-width: 1024px) {
    .servicio-detalle {
        grid-template-columns: 1fr 340px;
        gap: 2.5rem;
        padding: 2rem;
    }
    
    /* Servicios sin imagen ocupan todo el ancho en desktop también */
    .servicio-detalle:not(.servicio-especial) {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .servicio-imagen {
        min-height: 300px;
    }
}

.btn-agendar-servicio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #83a598 0%, #6f9184 100%);
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-size: 0.925rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border: none;
    box-shadow: 0 4px 12px rgba(131, 165, 152, 0.25);
}

.btn-agendar-servicio:hover {
    background: linear-gradient(135deg, #6f9184 0%, #5a7a6d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(131, 165, 152, 0.35);
}

@media (min-width: 640px) {
    .btn-agendar-servicio {
        width: auto;
        min-width: 200px;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-servicios {
        padding: 0.75rem;
        align-items: flex-start;
        padding-top: 5rem;
    }
    
    .modal-contenido {
        padding: 1.5rem 1.25rem;
        padding-top: 1.25rem;
        margin: 0;
        border-radius: 1.25rem;
        max-height: calc(100vh - 6rem);
    }
    
    .modal-titulo {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        padding-right: 2.5rem;
    }
    
    .modal-descripcion {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .modal-servicios-lista {
        max-height: calc(100vh - 16rem);
        padding-right: 0.25rem;
    }
    
    .servicio-detalle {
        padding: 1.5rem 1.25rem;
        grid-template-columns: 1fr;
    }
    
    .servicio-imagen {
        height: 200px;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .servicio-detalle h4 {
        font-size: 1.25rem;
    }
    
    .servicio-texto {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    /* Ocultar botones y mostrar select en móvil */
    .filtro-btn {
        display: none;
    }
    
    .filtro-select {
        display: block;
    }
    
    .modal-filtros {
        padding: 0.75rem;
        margin-bottom: 1.25rem;
    }
}

/* Desktop optimizations */
@media (min-width: 769px) {
    .modal-contenido {
        padding: 2.5rem;
    }
    
    .modal-servicios-lista {
        padding-right: 1rem;
    }
    
    .servicio-detalle {
        padding: 2rem;
    }
}

/* ========================================
   FIN Modal Servicios
   ======================================== */

/* Grid moderno para 5 servicios - Mobile First */
.servicios-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

/* Subtítulo de servicio */
.service-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

/* =================================================================
   SERVICIOS CAROUSEL LAYOUT
   ================================================================= */

.servicios-carousel-layout {
    display: block;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Carrusel de Servicios */
.services-carousel-container {
    position: relative;
    max-width: 100%;
    background: var(--color-surface); /* limpio y neutro */
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.services-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff; /* simple y moderno */
    /* Más padding lateral para dejar espacio a las flechas y evitar superposición */
    padding: 3rem 5.5rem;
    min-height: 420px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.service-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.service-slide.active {
    display: block;
}

.service-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 0; /* sin iconos, reducimos el gap */
}

/* Ocultamos iconos para un look más limpio */
.service-icon { display: none !important; }

.service-icon svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
    stroke: currentColor;
}

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

.service-icon:hover::before {
    left: 100%;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #3d4852;
    margin: 0 0 0.8rem 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
    opacity: 0.9;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-weight: 400;
}

/* Indicadores del Carrusel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
    position: relative;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #e5e7eb; /* gris suave */
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: none;
}

.indicator::before { display: none; }

.indicator.active {
    background: var(--color-primary-solid); /* acento de marca */
    transform: scale(1.15);
}

.indicator.active::before {
    width: 100%;
    height: 100%;
}

/* Controles de Navegación - SOLO para carrusel de servicios */
.services-carousel-container .carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    padding: 0 8px; /* pequeño respiro lateral */
}

.services-carousel-container .carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.95);
    color: #374151; /* gris oscuro moderno */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    transition: all 0.25s ease;
    pointer-events: auto;
    backdrop-filter: blur(6px);
}

/* Ligeros ajustes para sacar un poco las flechas del contenido blanco */
.services-carousel-container .prev-btn { margin-left: -8px; }
.services-carousel-container .next-btn { margin-right: -8px; }

.services-carousel-container .carousel-btn:hover {
    background: #f3f4f6;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.services-carousel-container .carousel-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Contenedor de Foto de Laura */
.laura-photo-container {
    position: relative;
    perspective: 1000px;
}

.laura-photo-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.laura-photo-wrapper:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
        0 35px 70px -15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.photo-frame {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.laura-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.laura-photo-wrapper:hover .laura-photo {
    transform: scale(1.05);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, 
        #f1f5f9 0%, 
        #e2e8f0 25%, 
        #cbd5e1 50%, 
        rgba(61, 72, 82, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed rgba(61, 72, 82, 0.3);
    position: relative;
    overflow: hidden;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.placeholder-content {
    text-align: center;
    color: #3d4852;
    z-index: 1;
    position: relative;
}

.placeholder-icon {
    margin-bottom: 1.5rem;
    opacity: 0.7;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.placeholder-icon svg {
    width: 80px;
    height: 80px;
    fill: currentColor;
}

.placeholder-text {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: white;
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.overlay-subtitle {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    opacity: 0.9;
    font-weight: 500;
}

.overlay-description {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .servicios-carousel-layout {
        margin-top: 2rem;
    }
    
    .services-carousel-container {
        padding: 1.5rem;
    }
    
    .services-carousel {
        /* Más padding lateral en mobile para no tapar texto con flechas */
        padding: 2rem 3.5rem;
        min-height: 350px;
        border-radius: 14px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        width: 75px;
        height: 75px;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .photo-frame {
        height: 350px;
    }
    
    .services-carousel-container .carousel-controls {
        left: 0;
        right: 0;
    }
    
    .services-carousel-container .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-indicators {
        gap: 0.6rem;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}

/* Extra small phones */
@media (max-width: 420px) {
    .services-carousel {
        padding: 1.75rem 2.75rem; /* un poco menos en XS pero aún dejando banda para flechas */
    }
    .services-carousel-container .carousel-btn {
    width: 40px;
    height: 40px;
    }
    .services-carousel-container .prev-btn { margin-left: -4px; }
    .services-carousel-container .next-btn { margin-right: -4px; }
}

/* Animaciones del carrusel */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px) rotateY(15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

.service-slide {
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efecto de partículas flotantes */
.services-carousel-container::before,
.services-carousel-container::after {
    content: none;
}

/* pseudo-elementos desactivados */

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* CTA Section de servicios */
.servicios-cta {
    margin-top: calc(var(--spacing-xl) * 2);
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, rgba(131, 165, 152, 0.05), rgba(131, 165, 152, 0.1));
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(131, 165, 152, 0.1);
}

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

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

/* CTA Final Simple - Con espacio inferior reducido */
.cta-final-simple {
    padding: var(--spacing-xl) var(--spacing-sm);
    padding-bottom: var(--spacing-xl);
    background: #ffffff !important;
}

.cta-info {
    margin-top: var(--spacing-lg);
    margin-bottom: 0; /* Sin espacio extra debajo del texto */
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* Textos responsivos para desktop y móvil */
.desktop-text {
    display: none;
}

.mobile-text {
    display: block;
}

/* ========================================
   SECCIÓN FRECUENCIA INFINITA
======================================== */

.frecuencia-infinita {
    padding: clamp(4rem, 8vw, 6rem) var(--spacing-sm);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.frecuencia-infinita::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #949569, transparent);
}

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

.frecuencia-header {
    margin-bottom: 2rem;
}

.frecuencia-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.frecuencia-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #949569;
    font-weight: 500;
    font-style: italic;
}

.frecuencia-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 2.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout principal con countdown y carrusel - Mobile First */
.frecuencia-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0;
}

.frecuencia-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(131, 165, 152, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(131, 165, 152, 0.2);
}

.frecuencia-fecha {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.fecha-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.fecha-mes {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #949569;
    font-weight: 700;
}

.countdown-wrapper {
    width: 100%;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(131, 165, 152, 0.15);
}

.countdown-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #949569;
    line-height: 1;
}

.countdown-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.35rem;
    font-weight: 500;
}

/* Carrusel de imágenes - Mobile First */
.frecuencia-carousel {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.carousel-track-frecuencia {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
}

.carousel-slide-frecuencia {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide-frecuencia.active {
    opacity: 1;
}

.carousel-slide-frecuencia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: #ffffff;
    width: 20px;
    border-radius: 3px;
}

/* Tablet - 2 columnas lado a lado */
@media (min-width: 640px) {
    .frecuencia-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: center;
    }
    
    .frecuencia-info {
        padding: 1.75rem;
    }
    
    .countdown {
        gap: 0.6rem;
    }
    
    .countdown-item {
        padding: 0.85rem 0.6rem;
    }
    
    .countdown-value {
        font-size: 1.75rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .carousel-track-frecuencia {
        aspect-ratio: 4/3;
    }
}

/* Desktop - Mayor espacio */
@media (min-width: 1024px) {
    .frecuencia-main {
        gap: 2.5rem;
        margin: 3rem 0;
    }
    
    .frecuencia-info {
        padding: 2rem;
    }
    
    .countdown {
        gap: 0.75rem;
    }
    
    .countdown-item {
        padding: 1rem 0.75rem;
        border-radius: 10px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .fecha-mes {
        font-size: 1.5rem;
    }
    
    .fecha-label {
        font-size: 0.9rem;
    }
}

.frecuencia-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #949569 0%, #a8c5b8 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(131, 165, 152, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 2rem;
}

.frecuencia-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(131, 165, 152, 0.4);
    background: linear-gradient(135deg, #6f9584 0%, #949569 100%);
}

.frecuencia-cta .cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.frecuencia-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* ========================================
   SECCIÓN LA CREADORA - NUEVO DISEÑO
======================================== */

.la-creadora {
    padding: 0;
    background: #fdfcfb; /* Blanco roto */
    position: relative;
    overflow: hidden;
}

.container-creadora {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Estilos comunes para todas las secciones */
.creadora-seccion {
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem);
}

/* SECCIÓN 1: Bienvenida - Layout dos columnas */
.seccion-bienvenida {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.seccion-bienvenida .seccion-imagen {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    max-height: 500px;
    justify-self: center;
}

.seccion-bienvenida .seccion-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.seccion-bienvenida .seccion-imagen:hover img {
    transform: scale(1.05);
}

.seccion-bienvenida .seccion-texto {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.titulo-principal {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2d3436;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.parrafo-intro {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

/* SECCIÓN 2: Despertar - Layout inverso (zig-zag) */
/* Actualizado: sin order forzado - respeta HTML */
.seccion-despertar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    background: #ffffff;
}

/* Clase especial para forzar imagen izquierda, texto derecha */
.seccion-inversa .seccion-imagen {
    order: 1;
}

.seccion-inversa .seccion-texto {
    order: 2;
}

.seccion-despertar .seccion-imagen {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    max-height: 450px;
    justify-self: center;
}

.seccion-despertar .seccion-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
    min-height: 300px;
    transition: transform 0.4s ease, object-position 0.4s ease;
}

.seccion-despertar .seccion-imagen:hover img {
    transform: scale(1.05);
    object-position: center 50%;
}

.parrafo-camino {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 2rem 0;
}

.iconos-camino {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.icono-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.icono-item .icono {
    font-size: 2rem;
    color: #949569;
}

.icono-item .icono-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Servicios delicados dentro de La Creadora */
.servicios-delicados {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(131, 165, 152, 0.2);
}

.servicio-item-delicado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
}

.servicio-item-delicado:hover {
    background: rgba(148, 149, 105, 0.05);
    transform: translateY(-2px);
}

.servicio-icono-delicado {
    font-size: 2rem;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.servicio-item-delicado:hover .servicio-icono-delicado {
    transform: scale(1.1);
    opacity: 1;
}

.servicio-nombre-delicado {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.servicio-item-delicado:hover .servicio-nombre-delicado {
    color: #949569;
}

@media (max-width: 768px) {
    .servicios-delicados {
        gap: 1.25rem;
    }
    
    .servicio-item-delicado {
        min-width: 100px;
    }
    
    .servicio-icono-delicado {
        font-size: 1.75rem;
    }
    
    .servicio-nombre-delicado {
        font-size: 0.8rem;
    }
}

/* SECCIÓN 3: Frase Destacada - Full width centrada */
.seccion-frase {
    text-align: center;
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.frase-destacada {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: #949569; /* Verde salvia */
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.frase-destacada::before {
    content: '"';
    font-size: 4rem;
    color: #d4a574; /* Terracota/dorado pálido */
    position: absolute;
    top: -2rem;
    left: 0;
    opacity: 0.3;
}

/* SECCIÓN 4: Propósito - Layout dos columnas (imagen izq) */
.seccion-proposito {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.seccion-proposito .seccion-imagen {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    max-height: 450px;
    justify-self: center;
}

.seccion-proposito .seccion-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
    transition: transform 0.4s ease;
}

.seccion-proposito .seccion-imagen:hover img {
    transform: scale(1.05);
}

.parrafo-proposito {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

/* SECCIÓN 5: Invitación - Full width con fondo de color */
.seccion-invitacion {
    text-align: center;
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 5vw, 3rem);
    background: #949569; /* Verde salvia al 100% */
    color: #ffffff;
}

.titulo-invitacion {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}

.parrafo-invitacion {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.boton-invitacion {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #949569;
    background: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.boton-invitacion:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #fdfcfb;
}

.firma {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 0 0;
}

/* Responsive para tablets */
@media (max-width: 768px) {
    .seccion-bienvenida,
    .seccion-despertar,
    .seccion-proposito {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Eliminado order para respetar el HTML */
    
    .iconos-camino {
        justify-content: center;
    }
    
    .frase-destacada {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
    
    .frase-destacada::before {
        font-size: 3rem;
        top: -1.5rem;
    }
}

/* ========================================
   FIN SECCIÓN LA CREADORA
======================================== */

/* ========================================
   SECCIÓN OTROS PROYECTOS
======================================== */

.otros-proyectos {
    padding: var(--spacing-xl) var(--spacing-sm);
    padding-top: calc(var(--spacing-xl) + 3rem); /* Espacio extra arriba */
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.otros-proyectos .section-header {
    margin-top: 2rem; /* Espacio adicional arriba del título */
}

/* Grid de proyectos */
.proyectos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* ========================================
   FIN SECCIÓN OTROS PROYECTOS
======================================== */

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--color-surface-secondary);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinea el contenido abajo */
    padding: 1.5rem;
    min-height: 320px; /* Altura fija para uniformidad */
    color: #fff;
}

.proyecto-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: var(--color-surface-secondary);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    min-height: 400px; /* Altura uniforme para todas las tarjetas */
    height: 100%; /* Asegura que todas tengan la misma altura en grid */
    color: #fff;
}

.proyecto-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 70%);
    z-index: 1;
    transition: background 0.3s ease;
}

.proyecto-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-out;
    z-index: 0;
}

/* Asignación de imágenes */
.proyecto-card[data-proyecto="magdala"]::after {
    background-image: url('magdala.webp');
}
.proyecto-card[data-proyecto="awakening"]::after {
    background-image: url('awakening.webp');
}
.proyecto-card[data-proyecto="harmony"]::after {
    background-image: url('armony.webp');
}

/* Wrapper para hacer toda la tarjeta clickeable */
.proyecto-card-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.proyecto-card-link:hover .proyecto-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.proyecto-card-link:hover .proyecto-card::after {
    transform: scale(1.05);
}

.proyecto-card-link:hover .proyecto-card::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 75%);
}

.proyecto-card-link .proyecto-card {
    cursor: pointer;
}


.proyecto-header,
.proyecto-description,
.proyecto-features,
.proyecto-cta-wrapper {
    position: relative;
    z-index: 2;
}

.proyecto-header {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.proyecto-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.proyecto-info {
    flex: 1;
}

.proyecto-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.proyecto-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0.25rem 0 0 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.proyecto-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0.75rem 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* 4 líneas máximo */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 4;
    flex-grow: 0; /* No permite que crezca */
    font-size: 0.9rem;
}

.proyecto-features {
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: background-color 0.2s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Mantener compatibilidad con .proyecto-tags */
.proyecto-tags {
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.proyecto-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: background-color 0.2s ease;
}

.proyecto-tag:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Nuevo wrapper para CTA dentro de tarjetas clickeables */
.proyecto-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.proyecto-cta-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.proyecto-card-link:hover .proyecto-cta-text {
    transform: translateX(3px);
}

.proyecto-card-link:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-arrow {
    font-size: 1.2rem;
    color: #ffffff;
    transition: transform 0.2s ease;
}

/* Estilos antiguos de proyecto-link (mantener por compatibilidad) */
.proyecto-link {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-text-on-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-align: center;
    align-self: flex-start; /* Alinea el botón a la izquierda */
}

.proyecto-link:hover {
    background: var(--color-primary-dark);
    transform: scale(1.03);
    color: #fff;
}

.proyecto-coming-soon {
    filter: grayscale(80%) brightness(0.9);
    cursor: not-allowed;
}

.proyecto-coming-soon .proyecto-link {
    background-color: var(--color-surface-tertiary);
    color: var(--color-text-secondary);
    pointer-events: none;
}

.proyecto-coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.proyecto-coming-soon:hover::after {
    transform: none;
}

/* ========================================
   SECCIÓN TESTIMONIOS
======================================== */

.testimonios {
    padding: var(--spacing-xl) var(--spacing-sm);
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.testimonios-carousel {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 3rem;
}

.testimonios-track {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonio-card {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: #ffffff;
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(131, 165, 152, 0.1);
}

.testimonio-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testimonio-text {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 2rem 0;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonio-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: #949569;
    font-family: 'Playfair Display', Georgia, serif;
    opacity: 0.3;
}

.testimonio-info {
    text-align: left;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.testimonio-autor {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
}

/* Controles del Carrusel de Testimonios */
.testimonios-carousel .carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.testimonios-carousel .carousel-btn {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: #4a5568;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonios-carousel .carousel-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    border-color: #949569;
    color: #949569;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dots .dot.active {
    background: #949569;
    transform: scale(1.2);
}

/* Responsive Testimonios */
@media (max-width: 768px) {
    .testimonios-carousel {
        padding: 0 1rem;
    }
    
    .testimonio-card {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .testimonio-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .testimonio-text::before {
        font-size: 2.5rem;
    }
    
    .testimonios-carousel .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ========================================
   FIN SECCIÓN TESTIMONIOS
======================================== */

/* Responsive */
@media (max-width: 768px) {
    .cta-final-persuasiva {
        padding: 4rem 0;
    }
    
    .pain-pleasure-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .oferta-limitada {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-mega {
        font-size: 1.2rem !important;
        padding: 1.5rem 2rem !important;
    }
    
    .testimonios-rapidos {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   Footer Moderno
   ======================================== */

.footer {
    position: relative;
    background: #D2A96A;
    color: #3a2f1f;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
    background: transparent;
}

.footer-waves svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
}

.footer .container {
    position: relative;
    z-index: 2;
    padding-top: calc(60px + var(--spacing-xl));
    padding-bottom: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

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

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo-main {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: brightness(0.3) contrast(1.2);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo-main:hover {
    transform: scale(1.02);
    filter: brightness(0.35) contrast(1.2);
}

.logo-img {
    height: 2.5rem;
    width: auto;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-logo-img {
    height: 2.8rem;
    width: auto;
    filter: brightness(0.4) sepia(1) hue-rotate(30deg) saturate(1.2); /* Para que el logo se vea en tonos marrones */
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-butterfly {
    font-size: 1.8rem;
    margin-right: 0.5rem;
    animation: gentle-float 3s ease-in-out infinite;
}

.logo-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.2;
    color: #5a4a3a;
}

.logo-tagline {
    font-size: 0.9rem;
    color: rgba(90, 74, 58, 0.7);
    font-weight: 400;
}

.footer-description {
    color: rgba(58, 47, 31, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.social-link {
       display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(90, 74, 58, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 74, 58, 0.2);
}

.social-link:hover {
    background: #8b7355;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
    border-color: rgba(90, 74, 58, 0.4);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: #3a2f1f;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(58, 47, 31, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #8b7355;
    transform: translateX(4px);
}

.footer-location {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(90, 74, 58, 0.2);
}

.location-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #3a2f1f;
}

.location-text {
    color: rgba(58, 47, 31, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(58, 47, 31, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-icon {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(90, 74, 58, 0.2);
    padding-top: var(--spacing-lg);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.copyright {
    color: rgba(58, 47, 31, 0.85);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.footer-links-bottom {
    display: flex;
    gap: var(--spacing-md);
}

.footer-link-small {
    color: rgba(58, 47, 31, 0.75);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-link-small:hover {
    color: #8b7355;
}

/* Fedini Credits */
.fedini-credits {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(90, 74, 58, 0.1);
}

.fedini-link-full {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 8px;
}

.fedini-link-full:hover {
    background: rgba(90, 74, 58, 0.1);
    transform: translateY(-2px);
}

.fedini-text {
    color: rgba(90, 74, 58, 0.5);
    font-size: 0.8rem;
    line-height: 1.5;
    transition: var(--transition);
    margin: 0;
}

/* ========================================
   ELIMINAR ESPACIOS EN BLANCO DEL FOOTER
   ======================================== */

/* Asegurar que no haya espacios después del footer */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.footer {
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.footer .container {
    padding-bottom: 0;
}

.fedini-credits {
    margin-bottom: 0;
    padding-bottom: var(--spacing-md);
}

.fedini-link-full:hover .fedini-text {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Animaciones Generales
   ======================================== */

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: slideUp 0.8s ease-out forwards;
}

/* ========================================
   Responsive Design Moderno
   ======================================== */

/* Mobile First - Base styles already set above */

/* Small Mobile (480px+) */
@media (min-width: 480px) {
    .hero-stats {
        flex-direction: row;
        gap: var(--spacing-xl);
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Header Desktop */
    .nav-menu {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    /* Ocultar elementos móviles en desktop */
    .mobile-social-section {
        display: none !important;
    }
    
    .mobile-cta {
        display: none !important;
    }
    
    /* Hero Desktop */
    .hero {
        padding-top: calc(70px + var(--spacing-xl));
    }
    
    /* Servicios Grid */
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    /* Grid de servicios modernos en tablet */
    .servicios-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    /* CTA buttons horizontales en tablet */
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Proyectos Grid */
    .proyectos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    /* Footer Desktop */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        text-align: left;
        gap: var(--spacing-xl);
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-description {
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-info {
        align-items: flex-start;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
}

/* Large Tablet / Small Desktop (1024px+) */
@media (min-width: 1024px) {
    /* Servicios - 3 columnas (solo 5 servicios, mejor en 2-3) */
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Grid de servicios modernos en desktop */
    .servicios-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Psicoterapia featured ocupa más espacio */
    .servicios-grid-modern .service-card.featured {
        grid-column: 1 / -1;
        grid-row: 1;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Mostrar texto de desktop y ocultar móvil */
    .desktop-text {
        display: block;
    }
    
    .mobile-text {
        display: none;
    }
    
    /* Proyectos - 3 columnas */
    .proyectos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Header más espacioso */
    .nav-container {
        height: 80px;
    }
    
    .nav-menu {
        gap: 2.5rem;
    }
    
    /* Hero más grande */
    .hero {
        padding-top: calc(80px + var(--spacing-xl));
    }
    
    /* Floating elements más visibles */
    .floating-element {
        font-size: 2.5rem;
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    /* Hero más impresionante */
    .hero-stats {
        gap: calc(var(--spacing-xl) * 1.5);
    }
    
    /* Servicios con más espacio */
    .servicios-grid {
        gap: calc(var(--spacing-xl) * 1.2);
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    /* Elementos flotantes más grandes */
    .floating-element {
        font-size: 3rem;
    }
}

/* Ultra Wide (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

/* ========================================
   Estados de Accesibilidad y Performance
   ======================================== */

/* Focus states modernos */
*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.cta-button:focus-visible,
.nav-link:focus-visible,
.social-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Reducción de movimiento para accesibilidad */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-particles,
    .floating-element,
    .scroll-wheel {
        animation: none !important;
    }
}

/* Modo oscuro automático - DESACTIVADO para mantener consistencia */
/* @media (prefers-color-scheme: dark) {
    :root {
        --color-background: #1A1A1A;
        --color-surface: #2D2D2D;
        --color-text-primary: #F5F5F5;
        --color-text-secondary: #B0B0B0;
        --color-text-light: #888888;
    }
} */

/* Performance optimizations */
.hero,
.service-card,
.floating-element {
    will-change: transform;
}

.hero-particles::before,
.hero-particles::after {
    will-change: transform, opacity;
}

/* Smooth scrolling for Safari */
@supports (-webkit-overflow-scrolling: touch) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .service-card {
        border: 2px solid var(--color-primary);
    }
    
    .cta-button {
        border: 2px solid currentColor;
    }
}

/* ========================================
   CARRUSEL DE IMÁGENES
   ======================================== */

.carrusel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

.carrusel-imagenes {
    position: relative;
    width: 100%;
    height: 100%;
}

.carrusel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.carrusel-img.active {
    opacity: 1;
    pointer-events: auto;
}

.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrusel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carrusel-prev {
    left: 10px;
}

.carrusel-next {
    right: 10px;
}

.carrusel-indicadores {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carrusel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carrusel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carrusel-dot.active {
    background: rgba(255, 255, 255, 1);
    width: 12px;
    height: 12px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .carrusel-btn {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .carrusel-prev {
        left: 5px;
    }
    
    .carrusel-next {
        right: 5px;
    }
    
    .carrusel-indicadores {
        bottom: 10px;
        gap: 6px;
    }
    
    .carrusel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carrusel-dot.active {
        width: 10px;
        height: 10px;
    }
}
