/* VARIABLES DE MARCA ORIGINALES */
:root {
  --azul-profundo: #142032;
  --verde-lima: #8CC63F;
  --gris-tecnico: #4D4D4D;
  --blanco: #FFFFFF;
  --fondo-gris: #F4F7F9;
  --whatsapp-green: #25D366;
  --sem-azul: #3498db; --sem-violeta: #9b59b6; --sem-amarillo: #f1c40f; --sem-naranja: #e67e22; --sem-verde: #2ecc71;
}

body { margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; color: var(--gris-tecnico); background-color: var(--blanco); line-height: 1.5; }

/* COMPONENTES COMPARTIDOS (WhatsApp y Footer) */
.wsp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: var(--whatsapp-green); color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 100; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; }
.wsp-float:hover { transform: scale(1.1); background-color: #128C7E; }

.main-footer { background-color: var(--azul-profundo); color: var(--blanco); padding: 30px 20px; margin-top: 40px; border-top: 5px solid var(--verde-lima); }
.footer-content { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo img { max-height: 85px; width: auto; display: block; }
.footer-info { flex: 2; text-align: center; font-size: 0.8rem; color: #d1d8e0; }
.footer-social { flex: 1; display: flex; justify-content: flex-end; min-width: 150px; position: relative; }

/* TOOLTIP MAIL ORIGINAL */
.social-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; background-color: var(--verde-lima); color: var(--blanco); }
.mail-tooltip { position: absolute; bottom: 50px; right: 0; background: var(--blanco); color: var(--azul-profundo); padding: 8px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; box-shadow: 0 2px 10px rgba(0,0,0,0.2); display: none; white-space: nowrap; z-index: 10; }
.mail-tooltip::after { content: ""; position: absolute; top: 100%; right: 15px; border: 8px solid transparent; border-top-color: var(--blanco); }

/* DISEÑO DE PÁGINA DE INICIO */
.hero-banner { background-color: var(--azul-profundo); padding: 40px 20px; text-align: center; border-bottom: 5px solid var(--verde-lima); color: white; }
.hero-banner h1 { font-size: 1.8rem; text-transform: uppercase; margin: 0; }
.cta-whatsapp { display: inline-flex; align-items: center; gap: 8px; background-color: var(--whatsapp-green); color: white; padding: 12px 24px; border-radius: 50px; text-decoration: none; font-weight: 700; margin-top: 20px; }

.container { padding: 25px 20px; max-width: 1100px; margin: 0 auto; }
.grid-servicios { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.card { background: var(--blanco); border-radius: 10px; padding: 20px; border: 1px solid #e0e6ed; display: flex; flex-direction: column; }
.card-icon { font-size: 1.8rem; color: var(--verde-lima); margin-bottom: 10px; }
.req-box { background-color: var(--fondo-gris); padding: 10px; border-radius: 6px; margin-top: auto; border-left: 3px solid var(--verde-lima); }
.req-box span { display: block; font-size: 0.65rem; font-weight: 700; color: var(--azul-profundo); text-transform: uppercase; }

/* SEMÁFORO HORIZONTAL ORIGINAL */
.semaforo-container { margin-top: 40px; overflow-x: auto; padding-bottom: 20px; }
.semaforo-h { display: flex; justify-content: space-between; align-items: flex-start; min-width: 800px; position: relative; }
.semaforo-h::before { content: ""; position: absolute; top: 15px; left: 50px; right: 50px; height: 2px; background: #eee; z-index: 1; }
.sem-step-h { flex: 1; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.dot-h { width: 14px; height: 14px; border-radius: 50%; border: 4px solid #fff; margin-bottom: 15px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.azul { background: var(--sem-azul); } .violeta { background: var(--sem-violeta); } .amarillo { background: var(--sem-amarillo); } .naranja { background: var(--sem-naranja); } .verde { background: var(--sem-verde); }

/* ESTILOS GESTIÓN DIGITAL */
.feature-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 60px; }
.deptos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.depto-item { background: rgba(255,255,255,0.1); padding: 15px; border-radius: 8px; text-align: center; }

/* ESTILOS FAQ ORIGINALES */
.faq-item { background: var(--blanco); border-radius: 8px; margin-bottom: 15px; border: 1px solid #e0e6ed; }
.faq-question { padding: 20px; font-weight: 600; color: var(--azul-profundo); display: flex; gap: 12px; cursor: pointer; }
.faq-answer { padding: 0 20px 20px 52px; font-size: 0.95rem; color: var(--gris-tecnico); display: block; }
