﻿/* ===== CONFIGURACIÓN GENERAL ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #323232;
    background-color: #f4f5fb;

    /* Esta es la línea nueva */
    padding-top: 120px;   /* o 70px si tu header es más alto */
}

img {
    max-width: 100%;
    display: block;
}

/* Contenedor */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
    background: linear-gradient(90deg, #004aad, #0066d3);
    color: white;
    display: flex;
    justify-content: flex-start;   /* ahora logo y menú se alinean a la izquierda */
    align-items: center;
    padding: 12px 40px;

       /* NUEVO PARA DEJARLA CONGELADA */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;   /* para que quede por encima del contenido */
}

.menu {
    margin-left: 100px;   /* ajusta 60, 80, 100 según lo quieras */
}

.logo {
    font-weight: 700;
    font-size: 18px;
}

.logo img {
    height: 120px;      /* prueba 40px, luego sube o baja */
    width: auto;       /* mantiene proporción del logo */
    display: block;
}

.menu a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 25px;
}

.menu a:hover {
    text-decoration: underline;
}

/* ===== DROPDOWN LOGIN EN NAV ===== */
.nav-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    font-size: 25px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-toggle {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-toggle:hover {
    text-decoration: underline;
}

.nav-dropdown-arrow {
    font-size: 14px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    list-style: none;
    margin: 0;
    padding: 10px 0 8px;
    min-width: 210px;
    z-index: 2000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #003580 !important;
    font-size: 14px !important;
    font-weight: 500;
    text-decoration: none;
    margin-left: 0 !important;
    white-space: nowrap;
    border-radius: 0;
}

.nav-dropdown-menu li a:hover {
    background: #f0f5ff;
    text-decoration: none !important;
}

.btn-demo {
    background-color: #ff8a00;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}

/* ===== BOTONES ===== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff8a00;
    color: #fff;
}

.btn-primary.full {
    width: 100%;
    margin-top: 12px;
}

.btn-secondary {
    background-color: #004aad;
    color: #fff;
}

.btn-outline {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

/* ===== SECCIONES ===== */
.section {
    padding: 60px 0;
}

.section-light {
    background-color: #e9edf8;
}

.section-title {
    font-size: 50px;
    text-align: center;
    margin: 0 0 20px;
    color: #233067;
}

/* Estilo especial para el título "Módulos y funcionalidades" */
#modulos .section-title {
    font-size: 22px;              /* un poco más chico */
    color: #1f56c3;               /* azul CGA */
    text-transform: uppercase;    /* MAYÚSCULAS */
    letter-spacing: 0.08em;       /* separación entre letras */
    margin-bottom: 6px;           /* menos espacio abajo */
}

.section-subtitle {
    text-align: left;
    margin-top: 40px;
    font-size: 18px;
}

.section-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 8px 0;
}

.center {
    text-align: center;
}

/* ===== HERO LANDING ===== */
.hero-landing {
    background: linear-gradient(135deg, #ffffff 0%, #f3f5ff 45%, #e3e9ff 100%);
    padding: 60px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: #ff8a00;
    margin-bottom: 8px;
}

.hero-landing h1 {
    font-size: 36px;
    margin: 0 0 14px;
    color: #1a2546;
}

.hero-text {
    font-size: 15px;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 20px;
    color: #33405f;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 22px 0 14px;
}

.hero-trust {
    font-size: 14px;
    color: #273568;
    font-weight: 600;
    margin: 0 0 8px;
}

.hero-phone {
    font-size: 13px;
    margin-top: 16px;
    color: #444b6a;
}

/* Formulario */
.hero-right {
    display: flex;
    justify-content: center;
}

.quote-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px 24px 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 380px;
}

.quote-card h2 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 10px;
}

.quote-intro {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5578;
    text-align: center;
    margin: 0 0 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

label {
    font-size: 13px;
    display: block;
}

input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #c6cee7;
    padding: 6px 10px;
    margin-top: 4px;
    font-size: 13px;
}

.form-note {
    font-size: 12px;
    color: #66708f;
    text-align: center;
    margin: 12px 0 0;
}

/* ===== QUIÉNES SOMOS / CLIENTES ===== */
.clients-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

/* ===== SOLUCIONES ===== */
.section-header-two {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.section-header-right {
    max-width: 420px;
    font-size: 15px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.solution-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background-color: #111;
    color: #fff;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.solution-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.solution-body {
    position: relative;
    padding: 16px 16px 18px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
}

.solution-body h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.solution-body p {
    margin: 0 0 10px;
    font-size: 13px;
}

/* ===== MÓDULOS ===== */
.modules-group h3 {
    margin-top: 18px;
    margin-bottom: 22px;
    font-size: 40px;        /* más grande */
    font-weight: 800;       /* más grueso */
    color: #233067;         /* azul oscuro */
    text-align: center;
}

.modules-group-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.modules-group-link:hover {
    color: #0f57c5;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));  /* SIEMPRE 3 columnas en escritorio */
    gap: 18px;                                         /* más espacio entre cajones */
}
.module-pill {
    background-color: #ffffff;
    border-radius: 999px;
    padding: 10px 16px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

/* ===== PLATAFORMA ===== */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.platform-card {
    background-color: #ffffff;
    border-radius: 28px;
    border: 1px solid #d0d7f5;
    text-align: center;
    padding: 26px 18px 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.platform-logo-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid #d0d7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background-color: #ffffff;
}

.platform-logo-circle img {
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
}

.platform-card h3 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #273568;
}

.platform-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #555;
}

/* ===== SERVICIOS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));  /* 3 columnas fijas */
    gap: 40px 60px;                                    /* espacio vertical y horizontal */
    margin-top: 40px;
}

.service-card {
    text-align: center;
    background: transparent;              /* sin tarjeta blanca */
    box-shadow: none;
    padding: 0 10px;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e9edf8;           /* círculo gris-azulado */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.service-icon-circle img {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.service-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
}

.service-card p {
    margin: 0;
    font-size: 13px;
}

/* ===== INFORMACIÓN CORPORATIVA ===== */

.corporate-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: flex-start;
}

.corporate-left .section-title {
    text-align: left;
    margin-bottom: 24px;
}

/* Bloque "Objetivos de la sociedad" */
.corp-block {
    margin-bottom: 24px;
}

.corp-block-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.corp-bar {
    width: 26px;
    height: 3px;
    background-color: #1f56c3;
    border-radius: 999px;
    margin-right: 12px;
}

.corp-title {
    font-weight: 700;
    font-size: 16px;
    color: #273568;
}

.corp-block-body {
    border-left: 2px solid #d0d7f5;
    padding-left: 16px;
    margin-left: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Lista tipo acordeón */
.corp-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 24px;
}

.corp-accordion li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #d0d7f5;
    font-size: 14px;
}

.corp-plus {
    font-size: 20px;
    font-weight: 700;
    color: #1f56c3;
    margin-right: 12px;
}

.corp-link {
    color: #273568;
}

/* =============== ACORDEÓN INFORMACIÓN CORPORATIVA (actualizacion)=============== */

.corp-accordion {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.corp-item {
    border-bottom: 1px solid #d7e0f5;
}

.corp-toggle {
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1f3566;
    text-align: left;
}

.corp-toggle:focus {
    outline: none;
}

.corp-plus {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #1f56c3;
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.corp-link {
    flex: 1;
}

/* Contenido desplegable */
.corp-content {
    max-height: 0;
    overflow: hidden;
    padding-left: 44px;        /* alineado con el texto después del + */
    padding-bottom: 0;
    transition: max-height 0.25s ease, padding-bottom 0.25s ease;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5b7a;
}

.corp-item.open .corp-content {
    padding-bottom: 12px;
}


/* Lado derecho "Multilingual" + banderas */
.corporate-right {
    text-align: center;
}

.corp-right-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #273568;
}

.corp-flags {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.flag-card {
    background-color: #ffffff;
    border-radius: 26px;
    border: 1px solid #d0d7f5;
    padding: 22px 18px 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.flag-image-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #d0d7f5;
    margin: 0 auto 14px;
    background-color: #ffffff;
}

.flag-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-card h4 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #273568;
}

.flag-card p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #e4e9f7;
    padding-top: 40px;
    margin-top: 0;
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 24px;
    padding-bottom: 20px;
}

.footer h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #233067;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 6px;
    font-size: 13px;
}

.footer a {
    text-decoration: none;
    color: #333b63;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-location {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
    padding: 36px 0 28px;
    border-top: 2px solid #c8d0e7;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-address h4 {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #233067;
}

.footer-address p {
    font-size: 13px;
    color: #4a5275;
    margin: 0 0 10px;
    line-height: 1.6;
}

.footer-address p:last-child {
    margin-bottom: 0;
}

.footer-address a {
    color: #004aad;
    text-decoration: none;
}

.footer-address a:hover {
    text-decoration: underline;
}

.footer-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.footer-map iframe {
    width: 100%;
    height: 260px;
    display: block;
    border: 0;
}

.footer-bottom {
    background-color: #004aad;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 10px 0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .menu {
        display: flex;
        flex-wrap: wrap;
        margin-top: 6px;
    }

    .menu a {
        margin: 4px 10px 0 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-landing {
        padding-top: 30px;
    }

    .section-header-two {
        flex-direction: column;
    }

    .corporate-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 900px) {
    .modules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));   /* 2 columnas en tablet */
    }
}

@media (max-width: 600px) {
    .modules-grid {
        grid-template-columns: 1fr;                         /* 1 columna en celular */
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));  /* 2 columnas en tablet */
    }
}

@media (max-width: 600px) {
    .footer-location {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;                        /* 1 columna en celular */
    }
}

@media (max-width: 900px) {
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .corporate-left .section-title {
        text-align: center;
    }

    .corp-block-body {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .topbar {
        position: static;   /* deja de ser fixed */
    }

    body {
        padding-top: 0;
    }
}

/* ===== TARJETAS DE MÓDULOS CON ICONO ===== */

.module-card {
    background-color: #ffffff;
    border-radius: 999px;
    padding: 16px 24px;                     /* más alto y ancho */
    display: flex;
    column-gap: 24px;   /* espacio fijo entre icono y texto */
    align-items: center;
    min-height: 90px;                       /* altura mínima del cajón */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.module-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.module-text h4 {
    margin: 0 0 4px;
    font-size: 15px;                        /* título un poco más grande */
    font-weight: 700;
    color: #273568;
}

.module-text p {
    margin: 0;
    font-size: 13px;                        /* descripción más grande */
    color: #555;
}

.services-cta {
    margin-top: 36px;
}

.btn-services-cta {
    padding: 12px 40px;       /* más grande que un botón normal */
    font-size: 15px;
}
/* ===== PÁGINA ACERCA DE NOSOTROS ===== */

.about-section {
    background-color: #ffffff;
    padding-top: 40px;
    padding-bottom: 40px;  /* espacio interno abajo */
    margin-bottom: 0;      /* IMPORTANTE: que no deje hueco hacia el footer */
}

.about-heading {
    text-align: left;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 8px;
    color: #233067;
}

.about-subtitle {
    font-size: 22px;
    color: #233067;
    margin: 0 0 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.about-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto;
}

/* Tarjetas de socios */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* Tarjeta tipo cuadro grande */
.founder-card {
    background-color: #ffffff;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    padding: 22px 26px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* Círculo del logo */
.founder-logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background-color: #f3f5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.founder-logo-circle img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

/* Texto dentro de la tarjeta */
.founder-info h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #273568;
}

.founder-role {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
    color: #777;
}

.founder-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-heading {
        text-align: center;
    }

    .about-subtitle {
        text-align: center;
    }
}

/* ===== CONTACTO ===== */

.contact-section {
    background-color: #ffffff;
    padding-top: 40px;
    padding-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.contact-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.contact-title-row h1 {
    margin: 0;
    font-size: 26px;
    color: #273568;
}

.contact-subtitle {
    margin: 0 0 24px;
    font-size: 22px;
    color: #273568;
}

.contact-form {
    margin-top: 8px;
}

.contact-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #273568;
}

.form-group input,
.form-group textarea {
    border-radius: 6px;
    border: 1px solid #e0e3ef;
    padding: 10px 12px;
    font-size: 14px;
    background-color: #f7f7f7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f56c3;
    background-color: #ffffff;
}

.contact-submit {
    margin-top: 8px;
    padding: 10px 32px;
}

/* Tarjeta azul de la derecha */
.contact-card {
    background-color: #0060c8;
    color: #ffffff;
    border-radius: 36px;
    padding: 28px 28px 32px;
    max-width: 420px;
    margin-left: auto;
}

.contact-card h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
}

.contact-card p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        max-width: none;
        margin: 24px 0 0;
    }

    .contact-two-columns {
        grid-template-columns: 1fr;
    }
}

/* ===== PÁGINA RECURSOS HUMANOS ===== */

/* Hero centrado */
.rh-hero {
    background-color: #ffffff;
    padding-top: 40px;
    padding-bottom: 24px;
    text-align: center;
}

.rh-hero .container {
    max-width: 900px;
}

.rh-hero h1 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #273568;
}

.rh-hero p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Botón PDF naranja */
.rh-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: 999px;
    background-color: #ff7a00;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* Sección de tarjetas */
.rh-cards-section {
    background-color: #f3f5fb;
    padding-top: 32px;
    padding-bottom: 48px;
}

.rh-cards-intro {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5578;
}

.rh-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

/* Tarjeta individual */
.rh-card {
    background-color: #ffffff;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Icono arriba del título */
.rh-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: #f3f5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 20px;
}

/* Título y lista */
.rh-card h3 {
    font-size: 16px;
    margin: 0 0 8px;
    color: #273568;
}

.rh-card-copy {
    font-size: 13px;
    line-height: 1.6;
    color: #4a5578;
    margin: 0 0 12px;
}

.rh-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 16px;
    font-size: 13px;
}

.rh-card ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
    color: #333;
}

/* Check verde en cada renglón */
.rh-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
    color: #2ebf5b;
}

/* Botón naranja de la tarjeta */
.rh-card-btn {
    margin-top: auto;
    align-self: center;
    background-color: #ff7a00;
    color: #ffffff;
    border-radius: 999px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .rh-hero h1 {
        font-size: 26px;
    }

    .rh-cards-section {
        padding-top: 24px;
        padding-bottom: 32px;
    }
}

/* ===== BLOQUE VIDEO + EXPERIENCIA + 3 TARJETAS RH ===== */

.rh-video-block {
    background-color: #ffffff;
    padding: 60px 0 80px;
}

/* Título "Descubre CGA Sharp Recursos Humanos" */
.rh-video-hero {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.rh-video-hero h2 {
    font-size: 32px;
    line-height: 1.2;
    color: #273568;
    margin-bottom: 6px;
}

.rh-video-hero h2 span {
    display: block;
}

.rh-video-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 26px;
}

/* Caja blanca del video */
.rh-video-placeholder {
    width: 480px;
    max-width: 100%;
    height: 280px;
    margin: 0 auto;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Círculo azul con "play" */
.rh-video-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1b2554;
    position: relative;
}

.rh-video-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #ffffff;
}

/* Texto de experiencia + botón naranja */
.rh-experience {
    max-width: 900px;
    margin: 60px auto 40px;
    text-align: center;
}

.rh-experience h3 {
    font-size: 22px;
    color: #273568;
    margin-bottom: 14px;
}

.rh-experience p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 22px;
}

.rh-experience-btn {
    padding: 10px 28px;
    border-radius: 999px;
    background-color: #ff7a00;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.rh-bottom-intro {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5578;
}

/* Grid de 3 tarjetas inferiores */
.rh-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Tarjeta pequeña */
.rh-mini-card {
    background-color: #ffffff;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Imagen superior de la tarjeta */
.rh-mini-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center center;  /* muestra más la parte de arriba */
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;

}

/* Texto de la tarjeta */
.rh-mini-card-body {
    padding: 18px 22px 20px;
    font-size: 13px;
    color: #444;
}

.rh-mini-card-body h4 {
    font-size: 14px;
    color: #273568;
    margin: 0 0 4px;
}

.rh-mini-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    margin: 0 0 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .rh-bottom-grid {
        grid-template-columns: 1fr;
    }

    .rh-video-placeholder {
        height: 220px;
    }
}

/* ===== KIOSKO CGA: PORTAL DEL EMPLEADO ===== */
.kiosko-section {
    background: linear-gradient(135deg, #003580 0%, #004aad 60%, #0066d3 100%);
    padding: 70px 0 80px;
}

.portal-suite-section {
    background: linear-gradient(135deg, #003580 0%, #004aad 60%, #0066d3 100%);
    padding: 70px 0 80px;
}

.kiosko-inner {
    max-width: 820px;
}

.portal-suite-intro {
    max-width: 820px;
    margin-bottom: 34px;
}

.portal-suite-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.portal-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 30px 28px 32px;
    box-shadow: 0 24px 45px rgba(5, 18, 44, 0.18);
    backdrop-filter: blur(4px);
}

.portal-card-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffbe73;
    margin: 0 0 10px;
}

.portal-card h3 {
    font-size: 1.45rem;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.25;
}

.portal-card-desc {
    color: #c8d9f5;
    font-size: 0.97rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.kiosko-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff8a00;
    margin: 0 0 10px;
}

.kiosko-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.25;
}

.portal-suite-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.25;
}

.kiosko-desc {
    font-size: 1.05rem;
    color: #c8d9f5;
    margin: 0 0 36px;
    max-width: 680px;
    line-height: 1.6;
}

.kiosko-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.kiosko-features li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.kiosko-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.kiosko-features strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.kiosko-features p {
    color: #b0c8f0;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.kiosko-btn {
    font-size: 1rem;
    padding: 14px 36px;
}

@media (max-width: 640px) {
    .portal-suite-grid {
        grid-template-columns: 1fr;
    }

    .kiosko-features {
        grid-template-columns: 1fr;
    }

    .kiosko-section h2 {
        font-size: 1.5rem;
    }

    .portal-card {
        padding: 24px 20px 26px;
    }
}

/* Secciones generales */
.page-content {
    padding-top: 80px; /* para que no lo tape el header fijo */
    background-color: #f3f5ff;
}

/* HERO */
.system-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.system-hero h1 {
    font-size: 2.4rem;
    color: #162c5b;
    margin-bottom: 12px;
}

.system-hero-text {
    max-width: 720px;
    margin: 0 auto 24px;
    font-size: 1rem;
    color: #333;
}

/* Botones */
.btn-orange {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 999px;
    background-color: #ff7a00;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: none;
}

.btn-orange:hover {
    background-color: #ff8f26;
}

.btn-module {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 24px;
    border-radius: 999px;
    background-color: #ff7a00;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Grid de módulos */
.system-modules {
    padding: 20px 0 40px;
}

.finanzas-intro {
    max-width: 780px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5578;
}

.fin-updates {
    padding: 10px 0 36px;
}

.fin-updates-kicker {
    margin: 0 0 10px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ff7a00;
}

.fin-updates h2 {
    max-width: 860px;
    margin: 0 auto 12px;
    text-align: center;
    font-size: 31px;
    line-height: 1.2;
    color: #162c5b;
}

.fin-updates-intro {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5578;
}

.fin-updates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.fin-updates-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px 26px 24px;
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
}

.fin-updates-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.3;
    color: #16355b;
}

.fin-updates-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5578;
}



.module-card {
    background-color: #ffffff;
    border-radius: 26px;
    padding: 24px 22px 18px;
    box-shadow: 0 18px 40px rgba(10, 44, 100, 0.08);
}

.module-card h3 {
    font-size: 1.1rem;
    color: #162c5b;
    margin-bottom: 8px;
}

.module-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.module-card li::before {
    content: "✔";
    color: #00c66b;
    margin-right: 6px;
}

/* Bloque Descubre CGA finanzas */
.system-discover {
    padding: 30px 0 40px;
    text-align: center;
}

.system-discover h2 {
    font-size: 2rem;
    color: #162c5b;
    margin-bottom: 6px;
}

.system-discover .subtitle {
    margin-bottom: 30px;
}

/* Video placeholder */
.video-placeholder {
    width: 100%;
    max-width: 640px;
    height: 360px;
    margin: 0 auto 32px;
    border-radius: 26px;
    background-color: #ffffff;
    box-shadow: 0 18px 40px rgba(10, 44, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-circle {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background-color: #172b55;
    position: relative;
}

.video-circle::after {
    content: "";
    position: absolute;
    left: 32px;
    top: 23px;
    border-style: solid;
    border-width: 16px 0 16px 24px;
    border-color: transparent transparent transparent #ffffff;
}

/* Texto experiencia */
.experience-title {
    font-size: 1.2rem;
    color: #162c5b;
    margin-bottom: 10px;
}

.experience-text {
    max-width: 900px;
    margin: 0 auto 24px;
}

/* Tarjetas inferiores (3 mini cards) */
.fin-mini-cards {
    padding: 30px 0 60px;
}

.mini-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.mini-card {
    background-color: #ffffff;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(10, 44, 100, 0.08);
    overflow: hidden;
}

.mini-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mini-card-body {
    padding: 18px 20px 22px;
}

.mini-card-body h4 {
    font-size: 1rem;
    color: #162c5b;
    margin-bottom: 8px;
}

.mini-card-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a93ab;
    margin: 0 0 10px;
}

/* Contenedor del título + icono dentro de la tarjeta */
.finance-card-header {
    display: flex;
    align-items: center;
    gap: 12px;           /* separación icono–texto */
    margin-bottom: 12px; /* espacio hacia la lista */
}

/* Icono de la tarjeta de finanzas */
.finance-icon {
    width: 36px;         /* prueba 32–48px según qué tanto lo quieras */
    height: auto;
    flex-shrink: 0;      /* para que no se deforme */
}

/* (Opcional) Asegurar que el título no pegue al borde superior */
.finance-card h3 {
    font-size: 1.2rem;
    margin: 0;           /* el espacio se controla con margin-bottom del header */
    color: #1d2b5c;      /* azul similar a tus otros títulos */
    font-weight: 700;
}

/* ====== SECCIÓN FINANZAS – TARJETAS ====== */

.finanzas-modulos {
    max-width: 1200px;
    margin: 60px auto 80px;
}

.finanzas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

/* Tarjeta individual */
.finanzas-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px 26px 22px;
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

/* Iconito arriba */
.finanzas-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

/* Título del módulo */
.finanzas-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #16355b; /* azul oscuro parecido al de tu sitio */
    margin-bottom: 10px;
}

.finanzas-card-copy {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5578;
    margin: 0 0 14px;
}

/* Lista de funcionalidades */
.finanzas-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #344050;
}

.finanzas-card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
}

/* Check verde tipo Recursos Humanos */
.finanzas-card-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #21b573; /* verde */
}

/* Botón naranja "Solícítelo" */
.btn-solicitalo {
    align-self: flex-start;
    border: none;
    border-radius: 999px;
    padding: 10px 28px;
    background-color: #ff7a00;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-solicitalo:hover {
    background-color: #ff8f26;
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.35);
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .finanzas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .finanzas-grid {
        grid-template-columns: 1fr;
    }

    .fin-updates-grid {
        grid-template-columns: 1fr;
    }

    .fin-updates h2 {
        font-size: 26px;
    }
}

/* ======= SOFTWARE A LA MEDIDA ======= */

.software-hero .system-hero-text {
    max-width: 920px;
}

.software-hero-actions {
    justify-content: center;
}

.software-section {
    padding: 18px 0 38px;
}

.software-kicker {
    margin: 0 0 10px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ff7a00;
}

.software-section-title {
    max-width: 860px;
    margin: 0 auto 12px;
    text-align: center;
    font-size: 31px;
    line-height: 1.2;
    color: #162c5b;
}

.software-section-text {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5578;
}

.software-grid {
    display: grid;
    gap: 24px;
}

.software-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.software-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.software-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px 26px 24px;
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
}

.software-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.3;
    color: #16355b;
}

.software-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5578;
}

.software-discover {
    padding: 30px 0 42px;
}

.software-discover-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto 26px;
    max-width: 920px;
}

.software-discover-point {
    background: #ffffff;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #233067;
    box-shadow: 0 12px 28px rgba(10, 44, 100, 0.08);
}

.software-steps {
    padding: 24px 0 44px;
}

.software-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.software-step-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 20px 22px;
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
}

.software-step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #ff7a00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.software-step-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    color: #16355b;
}

.software-step-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #4a5578;
}

.software-showcase {
    padding-top: 20px;
}

.software-why {
    padding: 24px 0 36px;
}

.software-final-cta {
    padding-top: 10px;
}

@media (max-width: 1100px) {
    .software-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .software-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .software-grid-three,
    .software-grid-four,
    .software-steps-grid {
        grid-template-columns: 1fr;
    }

    .software-section-title {
        font-size: 26px;
    }
}

/* ======= TPM / MANTENIMIENTO ======= */

/* Gancho héroe */
.tpm-hook {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ff8a00;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 12px;
}

/* Barra de credibilidad */
.tpm-stats-bar {
    background: linear-gradient(90deg, #003580, #004aad);
    padding: 24px 0;
}

.tpm-stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tpm-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.tpm-stat strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

.tpm-stat span {
    font-size: 0.8rem;
    color: #a8c8f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sección problemas — fondo oscuro */
.tpm-problems-section {
    background: linear-gradient(135deg, #0d1f4a 0%, #162c5b 100%);
    padding: 60px 0 70px;
    text-align: center;
}

.tpm-kicker-light {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff8a00;
    margin: 0 0 10px;
}

.tpm-dark-title {
    font-size: 1.9rem;
    color: #ffffff;
    max-width: 820px;
    margin: 0 auto 14px;
    line-height: 1.3;
}

.tpm-dark-text {
    color: #a8c0e0;
    max-width: 700px;
    margin: 0 auto 36px;
    font-size: 1rem;
    line-height: 1.6;
}

.tpm-problem-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: background 0.2s;
}

.tpm-problem-card:hover {
    background: rgba(255,255,255,0.12);
}

.tpm-problem-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
}

.tpm-problem-card p {
    color: #d0e0f8;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.55;
}

.tpm-closing-light {
    color: #a8c0e0 !important;
    margin-top: 32px !important;
}

/* Fondos alternados */
.tpm-bg-white {
    background: #ffffff;
}

.tpm-bg-gray {
    background: #f4f5fb;
}

/* Beneficios como tiles */
.tpm-benefits-section {
    background: #f4f5fb;
    padding: 60px 0 70px;
    text-align: center;
}

.tpm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.tpm-benefit-tile {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 18px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.tpm-benefit-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
}

.tpm-benefit-tile p {
    margin: 0;
    font-size: 0.88rem;
    color: #3a4a6b;
    font-weight: 500;
    line-height: 1.5;
}

/* Funcionalidades unificadas con íconos */
.tpm-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.tpm-feature-card {
    background: #f4f5fb;
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
}

.tpm-feature-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.tpm-feature-card h3 {
    font-size: 0.95rem;
    color: #162c5b;
    margin: 0 0 8px;
    font-weight: 700;
}

.tpm-feature-card p {
    font-size: 0.83rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* Antes: bullets con ✗ rojo */
.tpm-list-cross li::before {
    content: "✗" !important;
    color: #e53e3e !important;
}

.tpm-list-cross li {
    color: #5a3a3a;
}

/* Responsive TPM */
@media (max-width: 1100px) {
    .tpm-benefits-grid,
    .tpm-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .tpm-benefits-grid,
    .tpm-features-grid {
        grid-template-columns: 1fr;
    }

    .tpm-stats-inner {
        justify-content: center;
    }

    .tpm-dark-title {
        font-size: 1.4rem;
    }
}

.tpm-hero .system-hero-text {
    max-width: 960px;
}

.tpm-hero-bullets {
    max-width: 820px;
    margin: 0 auto 22px;
    padding-left: 20px;
    text-align: left;
    color: #233067;
    font-size: 15px;
    line-height: 1.8;
}

.tpm-hero-note {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: #4a5578;
}

.tpm-section {
    padding: 20px 0 42px;
}

.tpm-section .software-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tpm-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tpm-problems-grid .software-card {
    display: flex;
    align-items: center;
    min-height: 120px;
}

.tpm-problems-grid .software-card p {
    font-size: 15px;
    font-weight: 500;
    color: #233067;
}

.tpm-closing-text {
    max-width: 900px;
    margin: 24px auto 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5578;
}

.tpm-list-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
}

.tpm-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 34px;
}

.tpm-bullet-list li {
    break-inside: avoid;
    position: relative;
    padding-left: 22px;
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #344050;
}

.tpm-bullet-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #21b573;
}

.tpm-short-line {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #233067;
}

.tpm-card-close {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5578;
}

.tpm-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.tpm-info-panel {
    background: #ffffff;
    border-radius: 26px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
}

.tpm-info-panel h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.25;
    color: #162c5b;
}

.tpm-info-panel p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5578;
}

.tpm-before-after {
    padding: 20px 0 44px;
}

.tpm-before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.tpm-before-card,
.tpm-after-card {
    border-radius: 26px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
}

.tpm-before-card {
    background: #ffffff;
}

.tpm-after-card {
    background: linear-gradient(180deg, #0f57c5, #004aad);
}

.tpm-before-after-label {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ff7a00;
}

.tpm-after-card .tpm-before-after-label {
    color: #ffd7ae;
}

.tpm-after-card .tpm-bullet-list li {
    color: #ffffff;
}

.tpm-after-card .tpm-bullet-list li::before {
    color: #7df0bc;
}

.tpm-cta-note {
    max-width: 820px;
    margin: 16px auto 0;
    font-size: 14px;
    line-height: 1.7;
    color: #4a5578;
}

@media (max-width: 1100px) {
    .tpm-problems-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .tpm-split-grid,
    .tpm-before-after-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .tpm-problems-grid {
        grid-template-columns: 1fr;
    }

    .tpm-bullet-list {
        columns: 1;
    }

    .tpm-info-panel h2 {
        font-size: 24px;
    }
}

/* ======= SISTEMAS COMPUTACIONALES / SOFTWARE A LA MEDIDA ======= */

/* Badge de industria */
.sc-badge {
    display: inline-block;
    background: rgba(0, 74, 173, 0.1);
    color: #004aad;
    border: 1px solid rgba(0, 74, 173, 0.25);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Gancho héroe */
.sc-hook {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff8a00;
    margin: 0 0 14px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

/* Fondos alternados */
.sc-bg-gray  { background: #f4f5fb; }
.sc-bg-white { background: #ffffff; }

/* Íconos en software-card */
.sc-icon-card {
    text-align: center;
}

.sc-card-icon {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

/* Bloque diferenciador */
.sc-differentiator {
    background: linear-gradient(135deg, #0d1f4a 0%, #162c5b 100%);
    padding: 70px 0 80px;
}

.sc-diff-inner {
    max-width: 820px;
}

.sc-diff-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff8a00;
    margin: 0 0 12px;
}

.sc-differentiator h2 {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 18px;
    line-height: 1.3;
}

.sc-diff-desc {
    color: #a8c0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 28px;
}

.sc-diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-diff-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d0e0f8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sc-diff-list li::before {
    content: "✔";
    color: #7df0bc;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Chips de categoría en mini-cards */
.sc-chip {
    display: inline-block;
    background: #e8f0ff;
    color: #004aad;
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .sc-differentiator h2 {
        font-size: 1.5rem;
    }

    .sc-hook {
        font-size: 0.95rem;
    }
}

/* ======= CONTROL DE ASISTENCIA (BIOMÉTRICOS) ======= */

/* HERO */
.bio-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.bio-hero h1 {
    font-size: 40px;
    line-height: 1.2;
    color: #1f3157; /* azul oscuro que usas */
    margin-bottom: 24px;
}

.bio-hero-text {
    max-width: 960px;
    margin: 0 auto 32px;
    font-size: 16px;
}

/* Botón con icono, reusa tus colores naranjas */
.with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    font-size: 18px;
}

/* TARJETAS CON LISTA DE CHECKS (Dispositivos, Conectividad, Control de datos) */
.bio-features {
    padding: 40px 0 60px;
}

.bio-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.bio-feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 32px 24px;
    box-shadow: 0 18px 35px rgba(23, 58, 102, 0.12);
}

.bio-feature-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1f3157;
}

.bio-feature-copy {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5578;
    margin: 0 0 14px;
}

.bio-feature-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 24px;
    font-size: 14px;
}

.bio-feature-card ul li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
}

.bio-feature-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #11b35b; /* verde de check */
    font-size: 12px;
}

/* BLOQUE “MÁS DE 30 AÑOS…” */
.bio-experience {
    padding: 40px 0 40px;
    text-align: center;
}

.bio-experience h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1f3157;
}

.bio-experience p {
    max-width: 960px;
    margin: 0 auto 24px;
    font-size: 15px;
}

/* TARJETAS CON IMAGEN CIRCULAR (Conectividad / Dispositivos / Control de datos) */
.bio-modules {
    padding: 40px 0 80px;
}

.bio-modules-intro {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5578;
}

.bio-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.bio-module-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 24px 32px;
    box-shadow: 0 18px 35px rgba(23, 58, 102, 0.12);
    text-align: center;
}

.bio-module-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}

.bio-module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-module-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1f3157;
}

.bio-module-card h3 span {
    font-weight: 400;
}

.bio-module-card p {
    font-size: 14px;
}

.bio-contact-cta {
    padding: 20px 0 80px;
    text-align: center;
}

.bio-contact-cta h2 {
    font-size: 28px;
    color: #1f3157;
    margin-bottom: 14px;
}

.bio-contact-cta p {
    max-width: 820px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #4a5578;
}

/* RESPONSIVE: en tablet/móvil las columnas se hacen 1 o 2 */
@media (max-width: 992px) {
    .bio-features-grid,
    .bio-modules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bio-features-grid,
    .bio-modules-grid {
        grid-template-columns: 1fr;
    }

    .bio-hero h1 {
        font-size: 30px;
    }
}
.bio-feature-card .bio-feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px auto;  /* centrado + espacio debajo */
    
}

/* =============== ACORDEÓN INFORMACIÓN CORPORATIVA =============== */

.corporate-left {
    max-width: 750px;
}

/* Lista sin viñetas */
.corp-accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Cada fila (incluye también Objetivos de la sociedad) */
.corp-item {
    border-top: 1px solid #d7e0f5;
    padding: 22px 0;
}

/* Línea final inferior para la última fila */
.corp-item:last-child {
    border-bottom: 1px solid #d7e0f5;
}

/* Objetivos de la sociedad: un poco más separado del título */
.corp-item-objectives {
    margin-bottom: 12px;
}

/* Botón que contiene el icono + y el título */
.corp-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1f3566;
}

.corp-toggle:focus {
    outline: none;
}

/* Cuadro azul del + / - */
.corp-plus {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #1f56c3;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

/* Título (Política de calidad, Ventas, etc.) */
.corp-link {
    max-width: 190px;          /* ancho parecido al diseño */
}

/* Texto desplegable */
.corp-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding-top 0.25s ease;
    padding-top: 0;
}

/* Párrafo interno alineado a la derecha del título */
.corp-content p {
    margin: 6px 0 0;
    padding-left: 64px;        /* deja espacio para el icono y título */
    font-size: 15px;
    line-height: 1.6;
    color: #3f5176;
}

/* Cuando está abierto */
.corp-item.open .corp-content {
    padding-top: 6px;
}

/* === AJUSTE FINAL INFORMACIÓN CORPORATIVA === */

.corporate-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: flex-start;
}

.corporate-left {
    max-width: 760px;
}

.corporate-left .section-title {
    text-align: left;
    margin-bottom: 18px;
}

/* Lista del acordeón */
.corp-accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Cada fila (incluye Objetivos, Política, etc.) */
.corp-item {
    border-top: 1px solid #d7e0f5;
    padding: 18px 0;
}

.corp-item:last-child {
    border-bottom: 1px solid #d7e0f5;
}

/* Botón del acordeón */
.corp-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1f3566;
}

.corp-toggle:focus {
    outline: none;
}

/* Cuadro azul + / - */
.corp-plus {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #1f56c3;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
}

/* Título de cada renglón */
.corp-link {
    max-width: 100%;
}

/* En escritorio deja el título en una sola línea */
@media (min-width: 901px) {
    .corp-link {
        white-space: nowrap;
    }
}

/* Contenido desplegable */
.corp-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding-top 0.25s ease;
    padding-top: 0;
}

.corp-content p {
    margin: 6px 0 0;
    padding-left: 64px;      /* espacio para el cuadrado y el título */
    font-size: 15px;
    line-height: 1.6;
    color: #3f5176;
}

/* Cuando está abierto */
.corp-item.open .corp-content {
    padding-top: 6px;
}

/* Responsive: en pantallas chicas, una sola columna */
@media (max-width: 900px) {
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .corporate-left .section-title {
        text-align: center;
    }
}

/* =========================
   PROPOMEX – cards finales
   ========================= */

.propomex-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.impex-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 40px;
}


.propomex-benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px 28px;
    box-shadow: 0 20px 40px rgba(15, 35, 52, 0.08);
    text-align: center;
}

.impex-benefit-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 24px 28px;
    box-shadow: 0 20px 40px rgba(15, 35, 52, 0.08);
    text-align: center;
}


.propomex-benefit-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
}

.impex-benefit-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
}


.propomex-benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impex-benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.propomex-benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1f3258; /* tu azul corporativo */
}

.impex-benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1f3258; /* tu azul corporativo */
}

.propomex-benefit-card h3 span {
    font-weight: 600;  /* “Desarrollo”, “Gráficas”, “Catálogos” en negrita */
}

.impex-benefit-card h3 span {
    font-weight: 600;  /* “Desarrollo”, “Gráficas”, “Catálogos” en negrita */
}

.propomex-benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
}
.impex-benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
}

/* Responsivo */
@media (max-width: 900px) {
    .propomex-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .impex-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 600px) {
    .propomex-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .impex-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* === Tarjetas de módulos Propomex (tipo card) ===================== */

.prop-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.impex-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.prop-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow: 0 20px 40px rgba(15, 35, 80, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.prop-intro {
    max-width: 820px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5578;
}

.impex-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow: 0 20px 40px rgba(15, 35, 80, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.prop-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.impex-card-icon {
    width: 96px;          /* antes 72px */
    height: 96px;         /* antes 72px */
    border-radius: 50%;
    background-color: #f3f6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
}

/* Imagen del icono dentro del círculo */
.impex-card-icon img {
    width: 80%;           /* deja un pequeño margen dentro del círculo */
    height: 80%;
    object-fit: contain;  /* respeta proporción del png */
}

.prop-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.impex-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.prop-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #163d8d; /* azul CGA */
    margin: 4px 0 10px;
}

.prop-card-copy {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5578;
    margin: 0 0 14px;
}

.impex-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #163d8d; /* azul CGA */
    margin: 4px 0 10px;
}

.impex-intro {
    max-width: 820px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5578;
}

.impex-card-copy {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5578;
    margin: 0 0 14px;
}

.prop-card ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.impex-card ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.prop-card li {
    position: relative;
    padding-left: 18px;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #222c3c;
    margin-bottom: 4px;
}

.impex-card li {
    position: relative;
    padding-left: 18px;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #222c3c;
    margin-bottom: 4px;
}

.prop-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
    color: #22b573; /* verde check */
}

.impex-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
    color: #22b573; /* verde check */
}

/* Botón dentro de la tarjeta: reutilizamos .btn-orange pero ajustamos anchura */
.prop-card .btn-orange {
    align-self: flex-start;
    margin-top: auto;
    padding-inline: 32px;
}

.med-final-cta {
    padding-top: 10px;
    padding-bottom: 70px;
}

.impex-card .btn-orange {
    align-self: flex-start;
    margin-top: auto;
    padding-inline: 32px;
}

.impex-final-cta {
    padding-top: 10px;
    padding-bottom: 70px;
}

/* ================= BLOG =================== */

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.6fr) minmax(280px, 1fr);
    gap: 40px;
}

.blog-header {
    margin-bottom: 24px;
}

.blog-header .section-title {
    margin-bottom: 4px;
}

.blog-underline {
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background-color: #163d8d;
}

/* GRID DE TARJETAS */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(15, 35, 80, 0.08);
    display: flex;
    flex-direction: column;
}

.blog-card-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7b8496;
    margin: 0;
}

.blog-meta-author {
    font-weight: 600;
}

.blog-meta-sep {
    margin: 0 4px;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.blog-card-title a {
    color: #122959;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #163d8d;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #384157;
    margin: 0;
    line-height: 1.4;
}

.blog-readmore {
    margin-top: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #163d8d;
    text-decoration: none;
}

.blog-readmore:hover {
    text-decoration: underline;
}

/* Artículos antiguos */

.blog-more-wrapper {
    margin-top: 24px;
    text-align: left;
}

.blog-more-link {
    font-weight: 600;
    color: #163d8d;
    text-decoration: none;
}

.blog-more-link::after {
    content: " ›";
}

.blog-more-link:hover {
    text-decoration: underline;
}

/* SIDEBAR */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-widget {
    background-color: #f6f7ff;
    border-radius: 20px;
    padding: 18px 20px;
}

.blog-widget-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #163d8d;
    margin: 0 0 12px;
}

/* Categorías */

.blog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories li + li {
    margin-top: 6px;
}

.blog-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #384157;
    text-decoration: none;
}

.blog-categories a:hover {
    color: #163d8d;
}

.blog-categories .cat-count {
    color: #7b8496;
    font-size: 0.82rem;
}

/* Tag cloud */

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 999px;
    background-color: #e5ecff;
    color: #163d8d;
    text-decoration: none;
    white-space: nowrap;
}

.tag-item:hover {
    background-color: #163d8d;
    color: #ffffff;
}

/* Buscador */

.blog-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    font-size: 0.85rem;
    opacity: 0.6;
}

.blog-search-input {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #d0d5eb;
    padding: 8px 12px 8px 30px;
    font-size: 0.9rem;
    outline: none;
    background-color: #ffffff;
}

.blog-search-input:focus {
    border-color: #163d8d;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: -1;
    }
}
/* ============================
   PREGUNTAS FRECUENTES (FAQ)
   ============================ */

/* LISTA DEL ACORDEÓN (CORPORATIVO + FAQ) */
.corp-accordion,
.faq-accordion {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
}

/* CADA FILA/ITEM */
.corp-item,
.faq-item {
    border-bottom: 1px solid #dde3f5;
}

/* BOTÓN/HEADER (la barra donde van el icono y la pregunta) */
.corp-row,
.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 24px;
    background-color: #f4f6ff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

/* ICONO + / - (cuadrito igual que el .corp-plus) */
.corp-plus,
.faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 16px;
    background-color: #0050c8;  /* azul CGA */
    color: #ffffff;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.2s ease;
}

/* TEXTO DE LA PREGUNTA */
.corp-link,
.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #18224f;
}

/* CUERPO DEL TEXTO (contenido que se abre) */
.corp-body,
.faq-body {
    display: none;
    padding: 14px 24px 18px 72px;   /* alineado con el icono */
    background-color: #ffffff;
    color: #333333;
}

/* CUANDO EL ITEM ESTÁ ABIERTO, MOSTRAMOS EL CUERPO */
.corp-item.open .corp-body,
.faq-item.open .faq-body {
    display: block;
}

/* CAMBIO DE COLOR DEL ICONO CUANDO ESTÁ ABIERTO (NARANJA) */
.corp-item.open .corp-plus,
.faq-item.open .faq-toggle {
    background-color: #ff7a00;  /* naranja CGA */
}


/* Bullets del hero de SECIIT / Import-Export */
.hero-bullets {
    display: block;
    text-align: left;
    margin: 12px auto 0;
    padding-left: 0;
    list-style-type: none;
    max-width: fit-content;
}

.hero-bullets li {
    position: relative;
    padding-left: 16px;
    margin: 4px 0;
    line-height: 1.5;
}

.hero-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1em;
}


/* WhatsApp nav button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.btn-whatsapp img {
    width: 32px;
    height: 32px;
}
.btn-whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(37,211,102,0.4);
}
