@charset "utf-8";
/* ============================================================
   admingas.css — hoja compartida por Default.aspx y las
   paginas de solucion. Extraida de los bloques <style> en
   linea del 28 de agosto de 2026.
   ============================================================ */

/* 1. NAVBAR Y LOGO */
        html, body, form { margin: 0; padding: 0; }

        .navbar-dark-custom { background-color: #1a1d20 !important; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.08); height: 100px; min-height:100px; overflow: hidden; }
        .navbar-dark-custom .container { display: flex; align-items: stretch; gap: 1rem; height:100%; padding:0; }
        .navbar-brand { padding: 0; margin: 0; height: 100%; display: flex; align-items: stretch; }
        .navbar-brand-img { height: calc(100% - 3px); width: auto; max-height: none; object-fit: cover; filter: drop-shadow(0 0 12px rgba(0, 123, 255, 0.35)); transition: 0.15s; position: relative; z-index: 10; margin: 0 0 3px 0; padding: 0; display: block; }
        .navbar-toggler { align-self: center; margin: 0; }
        .navbar-nav { height: 100%; display: flex; align-items: center; }
        .navbar-nav .nav-item { height: 100%; display: flex; align-items: center; }
        .nav-link-custom { color: #adb5bd !important; font-weight: 600; margin: 0 15px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
        .btn-blue-main { background-color: #007bff !important; color: #fff !important; font-weight: bold; padding: 10px 25px; border-radius: 8px; text-decoration: none; border: none; }

        /* 2. HERO SECTION */
        .hero-section { background: linear-gradient(135deg, #0a2342 0%, #164a8d 100%); min-height: 80vh; position: relative; overflow: hidden; display: flex; align-items: center; }
        .hero-img-container { position: absolute; top: 0; right: 0; width: 50%; height: 100%; z-index: 1; }
        .hero-img-container img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, #0a2342 0%, transparent 20%); }
        .btn-orange { background-color: #e65c00; color: white; font-weight: bold; padding: 14px 40px; border-radius: 8px; text-decoration: none; transition: 0.3s; display: inline-block; border: none; }

       /* 1. Contenedor principal: oculta lo que sale de la pantalla */
.client-section { 
    background: #ffffff; 
    padding: 30px 0; 
    overflow: hidden; 
    border-bottom: 1px solid #eee; 
}

/* 2. La fila de logos: usa max-content para que crezca según los logos que pongas */
.logo-slider { 
    display: flex; 
    width: max-content; 
    animation: scrollLogos 30s linear infinite; 
}

/* 3. Cada logo: Mantenemos tu efecto de blanco y negro */
.logo-slide { 
    width: 250px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0 40px; 
    filter: grayscale(100%); /* Blanco y negro por defecto */
    opacity: 0.4; 
    transition: 0.3s; 
}

/* 4. Efecto Hover: ¡Aquí se hace colorido al pasar el mouse! */
.logo-slide:hover { 
    filter: grayscale(0%); /* Quita el gris y muestra el color original */
    opacity: 1; 
}

/* 5. La animación del Loop Infinito */
@keyframes scrollLogos { 
    0% { 
        transform: translateX(0); 
    } 
    100% { 
        /* Se mueve exactamente la mitad. 
           Esto requiere que hayas duplicado los logos en el HTML */
        transform: translateX(-50%); 
    } 
}/* Tarjetas de Historia y Compromiso Mejoradas */
.about-card-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Sombra suave para profundidad */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

/* Efecto al pasar el cursor */
.about-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,123,255,0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

/* El acento de color ahora es un degradado elegante */
.about-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #007bff, #0dcaf0);
}

/* Contenedor del icono */
.icon-circle-about {
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.08);
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.about-card-premium:hover .icon-circle-about {
    background: #007bff;
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}
/* Estilos para las tarjetas interactivas de la Póliza */
.policy-card-interactive {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #f1f1f1;
    position: relative;
    overflow: hidden;
}

/* Efecto de elevación al pasar el mouse */
.policy-card-interactive:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,123,255,0.12);
    border-color: rgba(0, 123, 255, 0.3);
}

/* Color y tamaño de los iconos */
.policy-icon-style {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    display: inline-block;
    transition: 0.4s;
}

.policy-card-interactive:hover .policy-icon-style {
    transform: scale(1.1) rotate(-8deg);
}

/* Estilo y animación para los iconos */
.policy-icon-style {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    display: inline-block;
    transition: 0.4s;
}

.policy-card-interactive:hover .policy-icon-style {
    transform: scale(1.1) rotate(-8deg);
}

        /* 4. SECCIONES GENERALES */
        .section-padding { padding: 90px 0; }
        .policy-card { border: none; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; height: 100%; padding: 30px; }
        .policy-icon { font-size: 2.2rem; color: #007bff; margin-bottom: 15px; display: block; }

        /* 5. SOLUCIONES CON FONDO */
        .solutions-section-bg { position: relative; padding: 120px 0; background: url('../img/fondo-soluciones.jpg') fixed center/cover; }
        .solutions-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 35, 66, 0.88); }
        .solution-card-interactive { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; transition: 0.4s; cursor: pointer; color: #fff; height: 100%; }
        .solution-card-interactive:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.12); border-color: #007bff; }

        /* 6. MODALES */
        .modal-content { border-radius: 25px; border: none; }
        .modal-header { background: #0a2342; color: white; border-radius: 25px 25px 0 0; padding: 25px; }
        .list-detail li { margin-bottom: 12px; display: flex; align-items: flex-start; text-align: left; }
        .list-detail i { color: #25d366; margin-right: 12px; margin-top: 4px; }

        /* 7. CONTACTO */
        .contact-card { border-radius: 25px; border: none; box-shadow: 0 15px 50px rgba(0,0,0,0.1); background: #fff; }
        .form-control, .form-select { padding: 12px 18px; border-radius: 12px; border: 1.5px solid #eee; background-color: #fcfcfc; }

        .whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; 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; }
    /* 8. FOOTER PREMIUM Y ENLACES LEGALES */
.footer-custom {
    background-color: #111416 !important;
    color: #adb5bd;
    font-size: 0.9rem;
    border-top: 3px solid #007bff; /* Línea de acento azul AdminGas */
}
.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}
.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 12px;
}
.footer-link:hover {
    color: #007bff;
    transform: translateX(4px); /* Pequeño deslizamiento elegante al pasar el cursor */
}
.footer-bottom {
    background-color: #0a0c0d;
    padding: 20px 0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* ========================================== */
/* 9. OPTIMIZACIÓN RESPONSIVA (MOBILE FIRST) */
/* ========================================== */

/* Ajuste general para el Navbar en móviles */
@media (max-width: 991.98px) {
    .navbar-dark-custom {
        padding: 10px 0;
    }
    .navbar-brand-img {
        max-height: 95px; /* Reducimos el logo en móviles para dar espacio */
    }
    .navbar-collapse {
        background-color: #1a1d20;
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .nav-link-custom {
        margin: 10px 0 !important;
        font-size: 1rem;
    }
    .btn-blue-main {
        display: block;
        text-align: center;
        margin: 15px 0 0 0 !important;
    }
    
    /* Hero section adaptable */
    .hero-section {
        min-height: auto;
        padding: 60px 0;
        text-align: center;
    }
    .hero-img-container {
        display: none !important; /* Ocultamos la imagen pesada en móviles para mejorar carga */
    }
    
    /* Espaciados globales en móviles */
    .section-padding {
        padding: 60px 0;
    }
    .display-3 { font-size: 2.5rem !important; }
    .display-4 { font-size: 2.3rem !important; }
    .display-5 { font-size: 2.0rem !important; }
}

/* Evitar vibraciones extrañas del efecto hover en pantallas táctiles */
@media (max-width: 767.98px) {
    .policy-card-interactive:hover, .about-card-premium:hover, .solution-card-interactive:hover {
        transform: none !important; /* Desactivamos la elevación en celular para evitar saltos de pantalla */
        box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    }
    .contact-card {
        padding: 25px !important; /* Tarjeta de contacto más compacta en celulares */
    }
}

.faq-section { background: #f8f9fa; }
    .faq-lista { max-width: 900px; margin: 0 auto; }
    .faq-item { background: #fff; border: 1px solid #e6e9ec; border-radius: 10px; margin-bottom: 14px; overflow: hidden; }
    .faq-item[open] { border-color: #007bff; box-shadow: 0 4px 18px rgba(10,35,66,0.07); }
    .faq-pregunta { cursor: pointer; list-style: none; padding: 22px 56px 22px 26px; font-weight: 700; font-size: 1.05rem; color: #0a2342; position: relative; }
    .faq-pregunta::-webkit-details-marker { display: none; }
    .faq-pregunta::after { content: "+"; position: absolute; right: 26px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 400; color: #007bff; line-height: 1; }
    .faq-item[open] .faq-pregunta::after { content: "\2212"; }
    .faq-pregunta:hover { color: #007bff; }
    .faq-respuesta { padding: 0 26px 24px 26px; color: #495057; line-height: 1.75; }
    .faq-respuesta p { margin: 0; }

/* ============================================================
   Paginas de solucion — expendio, autoconsumo, transportistas
   ============================================================ */

/* --- migas de pan --- */
.miga { background: #f1f4f7; border-bottom: 1px solid #e4e9ee; padding: 12px 0; font-size: .85rem; }
.miga a { color: #164a8d; text-decoration: none; }
.miga a:hover { text-decoration: underline; }

/* --- hero de segmento --- */
.pag-hero { background: linear-gradient(135deg, #0a2342 0%, #164a8d 100%); color: #fff; padding: 64px 0 56px; overflow: hidden; }
.pag-hero h1 { font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
.pag-hero .lead { color: rgba(255,255,255,.85); font-size: 1.12rem; max-width: 56ch; }
.badge-norma { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); color: #fff;
  font-weight: 600; letter-spacing: .04em; padding: 7px 15px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: .8rem; }
.badge-norma i { color: #ff9a4d; }
.hero-acciones { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn-wa { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.28); color: #fff;
  font-weight: 600; padding: 14px 28px; border-radius: 8px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px; transition: .2s; }
.btn-wa:hover { background: rgba(255,255,255,.18); color: #fff; }

/* --- ilustracion tecnica del hero --- */
.hero-dibujo { width: 100%; height: auto; max-height: 340px; display: block; }
.dib { fill: none; stroke: #7fb9ee; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dib-tenue { fill: none; stroke: #3f74ab; stroke-width: 1.5; stroke-linecap: round; }
.dib-solido { fill: #10315a; stroke: #7fb9ee; stroke-width: 2; stroke-linejoin: round; }
.dib-acento { fill: none; stroke: #ff8a3d; stroke-width: 2; stroke-linecap: round; }
.dib-liquido { fill: #e65c00; fill-opacity: .85; }
.dib-punto { fill: #ff8a3d; }
.dib-texto { fill: #7fb9ee; font-family: inherit; font-size: 13px; font-weight: 600; }

/* --- franja de confianza --- */
.franja-confianza { background: #0a2342; border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0; }
.dato-confianza { text-align: center; color: #fff; }
.dato-confianza .cifra { font-size: 1.9rem; font-weight: 800; color: #4da3ff; line-height: 1; letter-spacing: -.02em; }
.dato-confianza .etiqueta { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 7px; }

/* --- bloques de contenido --- */
.bloque { padding: 72px 0; }
.bloque h2 { font-weight: 800; color: #0a2342; margin-bottom: 18px; letter-spacing: -.015em; }
.bloque p { color: #495057; line-height: 1.78; max-width: 68ch; }
.entradilla { font-size: 1.08rem; color: #37475a; }

/* --- tarjetas de funcionalidad --- */
.tarjeta-func { background: #fff; border: 1px solid #e6e9ec; border-radius: 12px; padding: 26px; height: 100%; transition: .2s; }
.tarjeta-func:hover { border-color: #007bff; box-shadow: 0 10px 30px rgba(10,35,66,.09); transform: translateY(-3px); }
.tarjeta-func .ico { width: 46px; height: 46px; border-radius: 10px; background: #e8f1fb; color: #164a8d;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 15px; }
.tarjeta-func h3 { font-size: 1.03rem; font-weight: 700; color: #0a2342; margin-bottom: 8px; }
.tarjeta-func p { font-size: .94rem; color: #5a6b7d; margin: 0; }

/* --- marco normativo --- */
.norma-item { border-left: 3px solid #e65c00; background: #fff8f3; padding: 20px 24px; border-radius: 0 10px 10px 0; margin-bottom: 16px; }
.norma-item h3 { font-size: 1rem; font-weight: 700; color: #0a2342; margin-bottom: 6px; }
.norma-item p { font-size: .94rem; margin: 0; }

/* --- logos de clientes del segmento --- */
.logos-segmento { background: #fff; border-top: 1px solid #eef1f4; border-bottom: 1px solid #eef1f4; padding: 44px 0; }
.celda-logo { height: 84px; display: flex; align-items: center; justify-content: center; padding: 0 12px; }
.logos-segmento img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: .45; transition: .25s; }
.logos-segmento img:hover { filter: grayscale(0); opacity: 1; }

/* --- otras soluciones --- */
.tarjeta-otra { display: block; background: #fff; border: 1px solid #e6e9ec; border-radius: 12px;
  padding: 24px 26px; text-decoration: none; height: 100%; transition: .2s; }
.tarjeta-otra:hover { border-color: #007bff; box-shadow: 0 10px 30px rgba(10,35,66,.09); transform: translateY(-3px); }
.tarjeta-otra .et { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #e65c00; }
.tarjeta-otra h3 { font-size: 1.08rem; font-weight: 700; color: #0a2342; margin: 8px 0 7px; }
.tarjeta-otra p { font-size: .92rem; color: #5a6b7d; margin: 0 0 10px; }
.tarjeta-otra .ver { font-size: .9rem; font-weight: 700; color: #007bff; }

/* --- formulario de segmento --- */
.form-segmento { background: linear-gradient(135deg, #0a2342 0%, #143f75 100%); color: #fff; padding: 76px 0; }
.form-segmento h2 { color: #fff; font-weight: 800; }
.form-segmento .lead { color: rgba(255,255,255,.82); }
.caja-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 30px; }
.caja-form label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 6px; }
.caja-form .form-control, .caja-form .form-select { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  color: #fff; border-radius: 8px; padding: 11px 14px; }
.caja-form .form-control::placeholder { color: rgba(255,255,255,.42); }
.caja-form .form-control:focus, .caja-form .form-select:focus { background: rgba(255,255,255,.14);
  border-color: #4da3ff; box-shadow: 0 0 0 .2rem rgba(77,163,255,.18); color: #fff; }
.caja-form .form-select option { background: #0a2342; color: #fff; }
.contacto-directo a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contacto-directo a:hover { color: #4da3ff; }
.contacto-directo i { font-size: 1.25rem; color: #4da3ff; }

@media (max-width: 991px) {
  .pag-hero { padding: 44px 0 40px; text-align: left; }
  .hero-dibujo { max-height: 240px; margin-top: 34px; }
  .bloque { padding: 52px 0; }
  .dato-confianza { margin-bottom: 14px; }
}
