/* =========================================
   1. VARIABLES & RESET
   ========================================= */
   :root {
    /* PALETA DE COLORES */
    --primary: #003566;       /* Azul Marino Oscuro */
    --secondary: #001D3D;     /* Azul noche */
    --accent: #48CAE4;        /* Azul Turquesa */
    --accent-hover: #0096C7;  /* Azul Océano */
    
    --cta-color: #FF6B35;     /* Naranja Vibrante */
    --cta-hover: #E85D04;     
    
    --white: #ffffff;
    --gray-light: #F0F8FF;    /* Fondo clarito */
    --gray-text: #455a64;     /* Texto gris */
    
    --border-radius: 12px;
    --shadow: 0 12px 30px -10px rgba(0, 53, 102, 0.1);
    
    /* TIPOGRAFÍA */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden !important; }

body {
    font-family: var(--font-body);
    color: var(--primary);
    background-color: var(--white);
    line-height: 1.7;
    padding-bottom: 0; 
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button, input, textarea { font-family: var(--font-body); }

/* =========================================
   2. LAYOUT & TIPOGRAFÍA
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.small-container { max-width: 800px; margin: 0 auto; }

.section { padding: 6rem 0; }
.bg-light { background-color: var(--gray-light); }
.bg-dark { background-color: var(--primary); color: var(--white); }

h1, h2, h3, h4 { 
    font-family: var(--font-heading);
    line-height: 1.25; 
    font-weight: 700; 
    margin-bottom: 1rem; 
    color: var(--primary); 
}

h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
.bg-dark h2 { color: var(--white); }

p { margin-bottom: 1.5rem; color: var(--gray-text); font-size: 1.05rem; }

.text-highlight { color: var(--accent-hover); position: relative; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; display: block; margin-bottom: 0.5rem; }

.subtitle {
    display: block;
    color: var(--accent-hover);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }

/* =========================================
   3. BOTONES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-family: var(--font-heading);
}

.btn-primary { 
    background: var(--cta-color); 
    color: var(--white); 
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.btn-primary:hover { 
    background: var(--cta-hover); 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4); 
}

.btn-secondary { background: #25D366; color: white; }
.btn-secondary:hover { background: #1ebc57; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.w-100 { width: 100%; }

/* =========================================
   4. HEADER
   ========================================= */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: var(--primary); letter-spacing: -0.5px; }
.dot { color: var(--accent); }

.menu { display: flex; gap: 2.5rem; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--primary); font-family: var(--font-heading); }
.nav-link:hover, .active-link { color: var(--accent-hover); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; background: var(--primary); color: white; border-radius: 50px; }
.header-btn:hover { background: var(--accent-hover); }

.nav-toggle, .nav-close { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); }

/* =========================================
   5. HERO
   ========================================= */
.hero { 
    padding-top: 170px; padding-bottom: 5rem; 
    background: radial-gradient(circle at top right, rgba(72, 202, 228, 0.1), transparent 40%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.badge-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #E0F7FA; color: #006064;
    padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.stars { color: #FFB703; letter-spacing: 2px; }
.trust-item p { margin: 0; font-weight: 600; color: var(--primary); }

.image-wrapper { position: relative; }
.hero-img { 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    width: 100%; 
    object-fit: cover; 
    aspect-ratio: 4/3; 
    object-position: top center; 
}
.floating-card {
    position: absolute; bottom: 30px; left: -30px;
    background: var(--white); padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 1rem;
    animation: float 5s ease-in-out infinite;
    border-left: 4px solid var(--accent);
}
.floating-card i { font-size: 2rem; color: var(--accent); }
.floating-card span { display: block; font-weight: 700; line-height: 1; color: var(--primary); font-family: var(--font-heading); }
.floating-card small { font-size: 0.8rem; color: var(--gray-text); }

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

/* =========================================
   6. CARDS & SERVICES
   ========================================= */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.card {
    background: var(--white); padding: 2.5rem; border-radius: var(--border-radius);
    box-shadow: var(--shadow); transition: var(--transition);
    position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.02);
}
.card:hover { transform: translateY(-8px); border-bottom: 4px solid var(--accent); }

.card h3, .card p, .card-icon { position: relative; z-index: 2; }
.card h3 { font-size: 1.3rem; }

.card-icon { 
    width: 60px; height: 60px; 
    background: #E0F7FA; 
    border-radius: 12px; 
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--primary);
    margin-bottom: 1.5rem; transition: var(--transition);
}
.card:hover .card-icon { background: var(--accent); color: var(--white); }

.card-bg-img {
    position: absolute; bottom: -20px; right: -20px; width: 130px; 
    opacity: 0.08; filter: grayscale(100%); transition: var(--transition);
    pointer-events: none; z-index: 1; mix-blend-mode: multiply;
}
.card:hover .card-bg-img { transform: scale(1.1) rotate(-5deg); opacity: 0.2; bottom: -10px; right: -10px; }

/* =========================================
   7. SECTORES & ABOUT
   ========================================= */
.sector-card {
    position: relative; border-radius: var(--border-radius); overflow: hidden;
    height: 320px; box-shadow: var(--shadow);
}
.sector-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.sector-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem;
    background: linear-gradient(to top, rgba(0,53,102, 0.95), transparent);
    color: white;
}
.sector-content h3 { color: white; margin-bottom: 0.3rem; }
.sector-content p { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.9rem; }
.sector-card:hover img { transform: scale(1.08); }

.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.section-about p { color: rgba(255, 255, 255, 0.8) !important; font-size: 1rem; }

.check-list li { display: flex; gap: 0.8rem; margin-bottom: 1rem; font-weight: 500; color: #ffffff !important; }
.check-list i { color: var(--accent); font-size: 1.3rem; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-box { 
    background: rgba(255,255,255,0.08); padding: 1.5rem; 
    border-radius: var(--border-radius); text-align: center; 
    border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(5px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.stat-box h3 { color: var(--accent); font-size: 2rem; margin-bottom: 0rem; }
.stat-box p { color: rgba(255,255,255,0.8); font-weight: 500; margin: 0; }

/* =========================================
   8. TESTIMONIOS, FAQ & CONTACTO
   ========================================= */
.review-card { background: var(--white); padding: 2rem; border-radius: var(--border-radius); box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-header img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.review-header h4 { margin: 0; font-size: 1.05rem; }
.review-card p { font-style: italic; font-size: 0.95rem; color: var(--gray-text); }

.faq-wrapper { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary {
    padding: 1.5rem; font-weight: 600; cursor: pointer; list-style: none;
    position: relative; font-size: 1.05rem; color: var(--primary);
    font-family: var(--font-heading);
}
.faq-item summary::after {
    content: '+'; position: absolute; right: 1.5rem; font-size: 1.5rem; color: var(--accent-hover); top: 50%; transform: translateY(-50%);
}
.faq-item[open] summary::after { content: '-'; }
.faq-content { padding: 0 1.5rem 1.5rem; border-top: 1px solid #f0f0f0; color: var(--gray-text); }

.contact-section { margin-bottom: 0; position: relative; z-index: 10; padding-bottom: 4rem; padding-top: 4rem; }
.contact-wrapper-pro {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
    background: var(--white); padding: 4rem; border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; }
.icon-box {
    width: 45px; height: 45px; background: #E0F7FA; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.4rem; flex-shrink: 0;
}
.info-item h4 { margin-bottom: 0.1rem; font-size: 1.05rem; color: var(--primary); }
.info-item a:hover { color: var(--cta-color); }

.contact-form { background: var(--gray-light); padding: 3rem; border-radius: 16px; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.9rem; border: 1px solid #dae1e7;
    border-radius: 8px; background: white; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.2);
}

/* BOTÓN WHATSAPP FORMULARIO */
.btn-whatsapp-submit {
    background-color: #25D366 !important; /* Verde WhatsApp Base */
    color: white !important;
    border: none;
    border-radius: 50px; 
    padding: 15px 25px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2); 
}
.btn-whatsapp-submit:hover {
    background-color: #1ebc57 !important; /* Verde oscuro (igual que secondary) */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

/* =========================================
   9. FOOTER
   ========================================= */
.footer { background: var(--secondary); color: rgba(255,255,255,0.6); padding: 8rem 0 3rem; margin-top: 0; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer-links { display: flex; gap: 2rem; font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; width: 100%; }

/* =========================================
   10. ANIMACIONES Y EXTRAS
   ========================================= */
.reveal-left, .reveal-right, .reveal-bottom { opacity: 0; transition: all 0.8s ease-out; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-bottom { transform: translateY(40px); }
.active-reveal { opacity: 1; transform: translate(0); }

/* Cookies */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--primary); color: white;
    transform: translateY(100%); transition: transform 0.4s ease;
    padding: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 2rem;
    z-index: 9999; box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
.cookie-banner.show { transform: translateY(0); }

/* WhatsApp flotante (Eliminado por barra móvil) */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25d366; color: white;
    width: 55px; height: 55px; border-radius: 50%;
    text-align: center; font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* =========================================
   SECCIÓN DE MARCAS (CARRUSEL INFINITO) - ACTUALIZADO
   ========================================= */
.brands-section {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}
.brands-title {
    text-align: center; font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
    color: var(--gray-text); margin-bottom: 2.5rem; letter-spacing: 1.5px;
}
.slider {
    height: 80px; margin: auto; overflow: hidden; position: relative; width: 100%;
}
.slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
    content: ""; height: 100%; position: absolute; width: 100px; z-index: 2; pointer-events: none;
}
.slider::after { right: 0; top: 0; transform: rotateZ(180deg); }
.slider::before { left: 0; top: 0; }

.slide-track {
    display: flex; align-items: center; width: calc(200px * 14); animation: scroll 35s linear infinite;
}
.slide {
    height: 80px; width: 200px; display: flex; align-items: center; justify-content: center; padding: 0 20px;
}
.slide img {
    max-height: 35px; max-width: 160px; width: auto; height: auto; object-fit: contain;
    filter: grayscale(100%) opacity(0.6); transition: all 0.3s ease; cursor: pointer; display: block; margin: 0 auto;
}
.slide img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

/* Ajustes especiales para logos escritorio - CORREGIDO SEGÚN TUS VALORES */
.slide img.logo-wide { transform: scale(1.2); max-height: 40px; }
.slide img.logo-wide:hover { transform: scale(1.25); }

/* Aquí está tu valor original restaurado: */
.slide img.logo-wide2 { transform: scale(1.2); max-height: 100px; } 
.slide img.logo-wide2:hover { transform: scale(1.25); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 7)); } 
}

/* =========================================
   SECCIÓN CÓMO TRABAJAMOS (PROCESO)
   ========================================= */
.process-section { background-color: var(--gray-light); padding: 5rem 0; }
.process-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; position: relative; }
.process-step {
    flex: 1; text-align: center; background: white; padding: 2rem 1.5rem; border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); position: relative; z-index: 2;
    border: 1px solid rgba(0,0,0,0.02);
}
.process-step:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-color: var(--accent); }
.step-number {
    font-size: 3rem; font-weight: 900; color: var(--cta-color); opacity: 0.15;
    position: absolute; top: 10px; right: 20px; font-family: var(--font-heading); line-height: 1;
}
.step-icon {
    width: 70px; height: 70px; background: #E0F7FA; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
    font-size: 1.8rem; color: var(--primary); transition: var(--transition);
}
.icon-success { background: #dcfce7; color: #16a34a; }
.process-step:hover .step-icon { transform: scale(1.1) rotate(5deg); }
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.process-step p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 0; }
.process-arrow { align-self: center; font-size: 1.5rem; color: var(--accent); opacity: 0.5; transform: translateY(-20px); }

/* =========================================
   SECCIÓN SEO LOCAL (PRE-FOOTER)
   ========================================= */
.seo-locations { background-color: #f1f5f9; padding: 4rem 0; border-top: 1px solid #e2e8f0; position: relative; z-index: 1; }
.seo-header { margin-bottom: 2.5rem; max-width: 800px; }
.seo-header h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 0.5rem; }
.seo-header p { font-size: 0.95rem; color: var(--gray-text); }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.location-list li { margin-bottom: 0.8rem; }
.location-list a { color: #64748b; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.location-list a i { color: var(--accent); font-size: 1rem; opacity: 0.7; }
.location-list a:hover { color: var(--primary); transform: translateX(5px); }
.location-list a:hover i { opacity: 1; }
.seo-note { font-size: 0.85rem; color: #94a3b8; font-style: italic; border-top: 1px solid #e2e8f0; padding-top: 1.5rem; margin-top: 1rem; }

/* =========================================
   13. ESTILOS DEL MAPA
   ========================================= */
.map-container {
    margin-top: 2rem; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative; border: 4px solid white;
}
.map-container iframe { display: block; width: 100%; height: 250px; filter: grayscale(20%); transition: filter 0.3s ease; }
.map-container:hover iframe { filter: grayscale(0%); }
.map-overlay {
    position: absolute; bottom: 15px; left: 15px; background: var(--primary); color: white;
    padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); pointer-events: none; display: flex; align-items: center; gap: 0.5rem;
}
.map-overlay i { color: #48CAE4; }

/* =========================================
   14. BARRA FIJA MÓVIL (STICKY BAR)
   ========================================= */
.mobile-sticky-bar {
    position: fixed; bottom: 0; left: 0; width: 100%; background: white;
    padding: 12px 15px; box-shadow: 0 -5px 25px rgba(0,0,0,0.15); z-index: 99999;
    display: none; gap: 12px; align-items: center; justify-content: space-between;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    opacity: 0; visibility: hidden; transform: translateY(100%); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-sticky-bar.show { opacity: 1; visibility: visible; transform: translateY(0); }
.sticky-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border-radius: 50px; font-weight: 700; font-family: var(--font-heading);
    font-size: 1rem; text-align: center; line-height: 1; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-call { background: var(--cta-color); color: white; box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }

/* =========================================
   12. ESTILOS PÁGINA LEGAL
   ========================================= */
.header-simple { padding: 1.5rem 0; border-bottom: 1px solid #eee; background: white; }
.header-simple .container { display: flex; justify-content: space-between; align-items: center; }
.btn-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 600; }
.btn-back:hover { color: var(--cta-color); }
.legal-content { max-width: 800px; margin: 0 auto; padding-top: 3rem; }
.legal-section { margin-bottom: 3rem; }
.legal-section h2 { font-size: 2rem; color: var(--primary); border-bottom: 2px solid var(--accent); padding-bottom: 0.5rem; display: inline-block; margin-bottom: 1.5rem; }
.legal-section h3 { font-size: 1.3rem; margin-top: 1.5rem; color: var(--secondary); }
.legal-section p, .legal-section ul { color: var(--gray-text); margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; }
.legal-section ul { padding-left: 1.5rem; list-style: disc; }
.legal-section li { margin-bottom: 0.5rem; }
hr { border: 0; height: 1px; background: #e5e7eb; margin: 3rem 0; }

/* =========================================
   11. RESPONSIVE (Todas las adaptaciones móviles)
   ========================================= */
@media (max-width: 900px) {
    h1 { font-size: 2.5rem; }
    .hero-inner, .about-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-cta, .trust-item { justify-content: center; }
    .hero { padding-top: 130px; }
    .floating-card { display: none; }
    .about-stats { order: -1; margin-bottom: 2rem; }
    
    .contact-wrapper-pro { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
    .info-item { display: flex; align-items: center; justify-content: flex-start; text-align: left; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid #f0f0f0; }
    .info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .info-item h4 { margin-bottom: 0; line-height: 1.2; font-size: 1rem; }
    .info-item p, .info-item a { margin-top: 2px; font-size: 0.95rem; line-height: 1.3; }
    .icon-box { width: 42px; height: 42px; font-size: 1.2rem; }
    .map-container iframe { height: 200px; }

    .process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .process-arrow { display: none; }
}

@media (max-width: 768px) {
    .nav-toggle, .nav-close { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 85%; height: 100vh;
        background: var(--white); padding: 5rem 2rem; transition: 0.4s;
        display: flex; flex-direction: column; box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    .nav-menu.show-menu { right: 0; }
    .nav-close { position: absolute; top: 1.5rem; right: 1.5rem; }
    .menu { flex-direction: column; gap: 1.5rem; }
    .header-btn span { display: none; }
    .header-btn { padding: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
    
    .reveal-left, .reveal-right { transform: translateX(0) !important; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; }
    .whatsapp-float { display: none !important; }

    /* Barra Sticky activada en flex */
    .mobile-sticky-bar { display: flex; }
    body { padding-bottom: 80px; }

    /* Logos en móvil (Tamaños Ajustados) */
    .slide img { max-height: 22px; max-width: 100px; }
    .slide img.logo-wide { max-height: 35px; }
    /* AQUÍ TU AJUSTE: 75px en móvil */
    .slide img.logo-wide2 { max-height: 75px; } 
    
    .slider { height: 50px; }
    .slide { height: 50px; width: 120px; }
    .slide-track { width: calc(120px * 14); }
    @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-120px * 7)); } }

    /* Proceso en móvil */
    .process-grid { grid-template-columns: 1fr; gap: 2rem; position: relative; }
    .process-grid::before {
        content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 100%;
        background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 5px, transparent 5px, transparent 10px);
        transform: translateX(-50%); z-index: 0; opacity: 0.5;
    }
    .process-step { z-index: 1; }

    /* SEO Local Móvil */
    .seo-locations { padding: 3rem 0; }
    .locations-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .location-list a { font-size: 0.85rem; }

    /* Botón Form Whatsapp Móvil */
    .btn-whatsapp-submit { padding: 12px 20px; font-size: 0.95rem; }
}
/* =========================================
   MEJORA HERO: DOBLE PÍLDORA + GOTA CON FÍSICA REAL
   ========================================= */

/* 1. ANIMACIÓN DE LA GOTA (Gravedad Realista) */
.water-drop {
    display: inline-block;
    color: var(--accent); /* Azul Cyan */
    /* Usamos 'cubic-bezier' para simular que al principio pesa y luego acelera */
    animation: gravity-drop 2.5s infinite cubic-bezier(0.5, 0, 1, 0.5);
    transform-origin: center top;
    position: relative; /* Para que el movimiento sea relativo a su sitio */
}

@keyframes gravity-drop {
    /* FASE 1: Formación de la gota (Lento) */
    0% {
        transform: scale(0) translateY(-5px); /* Nace pequeña y arriba */
        opacity: 0;
    }
    30% {
        transform: scale(1) translateY(0); /* Tamaño normal, en su sitio */
        opacity: 1;
    }
    /* FASE 2: Tensión superficial (La gota "pesa" un momento) */
    45% {
        transform: scale(1.1, 0.9) translateY(1px); /* Se aplasta un pelín por el peso */
        opacity: 1;
    }
    /* FASE 3: Caída libre (Rápido por el cubic-bezier) */
    100% {
        transform: scale(0.5) translateY(20px); /* Cae lejos y se encoge */
        opacity: 0; /* Desaparece */
    }
}

/* 2. LÍNEA DE ESTADO (Píldora Verde - Igual que antes) */
.live-status-line {
    display: inline-flex; 
    align-items: center;
    gap: 10px;
    background: #DCFCE7; 
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem; 
    margin-top: 0.8rem; /* Un poco más de aire entre píldoras */
    font-family: var(--font-heading);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.1);
}

/* El punto verde pulsante */
.pulse-dot-mini {
    width: 8px;
    height: 8px;
    background-color: #16A34A;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 rgba(22, 163, 74, 0.4);
    animation: pulse-mini 2s infinite;
    flex-shrink: 0; 
}

@keyframes pulse-mini {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* El texto del estado */
.status-text-mini {
    font-size: 0.85rem;
    font-weight: 600;
    color: #14532D; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-text-mini strong { font-weight: 800; }

/* Ajuste Píldora Azul */
.badge-pill {
    display: inline-flex; 
    margin-bottom: 0; 
    /* Importante: para que la gota no se corte si cae fuera de la caja */
    overflow: visible !important; 
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .hero-content { align-items: center; }
    .live-status-line, .badge-pill { width: auto; }
}