/* ESTRUCTURA SERVICIOS DE LIMPIEZA - ESTER GÓMEZ PUIG */
:root {
    --clean-blue: #0056b3;    /* Azul profesional y de higiene */
    --clean-light: #F4F7F6;   /* Fondo muy suave */
    --clean-grey: #4A4A4A;    /* Gris industrial para textos */
    --clean-accent: #00A8CC;  /* Cian para detalles de agua/limpieza */
    --white: #FFFFFF;
    --transition: all 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', system-ui, sans-serif; background-color: var(--clean-light); color: var(--clean-grey); line-height: 1.8; overflow-x: hidden; }
h1, h2, h3, h4 { font-weight: 800; color: var(--clean-blue); }

/* CABECERA CORPORATIVA */
header { background: rgba(255, 255, 255, 0.98); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-bottom: 3px solid var(--clean-accent); }
.brand h1 { font-size: 1.9rem; text-transform: uppercase; letter-spacing: -0.5px; }
.brand h1 span { color: var(--clean-accent); }
.brand p { font-size: 0.85rem; color: #777; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; }
nav { display: flex; gap: 30px; align-items: center; }
.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--clean-grey); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--clean-accent); transition: var(--transition); }
.nav-links a:hover { color: var(--clean-blue); }
.nav-links a:hover::after { width: 100%; }
.lang-selector { padding: 8px 16px; background: var(--clean-blue); border: none; color: var(--white); font-weight: bold; border-radius: 4px; cursor: pointer; transition: var(--transition); font-family: 'Montserrat', sans-serif; }
.lang-selector:hover { background: var(--clean-accent); }

/* HERO CON VÍDEO LOCAL DE FONDO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: flex-start; padding: 0 5%; overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(45%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; margin-top: 80px; padding: 50px; background: rgba(255, 255, 255, 0.9); border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-left: 6px solid var(--clean-accent); }
.hero-content h2 { font-size: 3.5rem; color: var(--clean-blue); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; color: var(--clean-grey); font-weight: 500; }

/* BLOQUES DE CONTENIDO DENSOS */
.content-block { padding: 100px 5%; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.content-block.full { grid-template-columns: 1fr; max-width: 1000px; text-align: center; }
.content-block h2 { font-size: 2.8rem; margin-bottom: 30px; position: relative; padding-bottom: 20px; }
.content-block h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: var(--clean-accent); }
.content-block.full h2::after { left: 50%; transform: translateX(-50%); }
.content-block p { font-size: 1.15rem; margin-bottom: 25px; text-align: justify; }

/* CATÁLOGO INQUEBRANTABLE (SOLO TÍTULOS E IMÁGENES) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 60px; width: 100%; }
.service-card { position: relative; height: 380px; border-radius: 8px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; background: var(--clean-blue); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 0.8s ease; filter: brightness(55%); }
.service-card:hover img { transform: scale(1.08); filter: brightness(40%); }
.service-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,86,179,0.95) 0%, rgba(0,86,179,0) 60%); z-index: 2; pointer-events: none; }
.service-card h3 { position: relative; z-index: 3; color: var(--white); font-size: 1.4rem; font-weight: 800; text-align: center; padding: 30px 20px; width: 100%; text-transform: uppercase; letter-spacing: 0.5px; }

/* TESTIMONIOS ANÓNIMOS */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; margin-top: 50px; }
.testimonial-card { background: var(--white); padding: 50px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; border-bottom: 4px solid var(--clean-accent); }
.testimonial-card p { font-size: 1.15rem; font-style: italic; color: var(--clean-grey); position: relative; z-index: 1; text-align: justify; }
.testimonial-card::before { content: '”'; position: absolute; top: 10px; right: 30px; font-family: 'Montserrat', serif; font-size: 6rem; color: var(--clean-light); line-height: 1; z-index: 0; }

/* FAQ: EXACTAMENTE 2 PREGUNTAS */
.faq-container { background: var(--white); padding: 70px; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); text-align: left; border-left: 6px solid var(--clean-blue); }
.faq-item { margin-bottom: 50px; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item h3 { color: var(--clean-blue); font-size: 1.6rem; margin-bottom: 20px; font-weight: 800; }
.faq-item p { font-size: 1.15rem; }

/* FOOTER UNIFICADO GLOBAL */
footer { background: var(--clean-blue); padding: 80px 5% 40px; margin-top: 100px; color: var(--white); }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; max-width: 1400px; margin: 0 auto 60px; }
.footer-columns h4 { color: var(--clean-accent); font-size: 1.3rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-columns p { color: #E2E8F0; font-size: 1.05rem; margin-bottom: 10px; }
.footer-menu-links { list-style: none; }
.footer-menu-links li { margin-bottom: 12px; }
.footer-menu-links a { color: #E2E8F0; text-decoration: none; font-size: 1rem; transition: var(--transition); display: block; }
.footer-menu-links a:hover { color: var(--white); transform: translateX(5px); }

/* LOGO KIT DIGITAL ESTRICTO */
.logo-kit-centered { height: 125px !important; background-color: transparent !important; display: block; margin: 0 auto 50px; }
.footer-legal-text { text-align: center; color: #94A3B8; font-size: 0.95rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; }