@font-face { font-family: "Comfortaa"; src: url("../fonts/Comfortaa-Light.ttf") format("truetype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Comfortaa"; src: url("../fonts/Comfortaa-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Comfortaa"; src: url("../fonts/Comfortaa-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
* { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; overflow-x: hidden; background: var(--background); color: var(--text); font-family: "Comfortaa", Arial, Helvetica, sans-serif; font-weight: 400; } img { max-width: 100%; } button, a { transition: .2s ease; } .contenedor { width: min(1120px, 90%); margin: auto; }
.barra-navegacion { position: sticky; top: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 14px 5%; background: var(--surface); box-shadow: 0 2px 15px #00000016; } .logo { display: flex; align-items: center; gap: 12px; color: var(--primary); font-size: 25px; font-weight: 800; text-decoration: none; } .logo-marca { width: 52px; height: 52px; object-fit: contain; } nav { display: flex; align-items: center; gap: 22px; } nav a { color: var(--text); font: inherit; font-weight: 700; text-decoration: none; } nav a:hover, nav a.activo { color: var(--primary); } .acciones-movil, .fondo-menu { display: none; }
.hero { padding: 80px 5%; background: linear-gradient(135deg, var(--surface), var(--background)); } .hero-contenido { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1120px; margin: auto; } .hero h1, .seccion h1 { margin: 8px 0 18px; font-size: clamp(38px, 6vw, 64px); } .hero p, .nosotros p { color: var(--muted); font-size: 19px; line-height: 1.7; } .hero img, .nosotros img { border-radius: 22px; box-shadow: 0 20px 45px #0002; } .sobrelinea { color: var(--primary) !important; font-size: 14px !important; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.boton-principal, .boton-secundario { display: inline-block; margin-top: 20px; padding: 14px 24px; border-radius: 10px; background: var(--primary); color: white; font-weight: 800; text-decoration: none; } .boton-principal:hover { background: var(--primary-dark); transform: translateY(-2px); } .boton-secundario { background: var(--secondary); } .seccion { min-height: 65vh; padding: 80px 0; } .seccion h1 { text-align: center; font-size: clamp(34px, 5vw, 50px); } .subtitulo { max-width: 680px; margin: 0 auto 38px; color: var(--muted); text-align: center; line-height: 1.6; } .nosotros { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .nosotros h1 { text-align: left; }
.filtros { display: flex; justify-content: center; gap: 10px; margin-bottom: 34px; flex-wrap: wrap; } .filtros a { padding: 10px 17px; border: 1px solid var(--primary); border-radius: 25px; color: var(--primary); text-decoration: none; } .filtros a.activo, .filtros a:hover { background: var(--primary); color: white; } .catalogo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; } .producto-card { overflow: hidden; border-radius: 18px; background: var(--surface); box-shadow: 0 10px 28px #0002; } .producto-card:hover { transform: translateY(-5px); } .producto-imagen-contenedor { position: relative; } .producto-imagen { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; } .etiqueta-tipo { position: absolute; top: 14px; right: 14px; z-index: 1; padding: 7px 11px; border-radius: 20px; background: var(--primary); color: white; font-size: 12px; font-weight: 800; } .producto-info { padding: 22px; } .producto-info h3 { margin: 0 0 8px; font-size: 24px; } .producto-info p { min-height: 42px; color: var(--muted); }
.contactos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; } .contacto-card, .redes { padding: 28px; border-radius: 18px; background: var(--surface); box-shadow: 0 8px 24px #0001; } .contacto-card p { color: var(--muted); line-height: 1.5; } .redes { margin-top: 24px; text-align: center; } .redes a { display: inline-block; margin: 8px 12px; color: var(--primary); }
.aviso { position: fixed; right: 22px; bottom: 22px; z-index: 1100; padding: 14px 18px; border-radius: 10px; background: var(--secondary); color: white; opacity: 0; transform: translateY(15px); pointer-events: none; } .aviso.visible { opacity: 1; transform: translateY(0); } footer { padding: 45px 20px; background: var(--secondary); color: white; text-align: center; }
@media (max-width: 900px) { body.menu-abierto { overflow: hidden; } .acciones-movil { display: flex; align-items: center; gap: 9px; } .boton-menu { width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--secondary); color: white; font-size: 25px; } nav { position: fixed; top: 0; right: 0; z-index: 1100; flex-direction: column; align-items: stretch; width: min(84vw, 350px); height: 100vh; padding: 90px 25px; background: var(--surface); transform: translateX(105%); } nav.abierto { transform: translateX(0); } nav > a { width: 100%; padding: 13px 10px; text-align: left; } .fondo-menu { position: fixed; inset: 0; z-index: 1050; display: block; border: 0; background: #0007; opacity: 0; pointer-events: none; } .fondo-menu.visible { opacity: 1; pointer-events: auto; } .hero-contenido, .nosotros { grid-template-columns: 1fr; } .catalogo, .contactos { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .logo span { display: none; } .catalogo, .contactos { grid-template-columns: 1fr; } .hero { padding-top: 50px; } .aviso { right: 14px; bottom: 14px; left: 14px; } }

/* Identidad Ares: composición técnica, azul profundo y superficies luminosas. */
.barra-navegacion { border-bottom: 1px solid #1646a01a; padding-top: 10px; padding-bottom: 10px; }
.logo { width: 285px; height: 82px; overflow: visible; }
.logo .logo-marca { width: 285px; height: 82px; max-width: none; object-fit: contain; object-position: center; }
.logo > span { display: none; }
.nav-cotizar { padding: 11px 18px; border-radius: 8px; background: var(--primary); color: #fff !important; }
.nav-cotizar:hover { background: var(--primary-dark); transform: translateY(-2px); }

.hero { position: relative; overflow: hidden; min-height: 680px; padding: 105px 5%; background: linear-gradient(125deg, #06152c 0%, #0a2a63 58%, #1646a0 100%); color: #fff; }
.hero::before { position: absolute; inset: 0; background-image: linear-gradient(#ffffff08 1px, transparent 1px), linear-gradient(90deg, #ffffff08 1px, transparent 1px); background-size: 48px 48px; content: ""; mask-image: linear-gradient(to right, #000, transparent); }
.hero-contenido { position: relative; z-index: 1; }
.hero h1 { max-width: 720px; color: #fff; font-size: clamp(44px, 6vw, 72px); line-height: 1.02; letter-spacing: -.035em; }
.hero p { max-width: 650px; color: #d8e6ff; }
.hero .sobrelinea { color: #8db6ff !important; }
.hero-acciones { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; min-height: 390px; border: 6px solid #ffffff18; object-fit: cover; }
.sello-cobertura { position: absolute; right: -18px; bottom: -18px; padding: 18px 22px; border-left: 4px solid #80aaff; background: #fff; color: var(--primary-dark); font-weight: 800; box-shadow: 0 15px 35px #0004; }
.boton-cotizar { display: inline-block; width: 100%; padding: 14px 22px; border-radius: 9px; background: var(--primary); color: #fff; font-weight: 800; text-align: center; text-decoration: none; }
.boton-cotizar:hover { background: var(--primary-dark); transform: translateY(-2px); }
.boton-cotizar-claro { width: auto; border: 1px solid #ffffff99; background: transparent; }
.boton-cotizar-claro:hover { background: #fff; color: var(--primary-dark); }

.franja-confianza { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); width: min(1000px, 90%); margin: -42px auto 0; border-radius: 14px; background: #fff; box-shadow: 0 18px 40px #10284b24; }
.franja-confianza div { display: flex; flex-direction: column; gap: 5px; padding: 25px 30px; border-right: 1px solid #dfe8f5; }
.franja-confianza div:last-child { border: 0; }
.franja-confianza strong { color: var(--primary); font-size: 22px; }
.franja-confianza span { color: var(--muted); font-size: 14px; }
.resumen-servicios h2 { margin: 5px 0 12px; font-size: clamp(34px, 5vw, 52px); text-align: center; }
.resumen-servicios > .contenedor > .sobrelinea { text-align: center; }
.catalogo { grid-template-columns: repeat(2, 1fr); }
.producto-card { display: flex; flex-direction: column; border: 1px solid #1646a012; }
.producto-imagen { aspect-ratio: 16/8; }
.producto-info { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.producto-info p { min-height: 0; line-height: 1.6; }
.producto-info .boton-cotizar { margin-top: auto; }
.etiqueta-tipo { border: 1px solid #ffffff55; background: #0a2a63e8; letter-spacing: .04em; }
.llamado { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 65px max(5%, calc((100vw - 1120px)/2)); background: var(--primary); color: #fff; }
.llamado h2 { margin: 5px 0 10px; font-size: clamp(32px, 5vw, 48px); }
.llamado p { max-width: 700px; color: #d9e7ff; }
.llamado .sobrelinea { color: #a8c5ff !important; }

.encabezado-pagina { padding: 80px 0; background: linear-gradient(125deg, var(--secondary), var(--primary-dark)); color: #fff; text-align: center; }
.encabezado-pagina h1 { margin: 8px 0 15px; font-size: clamp(40px, 6vw, 62px); }
.encabezado-pagina p:not(.sobrelinea) { max-width: 700px; margin: auto; color: #d8e6ff; font-size: 18px; }
.encabezado-pagina .sobrelinea { color: #8db6ff !important; }
.seccion-catalogo { padding-top: 65px; }
.dato-destacado { display: flex; flex-direction: column; gap: 5px; margin: 25px 0 5px; padding: 18px; border-left: 4px solid var(--primary); background: #e8f0ff; }
.dato-destacado strong { color: var(--primary-dark); font-size: 19px; }
.contacto-card { position: relative; overflow: hidden; border-top: 4px solid var(--primary); }
.contacto-icono { color: #1646a025; font-size: 52px; font-weight: 900; }
.contacto-card h2 { margin-top: 4px; }
.contacto-card .boton-secundario, .contacto-card .boton-cotizar { width: 100%; text-align: center; }
.cobertura-contacto { margin-top: 28px; padding: 30px; border-radius: 14px; background: var(--primary-dark); color: #fff; text-align: center; }
.cobertura-contacto strong { font-size: 25px; }
.cobertura-contacto p { color: #d8e6ff; }
.footer-logo { display: block; width: min(560px, 90vw); height: auto; margin: 0 auto 18px; object-fit: contain; }

@media (max-width: 900px) {
    .logo { width: 215px; height: 66px; }
    .logo .logo-marca { width: 215px; height: 66px; }
    nav .nav-cotizar { margin-top: 8px; text-align: center; }
    .hero { min-height: auto; padding-top: 70px; }
    .hero-visual img { min-height: 300px; }
    .catalogo { grid-template-columns: 1fr; }
    .llamado { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
    .logo { width: 175px; height: 55px; }
    .logo .logo-marca { width: 175px; height: 55px; }
    .hero h1 { font-size: 43px; }
    .franja-confianza { grid-template-columns: 1fr; margin-top: 0; border-radius: 0; }
    .franja-confianza div { border-right: 0; border-bottom: 1px solid #dfe8f5; }
    .sello-cobertura { right: 8px; bottom: -12px; }
}

/* Contenido institucional y páginas detalladas de servicios. */
.acciones-servicio { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.boton-ver { display: inline-block; padding: 13px 18px; border: 1px solid var(--primary); border-radius: 9px; color: var(--primary); font-weight: 800; text-align: center; text-decoration: none; }
.boton-ver:hover { background: #e5edfc; transform: translateY(-2px); }
.seccion-nosotros { padding-top: 70px; }
.seccion-nosotros .nosotros { align-items: start; }
.collage-contenedor { position: sticky; top: 105px; }
.collage-contenedor img { width: 100%; max-height: 720px; object-fit: cover; }
.collage-contenedor span { position: absolute; right: -10px; bottom: -10px; padding: 16px 20px; border-left: 4px solid #8db6ff; background: var(--primary-dark); color: #fff; font-weight: 800; box-shadow: 0 12px 25px #0003; }
.texto-nosotros h2 { margin: 5px 0 22px; font-size: clamp(34px, 5vw, 50px); line-height: 1.08; }
.texto-nosotros > p { color: var(--muted); line-height: 1.78; }
.texto-nosotros .introduccion-nosotros { color: var(--text); font-size: 20px; font-weight: 700; }
.acciones-nosotros { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.acciones-nosotros .boton-principal, .acciones-nosotros .boton-ver { margin-top: 20px; }

.servicio-hero { position: relative; min-height: 560px; display: flex; align-items: end; overflow: hidden; color: #fff; }
.servicio-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.servicio-hero-capa { position: absolute; inset: 0; background: linear-gradient(90deg, #06152cf0 0%, #06152cba 48%, #06152c22 100%); }
.servicio-hero-texto { position: relative; z-index: 1; padding-bottom: 70px; }
.servicio-hero-texto > a { display: inline-block; margin-bottom: 45px; color: #d8e6ff; font-weight: 700; text-decoration: none; }
.servicio-hero-texto h1 { max-width: 820px; margin: 7px 0 18px; font-size: clamp(42px, 7vw, 72px); line-height: 1; }
.servicio-hero-texto > p:not(.sobrelinea) { max-width: 680px; color: #d8e6ff; font-size: 19px; line-height: 1.65; }
.detalle-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 65px; align-items: start; }
.detalle-intro { margin-top: 0; color: var(--text); font-size: 22px; line-height: 1.65; }
.detalle-contenido h2 { margin: 40px 0 20px; font-size: 32px; }
.lista-objetivos { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.lista-objetivos li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 15px; border-radius: 10px; background: #eaf1fd; }
.lista-objetivos span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 900; }
.lista-objetivos p { margin: 3px 0 0; line-height: 1.55; }
.detalle-cierre { margin: 28px 0 0; padding-left: 20px; border-left: 4px solid var(--primary); color: var(--muted); font-size: 18px; line-height: 1.7; }
.cotizacion-lateral { position: sticky; top: 110px; padding: 30px; border-radius: 16px; background: linear-gradient(145deg, var(--primary-dark), var(--secondary)); color: #fff; box-shadow: 0 20px 38px #06152c2c; }
.cotizacion-lateral > span { color: #8db6ff; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cotizacion-lateral h2 { margin: 12px 0; font-size: 28px; }
.cotizacion-lateral p { color: #d8e6ff; line-height: 1.6; }
.cotizacion-lateral .boton-cotizar { margin-top: 10px; background: #fff; color: var(--primary-dark); }
.galeria-seccion { padding: 80px 0 95px; background: #eaf1fd; }
.galeria-seccion > .contenedor > h2 { margin: 5px 0 10px; font-size: clamp(34px, 5vw, 50px); text-align: center; }
.galeria-seccion > .contenedor > .sobrelinea { text-align: center; }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.galeria-item { position: relative; min-height: 300px; overflow: hidden; padding: 0; border: 0; border-radius: 13px; background: var(--secondary); cursor: zoom-in; }
.galeria-item img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform .45s ease, opacity .3s; }
.galeria-item span { position: absolute; right: 12px; bottom: 12px; padding: 8px 11px; border-radius: 7px; background: #06152cdb; color: #fff; font-size: 12px; font-weight: 800; opacity: 0; transform: translateY(8px); transition: .25s; }
.galeria-item:hover img, .galeria-item:focus-visible img { opacity: .82; transform: scale(1.06); }
.galeria-item:hover span, .galeria-item:focus-visible span { opacity: 1; transform: translateY(0); }
body.visor-abierto { overflow: hidden; }
.visor[hidden] { display: none; }
.visor { position: fixed; inset: 0; z-index: 3000; display: grid; grid-template-columns: 70px minmax(0, 1fr) 70px; place-items: center; padding: 45px; background: #020814ed; backdrop-filter: blur(8px); animation: aparecer .2s ease; }
.visor figure { display: flex; flex-direction: column; align-items: center; max-width: min(1100px, 100%); max-height: 90vh; margin: 0; }
.visor figure img { max-width: 100%; max-height: 82vh; border-radius: 8px; object-fit: contain; box-shadow: 0 25px 60px #0008; }
.visor figcaption { padding-top: 12px; color: #d8e6ff; }
.visor button { border: 0; background: transparent; color: #fff; cursor: pointer; }
.visor-cerrar { position: absolute; top: 18px; right: 24px; width: 45px; height: 45px; font-size: 38px; }
.visor-anterior, .visor-siguiente { width: 55px; height: 55px; border: 1px solid #ffffff55 !important; border-radius: 50% !important; font-size: 42px; line-height: 1; }
.redes a { display: inline-flex; flex-direction: column; gap: 4px; min-width: 180px; padding: 15px 18px; border: 1px solid #d7e3f6; border-radius: 10px; text-decoration: none; }
.redes a:hover { background: #eaf1fd; transform: translateY(-2px); }
.redes a span { color: var(--muted); font-size: 14px; }
.footer-redes { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.footer-redes a { color: #b9cff8; font-weight: 700; text-decoration: none; }
.footer-redes a:hover { color: #fff; }
.contactos { grid-template-columns: repeat(4, 1fr); }
.contacto-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.contacto-card h2 { min-height: 58px; }
.contacto-card p { overflow-wrap: anywhere; }
.contacto-logo { width: 72px; height: 72px; padding: 4px; object-fit: contain; }
.contacto-email { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 18px; background: #eaf1fd; color: var(--primary); font-size: 40px; }
.contacto-card .boton-cotizar, .contacto-card .boton-secundario, .contacto-card .boton-instagram { margin-top: auto; }
.boton-instagram { display: inline-block; width: 100%; padding: 14px 18px; border-radius: 9px; background: linear-gradient(120deg, #5b51d8, #c13584, #fd7e31); color: #fff; font-weight: 800; text-align: center; text-decoration: none; }
.boton-instagram:hover { filter: brightness(.92); transform: translateY(-2px); }
.footer-redes a { display: inline-flex; align-items: center; gap: 7px; }
.footer-redes img { width: 26px; height: 26px; object-fit: contain; }
@keyframes aparecer { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1000px) {
    .galeria-grid { grid-template-columns: repeat(2, 1fr); }
    .detalle-grid { grid-template-columns: 1fr; }
    .cotizacion-lateral { position: static; }
    .contactos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .collage-contenedor { position: static; }
    .seccion-nosotros .nosotros { grid-template-columns: 1fr; }
    .servicio-hero { min-height: 510px; }
    .acciones-servicio { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .galeria-grid { grid-template-columns: 1fr; }
    .contactos { grid-template-columns: 1fr; }
    .galeria-item, .galeria-item img { min-height: 360px; }
    .visor { grid-template-columns: 48px minmax(0, 1fr) 48px; padding: 55px 8px 25px; }
    .visor-anterior, .visor-siguiente { width: 42px; height: 42px; font-size: 32px; }
    .servicio-hero-capa { background: linear-gradient(90deg, #06152cf2, #06152c99); }
}
