/*============================================================ 
                       NAVAR 
    ================================================================*/


/* Importa las fuentes desde Google Fonts:
   - League Spartan para títulos
   - Noto Sans para texto general */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&family=Noto+Sans:wght@300;400;700&display=swap');

/* Estilo base para los enlaces del menú de navegación */

.menu-navbar .nav-link {
    font-family: 'Noto Sans', sans-serif;
    /* Fuente moderna y legible */
    font-weight: 300;
    /* Peso ligero para estilo limpio */
    color: #000000;
    /* Color negro inicial */
    font-size: 1rem;
    /* Tamaño estándar de texto */
    margin: 0 10px;
    /* Espaciado horizontal entre enlaces */
    transition: color 0.3s ease;
    /* Animación suave al cambiar color */
}


/* Estilo general para el navbar personalizado */

nav.navbar.navbar-r1 {
    background-color: #e9f7ff !important;
    /* Fondo azul claro */
    box-shadow: #e9f7ff; 
    /* Esta línea tiene un error de sintaxis */
    padding: 10px 20px;
    /* Espaciado interno */
    font-family: 'League Spartan', sans-serif;
    /* Fuente elegante para el navbar */
}


/* Centra el contenido dentro del navbar */

nav.navbar.navbar-r1 .container-fluid {
    justify-content: center !important;
    /* Centrado horizontal forzado */
}


/* ===================== LOGO ===================== */


/* Define la altura del logo dentro del navbar */

.logo-navbar {
    height: 25px;
    /* Tamaño pequeño y discreto */
}


/* Aplica margen izquierdo al logo para separarlo del borde */

.logo-navbar-space {
    margin-left: 3cm !important;
    /* Espacio amplio a la izquierda */
}


/* ===================== MENÚ ===================== */


/* Estilo visual para los enlaces del menú */

.menu-navbar .nav-link {
    color: #007ABC;
    /* Azul corporativo */
    font-weight: 700;
    /* Negrita para destacar */
    font-size: 1rem;
    /* Tamaño estándar */
    margin: 0 10px;
    /* Espaciado horizontal */
    transition: color 0.3s ease;
    /* Transición suave al pasar el cursor */
}


/* ===================== CONTACTO ===================== */


/* Estilo del bloque de contacto con íconos */

.contacto-box {
    background-color: #e9f7ff;
    /* Fondo azul claro */
    border: 2px solid #7a7575;
    /* Borde gris */
    border-radius: 1px;
    /* Bordes apenas redondeados */
    color: #7a7575;
    /* Texto gris */
    font-weight: 500;
    /* Seminegrita */
    font-size: 1rem;
    /* Tamaño estándar */
}


/* Tamaño de los íconos dentro del bloque de contacto */

.contacto-box i {
    font-size: 1.2rem;
    /* Íconos ligeramente más grandes */
}


/*============================================================ 
                       FIN DE NAVAR 
    ================================================================*/


/*============================================================ 
                       SECCIÓN 1- INICIO
    ================================================================*/


/* Contenedor principal de la sección */

#inicio {
    /*position: relative;*/
    /* necesario para que la capa se posicione dentro */
    overflow: hidden;
}


/* Imagen institucional */

.img-institucional {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
    z-index: 0;
    /* la imagen queda en el fondo */
}


/* Capa transparente encima de la imagen */

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* mismo tamaño que la imagen */
    background: linear-gradient(to right, rgba(0, 41, 81, 0.6), rgba(0, 123, 188, 0.3));
    z-index: 1;
    /* encima de la imagen, pero debajo del texto y formulario */
    pointer-events: none;
    /* no bloquea clics */
}

.text-vertical {
    position: absolute;
    top: 70%;
    left: 3%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: left top;
    font-family: 'Inter', sans-serif;
    font-size: 100%;
    font-weight: 400;
    color: #000;
    z-index: 2;
    white-space: nowrap;
    padding-left: 5px;
}


/* Imagen institucional de fondo */

.img-institucional {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
    z-index: 0;
}


/* Contenido encima de la imagen */

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.text-box {
    position: relative;
    z-index: 10;
	color: white;
}

.hero-title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 900;
    font-size: 60px;
    /*color: #007ABC;*/
	/*color: white; */
    line-height: 1.1;	
    margin-bottom: 60px;
	color: #00B997;
	background-image: linear-gradient(315deg, #00B997 39%, #e9f7ff 82%, #1EFCD4 44%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.hero-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    /*color: #007ABC;*/
	color: #e9f7ff;
    text-align: left;
    text-shadow: 0px 3px 3px #000000;
    max-width: 480px;
}

.btn-custom {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    background-color: #007ABC;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-custom:hover {
    background-color: #005f8f;
    transform: translateY(-2px);
}

.text-vertical {
    position: absolute;
    top: 70%;
    left: 3%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: left top;
    font-family: 'Inter', sans-serif;
    font-size: 90%;
    font-weight: 400;
    color: #00B997;
    z-index: 2;
    white-space: nowrap;
    padding-left: 5px;
}


/* Recuadro del formulario */

.contacto-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: none;
}

.contacto-card h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #007ABC;
    margin-bottom: 10px;
    text-align: center;
}

.contacto-card form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Campos */

.contacto-card .form-label {
    font-weight: 600;
    color: #45555E;
    font-size: 14px;
}

.contacto-card .form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 6px 10px;
    font-size: 14px;
}


/* Campo de mensaje más pequeño */

.contacto-card textarea.form-control {
    resize: none;
    min-height: 50px;
}


/* Botón */

.contacto-card .btn-primary {
    background-color: #007ABC;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.contacto-card .btn-primary:hover {
    background-color: #005f8c;
}


/* reCAPTCHA debajo del botón */

.contacto-card .g-recaptcha {
    margin-top: 8px;
    align-self: center;
    transform: scale(1);
    transform-origin: 0 0;
}

#respuesta {
    font-size: 13px;
    color: #28a745;
    text-align: center;
    margin-top: 8px;
}


/* ✅ Responsive ajustes */

@media (max-width: 768px) {
    /* Ocultamos texto vertical */
    .text-vertical {
        display: none;
    }
    /* Imagen institucional más pequeña y debajo del título */
    .img-institucional {
        height: auto;
        max-height: 200px;
        object-fit: contain;
        margin: 20px auto;
        display: block;
    }
    /* Reorganizamos overlay-content */
    .overlay-content {
        position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 1rem;
    }/*
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
    } */
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
        margin: 0 auto 20px;
    }
    .contacto-card {
        padding: 14px;
        max-width: 100%;
        margin-top: 16px;
    }
    .contacto-card h2 {
        font-size: 18px;
    }
    .contacto-card .btn-primary {
        font-size: 13px;
        padding: 8px 12px;
    }
}


/*==================================================================
                       FIN DE SECCION 1
    ================================================================*/


/*==================================================================
                      SECCION 2
    ================================================================*/


/* Fondo general de la sección */

.consultoria-section {
    background-color: #e9f7ff;
}

.card-iso {
    background-color: #ffffff;
    border: 3px solid #e9f7ff;
    /* Borde azul institucional */
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: 'League Spartan', sans-serif;
}


/* Hover efecto */

.card-iso:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}


/* Ícono circular centrado */

.icono-circular {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #e9f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(24, 72, 170, 0.3);
    margin-bottom: 16px;
}


/* Etiqueta ISO */

.texto-iso .iso-label {
    font-size: 1rem;
    font-weight: 700;
    color: #45555E;
    margin-bottom: 12px;
    text-transform: uppercase;
}


/* Título descriptivo */

.texto-iso .iso-titulo {
    font-size: 1rem;
    font-weight: 400;
    color: #45555E;
    line-height: 1.8;
    max-width: 260px;
}


/* Bloque del logo y título */

.bloque-logo-consultoria {
    position: relative;
    text-align: left;
    padding-left: 20px;
    margin-top: 40px;
}


/* Contenedor del título */

.bloque-logo-consultoria .contenedor-titulo {
    position: relative;
    z-index: 1;
}


/* Logo decorativo */

.bloque-logo-consultoria .logo-fondo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}


/* Título principal */

.bloque-logo-consultoria .titulo-auditoria {
    position: relative;
    font-family: 'League Spartan', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #003366;
    line-height: 1.2;
    max-width: 600px;
    text-shadow: 0px 4px 4px #E9F7FF;
    margin-bottom: 0;
}


/* Colores destacados */

.color-azul {
    color: #007ABC;
}

.color-verde {
    color: #00B997;
}


/*==================================================================
                       FIN DE SECCION 2
    ================================================================*/


/*==================================================================
                        SECCION 3
    ================================================================*/


/* Galería de certificaciones: imágenes iguales */

.galeria-certificacion img {
    width: 100%;
    height: 250px;
    /* Ajusta este valor según el alto deseado */
    object-fit: cover;
    /* Recorta la imagen sin deformarla */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


/* Efecto al pasar el mouse */

.galeria-certificacion img:hover {
    transform: scale(1.03);
}


/* Texto debajo de la galería */

.texto-certificacion {
    font-size: 1.1rem;
    color: #007ABC;
    text-align: justify;
    font-family: 'Inter', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


/*==================================================================
                       FIN DE SECCION 3
    ================================================================*/


/*==================================================================
                           SECCION 4
    ================================================================*/

.contenedor-imagen {
    width: 100%;
    max-width: 1200px;
    margin: 12px auto;
    /* Menos espacio arriba y abajo */
    padding: 0 8px;
    /* Menos espacio lateral (≈0.5 cm) */
}

.envoltura-imagen {
    position: relative;
    width: 100%;
    height: 400px;
    /* Controla la altura para que se vea más rectangular */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.imagen-auditoria {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.capa-transparente {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.45);
    z-index: 1;
}

.texto-superior {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.texto-superior h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.btn-mas-info {
    background-color: #00B997;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-mas-info:hover {
    background-color: #009e83;
}

.texto-auditoria {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #007ABC;
    text-shadow: 0px 4px 4px #E9F7FF;
    max-width: 860px;
    margin: 0 auto 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .contenedor-imagen {
        margin: 16px 12px;
        max-width: 100%;
        padding: 0;
    }
    .texto-superior h2 {
        font-size: 1.6rem;
    }
    .btn-mas-info {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}


/*==================================================================
                       FIN DE SECCION 4
    ================================================================*/


/*==================================================================
                        SECCION 5
    ================================================================*/


/* Sección general */

.section5,
.casos-exito {
    background-color: #eaf6ff;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* Fila con tres columnas */

.fila-horizontal.tres-columnas {
    display: grid;
    grid-template-columns: 80px 200px 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.col-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9f7ff;
    border: 2px solid #007ABC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-logo i {
    font-size: 1.5rem;
    color: #007ABC;
}

.col-titulo .titulo {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #45555E;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.col-texto .texto {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    /*font-weight: 600;*/
    line-height: 1.6; 
    color: #007ABC;
    text-align: justify;
    margin: 0;
}


/* Sección Servicio Personalizado */


/* Sección Servicio Personalizado */

.seccion-5-5 {
    font-family: 'Inter', sans-serif;
    text-align: center;
}


/* Imagen */

.img-servicio {
    width: 120%;
    /* más grande pero controlada */
    max-width: 380px;
    /* límite máximo */
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}


/* Texto */

.texto-servicio {
    text-align: center;
    padding: 10px 15px;
    /* espacio interno para separar del borde */
}

.texto-servicio h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #007ABC;
    margin-bottom: 8px;
    /* separación compacta */
}

.texto-servicio p {
    font-size: 16px;
    font-weight: 400;
    color: #45555E;
    line-height: 1.3;
    margin-bottom: 14px;
}


/* Botón */

.btn-servicio {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #007ABC;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-servicio:hover {
    background-color: #005f8c;
}


/* Responsive */

@media (max-width: 768px) {
    .img-servicio {
        width: 90%;
        /* más grande en móvil */
        max-width: 300px;
    }
    .texto-servicio h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    .texto-servicio p {
        font-size: 15px;
        margin-bottom: 12px;
    }
}


/* Fila con tres columnas */

.fila-horizontal.tres-columnas {
    display: grid;
    grid-template-columns: 80px 200px 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.col-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e9f7ff;
    border: 2px solid #007ABC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-logo i {
    font-size: 1.5rem;
    color: #007ABC;
}

.col-titulo .titulo {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #45555E;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.col-texto .texto {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #007ABC;
    text-align: justify;
    margin: 0;
}


/* Fila de dos columnas para Casos de Éxito */

.fila-casos-dos-columnas {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.col-titulo-exito .titulo-exito {
    font-family: 'League Spartan', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #007ABC;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.col-texto-exito .texto-casos {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #007ABC;
    text-align: justify;
    margin: 0;
}


/* Galería de logos */

.grid-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: center;
    align-items: center;
    padding: 20px 0;
}

.logo-item {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.logo-item:hover {
    transform: rotateY(180deg);
}

.logo-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.logo-item.empty {
    visibility: hidden;
}


/* RESPONSIVO */

@media (max-width: 768px) {
    .fila-horizontal.tres-columnas {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .col-logo {
        margin: 0 auto 12px;
    }
    .fila-casos-dos-columnas {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .col-titulo-exito,
    .col-texto-exito {
        margin-bottom: 20px;
    }
    .grid-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*==================================================================
                       FIN DE SECCION 5
    ================================================================*/


/*==================================================================
                       SECCION 6
    ================================================================*/


/* Sección principal de cursos */

.section6 {
    padding: 60px 30px;
    background-color: #e9f7ff;
    font-family: 'League Spartan', sans-serif;
    color: #2b25e7;
}


/*Encabezado visual */

.header-cursos {
    background-color: #eaf6ff;
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
}


/* Fila de título + buscador */

.fila-cursos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}


/* Título principal */

.titulo-cursos {
    font-size: 40px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 900;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}


/*  Colores destacados */

.color-azul {
    color: #007ABC;
}

.color-verde {
    color: #00B997;
}


/*  Buscador */

#buscador {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e9f7ff;
    border-radius: 8px;
    outline: none;
}


/*  Grid de tarjetas */

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 10px;
}


/* Grid de tarjetas */

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 16px;
}


/*Tarjeta de curso */

.card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #45555E;
    margin-bottom: 20px;
}


/* Contenedor de botones */

.card-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}


/* Botón "Ver detalles..." */

.toggle-detalles {
    font-size: 14px;
    color: #00B997;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.toggle-detalles:hover {
    background-color: #e9f7ff;
    border-color: #00B997;
    text-decoration: underline;
}


/*Botón "Temario" */

.download {
    font-size: 14px;
    color: #00B997;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.download:hover {
    background-color: #e9f7ff;
    border-color: #00B997;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .card {
        padding: 16px 12px;
        border-radius: 12px;
    }
    .card-title {
        font-size: 16px;
    }
    .card-subtitle {
        font-size: 12px;
    }
    .toggle-detalles,
    .download {
        font-size: 13px;
        padding: 5px 10px;
    }
}


/*==================================================================
                       FIN DE SECCION 6
    ================================================================*/


/*==================================================================
                       SECCION 7
    ================================================================*/

.section7 {
    background-color: #e9f7ff !important;
    font-family: 'Inter', sans-serif;
    color: #333;
}


/* Encabezado */

.encabezado-consultoria {
    text-align: center;
    margin-bottom: 40px;
}

.titulo-consultoria {
    font-family: 'League Spartan', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #45555E;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: left;
}

.color-azul {
    color: #007ABC;
}


/* Grid decorativo */

.grid-consultoria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin-bottom: 40px;
}

.grid-item {
    background-color: #e9f7ff;
    border: 2px solid #e9f7ff;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
}


/* Títulos dentro del grid */

.grid-item h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #45555E;
    margin-bottom: 10px;
    line-height: 1.3;
}


/* Texto dentro del grid */

.grid-item p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #45555E;
    line-height: 1.5;
    margin: 0;
}


/* Imagen dentro del grid */

.img-grid {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.item-4 {
    grid-column: 1 / span 3;
    text-align: center;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.item-4 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.resaltado {
    color: #45555E;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
    display: inline-block;
}


/* Responsive */

@media (max-width: 768px) {
    .grid-consultoria {
        grid-template-columns: 1fr;
    }
    .item-4 {
        grid-column: auto;
    }
    .grid-item h3 {
        font-size: 18px;
    }
    .grid-item p {
        font-size: 14px;
    }
}


/* Tarjetas */

.card-consultoria {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.card-consultoria:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-consultoria h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-consultoria p {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    max-width: 90%;
}


/* Ícono circular */

.icono-circular {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #007ABC;
    background-color: #e0eaf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: #007ABC;
}


/* Botones */

#btn-mas-servicios,
#btn-ver-menos {
    font-size: 16px;
    border-radius: 8px;
    padding: 12px 24px;
    transition: background-color 0.3s ease;
}

#btn-mas-servicios:hover {
    background-color: #005f8c;
}

#btn-ver-menos {
    border: 2px solid #007ABC;
    color: #007ABC;
    background-color: transparent;
}

#btn-ver-menos:hover {
    background-color: #e0eaf5;
}


/* Animación de resalte */

.card-consultoria.highlight {
    animation: resaltarTarjeta 1.5s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 123, 188, 0.6);
    border: 2px solid #007ABC;
}

@keyframes resaltarTarjeta {
    0% {
        box-shadow: 0 0 0 rgba(0, 123, 188, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 123, 188, 0.6);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 rgba(0, 123, 188, 0);
        transform: scale(1);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .titulo-consultoria {
        font-size: 24px;
    }
    .card-consultoria {
        padding: 24px 16px;
    }
    .card-consultoria h5 {
        font-size: 16px;
    }
    .card-consultoria p {
        font-size: 13px;
    }
    .icono-circular {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    #btn-mas-servicios,
    #btn-ver-menos {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/*==================================================================
                       FIN DE SECCION 7
    ================================================================*/


/*==================================================================
                       SECCION 8
    ================================================================*/

.section-mapa {
    padding: 40px 20px;
    background-color: #e9f7ff !important;
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Responsivo */

@media (max-width: 768px) {
    .container-mapa {
        grid-template-columns: 1fr;
    }
    .mapa iframe {
        height: 250px;
    }
}


/*==================================================================
                       FIN DE SECCION 8
    ================================================================*/


/*==================================================================
                         SECCION 10
    ================================================================*/

.section10 {
    background-color: #D0EEFF;
    color: #1a1818;
    padding: 60px 20px 30px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-footer {
    width: 160px;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-col p,
.footer-col ul li {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 20px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00aaff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #cccccc;
}

.redes-sociales {
    grid-column: 1 / -1;
    /* Ocupa todo el ancho del grid */
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 24px;
    color: #007ABC;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00aaff;
}


/* Responsivo */

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .logo-footer {
        margin: 0 auto;
    }
    .social-icons {
        justify-content: center;
    }
}

.lista-contacto {
    list-style: none;
    padding-left: 0;
}


/*==================================================================
                       FIN DE SECCION 10
    ================================================================*/

.barra-contacto-horizontal {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #E9F7FF;
    padding: 12px 16px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.item-contacto {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007ABC;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.item-contacto:hover {
    background-color: #eaf6ff;
    border-radius: 6px;
    padding: 4px;
}

.texto-numero {
    font-size: 1rem;
    color: #003366;
}


/* Responsivo: ocultar número en pantallas pequeñas */

@media (max-width: 480px) {
    .texto-numero {
        display: none;
    }
    .barra-contacto-horizontal {
        bottom: 20px;
        top: auto;
        right: 20px;
        transform: none;
        flex-direction: row;
        padding: 8px 12px;
    }
}