html {
    scroll-behavior: auto;
} 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #071827;
    color: white;
}


/* NAVEGACIÓN */

.navbar {
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 8%;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    background-color: white;
    border-radius: 12px;
    
    text-decoration: none;
}
.logo img {
    height: 80px;
    width: auto;
    display: block;

    border-radius: 8px;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    color: #dbe4ec;
    text-decoration: none;
    font-size: 15px;

    padding: 10px 14px;

    border-radius: 6px;

    background-color: transparent;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.menu a:hover {
    background-color: white;

    color: #071827;

    transform: translateY(-2px);

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.boton-cotizar {
    background-color: #ffffff;
    color: #071827;

    text-decoration: none;

    padding: 12px 20px;
    border-radius: 6px;

    font-size: 14px;
    font-weight: bold;
}


/* HERO */

.hero {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;

    padding: 80px 8%;
}
.hero-contenido {
    max-width: 680px;
    flex: 1;
}

.etiqueta {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;

    color: #8fa8bc;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;

    margin-bottom: 25px;
}

.hero-texto {
    max-width: 600px;

    font-size: 19px;
    line-height: 1.7;

    color: #bdcbd7;

    margin-bottom: 35px;
}

.hero-botones {
    display: flex;
    gap: 15px;
}

.boton-principal {
    background-color: white;
    color: #071827;

    text-decoration: none;

    padding: 15px 25px;
    border-radius: 6px;

    font-weight: bold;
}

.boton-secundario {
    color: white;

    text-decoration: none;

    padding: 14px 25px;
    border-radius: 6px;

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-confianza {
    display: flex;
    gap: 25px;

    margin-top: 45px;

    color: #9fb2c2;
    font-size: 14px;
}
/* PANEL DE TRAZABILIDAD */

.hero-panel {
    width: 420px;
    flex-shrink: 0;

    backdrop-filter: blur(8px);

    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    padding: 28px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;

    color: #8fa8bc;

    margin-bottom: 28px;
}

.estado {
    color: #9bc7b2;
}

.panel-folio {
    padding-bottom: 22px;
    margin-bottom: 10px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-folio p {
    color: #8fa8bc;
    font-size: 13px;

    margin-bottom: 7px;
}

.panel-folio strong {
    font-size: 24px;
}

.paso {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.paso:last-child {
    border-bottom: none;
}

.paso-numero {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.07);

    color: #9fb2c2;

    font-size: 12px;
    font-weight: bold;
}

.paso strong {
    font-size: 15px;
}

.paso p {
    color: #8fa8bc;

    font-size: 13px;

    margin-top: 4px;
}

.check {
    margin-left: auto;

    font-size: 18px;
    color: #9bc7b2;
}

/* SECCIÓN DIFERENCIADORES */

.diferenciadores {
    background-color: #ffffff;
    color: #071827;

    padding: 110px 8%;
}

.seccion-encabezado {
    max-width: 720px;

    margin-bottom: 60px;
}

.seccion-encabezado .etiqueta {
    color: #637d91;

    margin-bottom: 20px;
}

.seccion-encabezado h2 {
    font-size: 46px;
    line-height: 1.15;

    font-weight: 700;
    letter-spacing: -1px;

    margin-bottom: 20px;
}

.seccion-encabezado > p:last-child {
    font-size: 18px;
    line-height: 1.7;

    color: #5c6c78;
}


.tarjetas-diferenciadores {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.tarjeta {
    min-height: 290px;

    padding: 30px;

    border: 1px solid #dbe2e8;
    border-radius: 12px;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}


.tarjeta:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(7, 24, 39, 0.08);
}


.tarjeta-numero {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #eef3f6;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;

    color: #637d91;

    margin-bottom: 45px;
}


.tarjeta h3 {
    font-size: 20px;

    margin-bottom: 15px;
}


.tarjeta p {
    color: #657480;

    font-size: 15px;
    line-height: 1.7;
}

/* SECCIÓN PROCESO */

.proceso {
    background-color: #071827;
    color: white;

    padding: 120px 8%;
}

.proceso-encabezado {
    max-width: 760px;

    margin-bottom: 75px;
}

.proceso-encabezado .etiqueta {
    color: #8fa8bc;

    margin-bottom: 20px;
}

.proceso-encabezado h2 {
    font-size: 46px;
    line-height: 1.15;

    letter-spacing: -1px;
    font-weight: 700;

    margin-bottom: 20px;
}

.proceso-encabezado > p:last-child {
    max-width: 650px;

    color: #aebfcd;

    font-size: 18px;
    line-height: 1.7;
}


/* PASOS */

.proceso-pasos {
    display: flex;
    align-items: flex-start;
}

.proceso-paso {
    flex: 1;
}

.proceso-numero {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: #9bc7b2;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 25px;
}

.proceso-paso h3 {
    font-size: 19px;

    margin-bottom: 12px;
}

.proceso-paso p {
    color: #93a8b8;
    font-size: 14px;
    line-height: 1.7;
    max-width: 210px;
}



/* LÍNEAS ENTRE PASOS */

.proceso-linea {
    width: 50px;
    height: 1px;

    background-color: rgba(255, 255, 255, 0.15);

    margin: 24px 20px 0;
}

/* =========================
   SECCIÓN SERVICIOS
========================= */

.servicios {
    background-color: #f5f7f9;
    color: #071827;

    padding: 120px 8%;
}


.servicios-encabezado {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;

    margin-bottom: 60px;
}


.servicios-encabezado > div {
    max-width: 650px;
}


.servicios-encabezado .etiqueta {
    color: #637d91;

    margin-bottom: 20px;
}


.servicios-encabezado h2 {
    font-size: 46px;
    line-height: 1.15;

    font-weight: 700;
    letter-spacing: -1px;
}


.servicios-introduccion {
    max-width: 470px;

    color: #62727f;

    font-size: 17px;
    line-height: 1.7;
}



/* TARJETAS */

.servicios-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


.servicio-card {
    background-color: white;

    border: 1px solid #dce4e9;
    border-radius: 14px;

    padding: 34px;

    min-height: 510px;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.servicio-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 45px rgba(7, 24, 39, 0.08);

    border-color: #bac8d2;
}



/* TARJETA DESTACADA */

.servicio-destacado {
    background-color: #0d2233;

    color: white;

    border-color: #0d2233;
}


.servicio-destacado:hover {
    border-color: #244357;
}



/* PARTE SUPERIOR */

.servicio-superior {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}


.servicio-numero {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #eef3f6;

    border-radius: 50%;

    color: #637d91;

    font-size: 12px;
    font-weight: 700;
}


.servicio-destacado .servicio-numero {
    background-color: rgba(255, 255, 255, 0.08);

    color: #a9bdcb;
}


.servicio-tipo {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.4px;

    color: #718796;
}


.servicio-recomendado {
    color: #9bc7b2;
}



/* CONTENIDO */

.servicio-card h3 {
    font-size: 25px;

    margin-bottom: 18px;
}


.servicio-descripcion {
    color: #657581;

    font-size: 15px;
    line-height: 1.7;

    min-height: 105px;
}


.servicio-destacado .servicio-descripcion {
    color: #a8bac7;
}



/* LISTA */

.servicio-incluye {
    list-style: none;

    margin: 30px 0 35px;
}


.servicio-incluye li {
    padding: 11px 0;

    border-bottom: 1px solid #e7ecef;

    color: #435561;

    font-size: 14px;
}


.servicio-incluye li::before {
    content: "✓";

    margin-right: 10px;

    color: #688a78;

    font-weight: 700;
}


.servicio-destacado .servicio-incluye li {
    border-bottom-color: rgba(255, 255, 255, 0.09);

    color: #c0ced7;
}


.servicio-destacado .servicio-incluye li::before {
    color: #9bc7b2;
}



/* ENLACE */

.servicio-enlace {
    margin-top: auto;

    color: #071827;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: opacity 0.2s ease;
}


.servicio-enlace:hover {
    opacity: 0.65;
}


.servicio-destacado .servicio-enlace {
    color: white;
}

/* =========================
   SECCIÓN SECTORES
========================= */

.sectores {
    background-color: #ffffff;
    color: #071827;

    padding: 120px 8%;
}


.sectores-encabezado {
    max-width: 760px;

    margin-bottom: 65px;
}


.sectores-encabezado .etiqueta {
    color: #637d91;

    margin-bottom: 20px;
}


.sectores-encabezado h2 {
    font-size: 46px;
    line-height: 1.15;

    font-weight: 700;
    letter-spacing: -1px;

    margin-bottom: 20px;
}


.sectores-encabezado > p:last-child {
    max-width: 650px;

    color: #62727f;

    font-size: 18px;
    line-height: 1.7;
}



/* GRID */

.sectores-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}



/* TARJETAS */

.sector-card {
    position: relative;

    min-height: 250px;

    padding: 32px;

    background-color: #f7f9fa;

    border: 1px solid #e1e7eb;
    border-radius: 12px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}


.sector-card:hover {
    transform: translateY(-5px);

    border-color: #b9c8d2;

    background-color: #ffffff;
}


.sector-codigo {
    display: inline-block;

    margin-bottom: 45px;

    color: #718796;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


.sector-card h3 {
    font-size: 21px;

    margin-bottom: 14px;
}


.sector-card p {
    max-width: 360px;

    color: #687985;

    font-size: 15px;
    line-height: 1.7;
}

/* =========================
   SECCIÓN NOSOTROS
========================= */

.nosotros {
    background-color: #071827;
    color: white;

    padding: 120px 8%;
}


.nosotros-principal {
    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 100px;

    align-items: end;

    margin-bottom: 90px;
}


.nosotros-texto {
    max-width: 760px;
}


.nosotros-texto .etiqueta {
    color: #8fa8bc;

    margin-bottom: 20px;
}


.nosotros-texto h2 {
    font-size: 48px;
    line-height: 1.12;

    letter-spacing: -1px;

    margin-bottom: 30px;
}


.nosotros-descripcion {
    max-width: 680px;

    color: #aebfcd;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 20px;
}


/* FRASE DESTACADA */

.nosotros-frase {
    padding: 32px;

    border-left: 2px solid #9bc7b2;
}


.frase-numero {
    display: block;

    color: #9bc7b2;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.6px;

    margin-bottom: 20px;
}


.nosotros-frase p {
    color: #dce6ec;

    font-size: 21px;
    line-height: 1.6;
}


/* MISIÓN Y VISIÓN */

.mision-vision {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-bottom: 110px;
}


.mv-card {
    padding: 38px;

    background-color: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 12px;
}


.mv-card > span {
    display: block;

    color: #8fa8bc;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 35px;
}


.mv-card h3 {
    font-size: 25px;

    margin-bottom: 18px;
}


.mv-card p {
    color: #aebfcd;

    font-size: 15px;
    line-height: 1.8;
}


/* VALORES */

.valores-encabezado {
    max-width: 650px;

    margin-bottom: 55px;
}


.valores-encabezado .etiqueta {
    color: #8fa8bc;

    margin-bottom: 20px;
}


.valores-encabezado h2 {
    font-size: 40px;

    line-height: 1.2;
}


.valores-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.valor {
    padding: 35px 30px 35px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.valor:nth-child(3n + 2),
.valor:nth-child(3n + 3) {
    padding-left: 30px;

    border-left: 1px solid rgba(255, 255, 255, 0.12);
}


.valor > span {
    display: block;

    color: #9bc7b2;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 30px;
}


.valor h3 {
    font-size: 19px;

    margin-bottom: 12px;
}


.valor p {
    max-width: 350px;

    color: #93a8b8;

    font-size: 14px;
    line-height: 1.7;
}

/* =========================
   SECCIÓN CONTACTO
========================= */

.contacto {
    background-color: #f3f6f8;
    color: #071827;

    padding: 120px 8%;
}


.contacto-contenedor {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 100px;

    align-items: start;
}



/* INFORMACIÓN */

.contacto-info {
    position: sticky;

    top: 50px;
}


.contacto-info .etiqueta {
    color: #637d91;

    margin-bottom: 20px;
}


.contacto-info h2 {
    max-width: 520px;

    font-size: 48px;
    line-height: 1.12;

    letter-spacing: -1px;

    margin-bottom: 25px;
}


.contacto-introduccion {
    max-width: 530px;

    color: #62727f;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 55px;
}



/* BENEFICIOS */

.contacto-beneficios {
    display: flex;

    flex-direction: column;

    gap: 28px;
}


.contacto-beneficio {
    display: flex;

    gap: 20px;
}


.contacto-beneficio > span {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #e5edf1;

    color: #637d91;

    font-size: 11px;
    font-weight: 700;
}


.contacto-beneficio h3 {
    font-size: 16px;

    margin-bottom: 6px;
}


.contacto-beneficio p {
    max-width: 400px;

    color: #70808b;

    font-size: 14px;
    line-height: 1.6;
}



/* FORMULARIO */

.formulario-contenedor {
    background-color: white;

    border: 1px solid #dce4e9;
    border-radius: 14px;

    padding: 45px;

    box-shadow: 0 15px 45px rgba(7, 24, 39, 0.06);
}


.form-fila {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.campo {
    display: flex;

    flex-direction: column;

    margin-bottom: 22px;
}


.campo label {
    font-size: 13px;
    font-weight: 600;

    color: #253b49;

    margin-bottom: 9px;
}


.campo input,
.campo select,
.campo textarea {
    width: 100%;

    font-family: 'Inter', sans-serif;

    font-size: 14px;

    color: #071827;

    background-color: #f8fafb;

    border: 1px solid #dce4e9;
    border-radius: 7px;

    padding: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}


.campo textarea {
    resize: vertical;
}


.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    background-color: white;

    border-color: #718b9c;

    box-shadow: 0 0 0 3px rgba(99, 125, 145, 0.1);
}


.campo input::placeholder,
.campo textarea::placeholder {
    color: #9aa7b0;
}



/* BOTÓN */

.boton-enviar {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: #071827;
    color: white;

    border: none;
    border-radius: 7px;

    padding: 17px 20px;

    font-family: 'Inter', sans-serif;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}


.boton-enviar:hover {
    background-color: #102b40;

    transform: translateY(-2px);
}


.boton-enviar span {
    font-size: 20px;
}


.form-aviso {
    color: #89969f;

    font-size: 11px;
    line-height: 1.6;

    margin-top: 18px;
}

/* =========================
   FOOTER
========================= */

.footer {
    background-color: #04111c;
    color: white;

    padding: 80px 8% 30px;
}


.footer-principal {
    display: flex;
    justify-content: space-between;

    gap: 80px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* MARCA */

.footer-marca {
    max-width: 420px;
}


.footer-logo {
    display: inline-block;

    color: white;

    text-decoration: none;

    font-size: 30px;
    font-weight: 700;

    letter-spacing: -0.5px;

    margin-bottom: 20px;
}


.footer-marca p {
    color: #c1ced7;

    font-size: 17px;

    margin-bottom: 10px;
}


.footer-marca > span {
    color: #718797;

    font-size: 13px;
}



/* NAVEGACIÓN */

.footer-navegacion {
    display: flex;

    gap: 100px;
}


.footer-columna {
    display: flex;
    flex-direction: column;

    min-width: 160px;
}


.footer-columna h3 {
    color: #8fa8bc;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 22px;
}


.footer-columna a {
    color: #d5dfe5;

    text-decoration: none;

    font-size: 14px;

    margin-bottom: 13px;

    transition: color 0.2s ease;
}


.footer-columna a:hover {
    color: white;
}


.footer-columna span {
    max-width: 220px;

    color: #718797;

    font-size: 13px;
    line-height: 1.6;
}



/* PARTE INFERIOR */

.footer-inferior {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 28px;
}


.footer-inferior p {
    color: #718797;

    font-size: 12px;
}


.footer-legal {
    display: flex;

    gap: 30px;
}


.footer-legal span {
    color: #718797;

    font-size: 12px;
}

/* =========================
   MENÚ MÓVIL
========================= */

.logo {
    color: white;
    text-decoration: none;
}


.menu-cotizar {
    display: none;
}


.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;

    cursor: pointer;
}


.menu-toggle span {
    width: 19px;
    height: 2px;

    background-color: white;

    border-radius: 2px;
}

/* ========================================
   RESPONSIVE - TABLETS Y PANTALLAS PEQUEÑAS
======================================== */

@media (max-width: 900px) {

    /* NAVEGACIÓN */

    .navbar {
        position: relative;

        height: 75px;

        padding: 0 6%;
    }


    .boton-cotizar {
        display: none;
    }


    .menu-toggle {
        display: flex;
    }


    .menu {
        display: none;

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        flex-direction: column;

        gap: 0;

        background-color: #071827;

        padding: 20px 6% 25px;

        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        z-index: 1000;
    }


    .menu.activo {
        display: flex;
    }


    .menu a {
        padding: 15px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }


    .menu-cotizar {
        display: block;

        margin-top: 15px;

        padding: 14px 18px !important;

        text-align: center;

        background-color: white;
        color: #071827 !important;

        border-radius: 6px;

        border-bottom: none !important;
    }



    /* HERO */

    .hero {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        gap: 55px;

        padding: 80px 6%;
    }


    .hero-contenido {
        max-width: 700px;
    }


    .hero h1 {
        font-size: 48px;
    }


    .hero-panel {
        width: 100%;
        max-width: 620px;
    }


    .hero-confianza {
        flex-wrap: wrap;

        gap: 15px 25px;
    }



    /* DIFERENCIADORES */

    .diferenciadores {
        padding: 90px 6%;
    }


    .tarjetas-diferenciadores {
        grid-template-columns: repeat(2, 1fr);
    }



    /* PROCESO */

    .proceso {
        padding: 90px 6%;
    }


    .proceso-pasos {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 35px;
    }


    .proceso-linea {
        display: none;
    }


    .proceso-paso p {
        max-width: 300px;
    }



    /* SERVICIOS */

    .servicios {
        padding: 90px 6%;
    }


    .servicios-encabezado {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .servicios-grid {
        grid-template-columns: 1fr;
    }


    .servicio-card {
        min-height: auto;
    }



    /* SECTORES */

    .sectores {
        padding: 90px 6%;
    }


    .sectores-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    /* NOSOTROS */

    .nosotros {
        padding: 90px 6%;
    }


    .nosotros-principal {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .mision-vision {
        grid-template-columns: 1fr;
    }


    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .valor,
    .valor:nth-child(3n + 2),
    .valor:nth-child(3n + 3) {
        padding: 30px 20px;

        border-left: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }



    /* CONTACTO */

    .contacto {
        padding: 90px 6%;
    }


    .contacto-contenedor {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .contacto-info {
        position: static;
    }



    /* FOOTER */

    .footer {
        padding: 70px 6% 30px;
    }


    .footer-principal {
        flex-direction: column;

        gap: 55px;
    }


    .footer-navegacion {
        gap: 70px;
    }

}

/* ========================================
   AJUSTES FINALES PARA CELULAR
======================================== */

@media (max-width: 600px) {

.logo img {
    height: 36px;
}

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* HEADER */

    .navbar {
        padding-left: 7%;
        padding-right: 7%;
    }

    .logo {
        font-size: 25px;
    }


    /* HERO */

    .hero {
        width: 100%;

        padding-left: 7%;
        padding-right: 7%;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.08;

        letter-spacing: -1px;
    }

    .hero-texto {
        font-size: 16px;
        line-height: 1.75;
    }


    /* BOTONES EN VERTICAL */

    .hero-botones {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 12px;
    }

    .boton-principal,
    .boton-secundario {
        width: 100%;

        display: block;

        text-align: center;

        padding: 16px 20px;
    }


    /* INDICADORES DE CONFIANZA */

    .hero-confianza {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 12px;
    }


    /* PANEL */

    .hero-panel {
        width: 100%;
        max-width: 100%;

        padding: 22px;
    }


    /* TÍTULOS DE SECCIONES */

    .seccion-encabezado h2,
    .proceso-encabezado h2,
    .servicios-encabezado h2,
    .sectores-encabezado h2,
    .nosotros-texto h2,
    .contacto-info h2 {
        font-size: 32px;

        line-height: 1.15;

        letter-spacing: -0.7px;
    }


    /* SERVICIOS */

    .servicios {
        padding-left: 7%;
        padding-right: 7%;
    }

    .servicios-grid {
        width: 100%;
    }

    .servicio-card {
        width: 100%;

        padding: 26px;

        min-height: auto;
    }

    .servicio-superior {
        margin-bottom: 35px;
    }

    .servicio-card h3 {
        font-size: 23px;
    }

    .servicio-descripcion {
        min-height: auto;

        margin-bottom: 10px;
    }


    /* TODAS LAS SECCIONES */

    .diferenciadores,
    .proceso,
    .sectores,
    .nosotros,
    .contacto {
        width: 100%;

        padding-left: 7%;
        padding-right: 7%;
    }


    /* FORMULARIO */

    .formulario-contenedor {
        width: 100%;

        padding: 25px 20px;
    }

}

.configura-proyecto {
    grid-template-columns: 1fr;

    gap: 35px;

    margin-top: 45px;

    padding: 25px;
}


.configura-texto h3 {
    font-size: 24px;
}


.opciones-proyecto {
    gap: 9px;
}


.opciones-proyecto span {
    padding: 10px 13px;

    font-size: 12px;
}


.servicios-nota {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;
}

/* ========================================
   TARJETAS COMPACTAS EN CELULAR
======================================== */

@media (max-width: 600px) {

    /* POR QUÉ CIFRADOC */

    .tarjetas-diferenciadores {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .tarjeta {
        min-height: auto;
        padding: 22px;

        display: grid;
        grid-template-columns: 48px 1fr;
        column-gap: 16px;
        align-items: start;
    }

    .tarjeta-numero {
        width: 42px;
        height: 42px;

        margin-bottom: 0;

        grid-row: 1 / 3;
    }

    .tarjeta h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .tarjeta p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* SECTORES */

    .sectores-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .sector-card {
        min-height: auto;
        padding: 22px;
    }

    .sector-codigo {
        margin-bottom: 18px;
    }

    .sector-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .sector-card p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* MISIÓN Y VISIÓN */

    .mision-vision {
        gap: 14px;
    }

    .mv-card {
        padding: 24px;
    }

    .mv-card > span {
        margin-bottom: 20px;
    }

    .mv-card h3 {
        font-size: 21px;
        margin-bottom: 12px;
    }


    /* VALORES */

    .valores-grid {
        grid-template-columns: 1fr !important;
    }

    .valor,
    .valor:nth-child(3n + 2),
    .valor:nth-child(3n + 3) {
        padding: 24px 0;
    }

    .valor > span {
        margin-bottom: 15px;
    }

    .valor h3 {
        margin-bottom: 7px;
    }


    /* SERVICIOS */

    .servicios-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .servicio-card {
        min-height: auto;
        padding: 24px;
    }

    .servicio-superior {
        margin-bottom: 28px;
    }

    .servicio-descripcion {
        min-height: auto;
        margin-bottom: 5px;
    }

    .servicio-incluye {
        margin: 20px 0 25px;
    }

    .servicio-incluye li {
        padding: 9px 0;
    }

}
.proceso-paso p {
    max-width: 100%;
}
/* ========================================
   FOOTER COMPACTO EN MÓVIL
======================================== */

@media (max-width: 768px) {

    .footer {
        width: 100%;
        overflow: hidden;

        padding: 65px 7% 30px;
    }


    .footer-principal {
        width: 100%;

        flex-direction: column;

        gap: 50px;

        padding-bottom: 45px;
    }


    /* MARCA */

    .footer-marca {
        width: 100%;
        max-width: 100%;
    }


    .footer-logo {
        font-size: 30px;
    }


    .footer-marca p {
        font-size: 17px;
        line-height: 1.5;
    }


    .footer-marca > span {
        display: block;

        max-width: 100%;

        font-size: 13px;
        line-height: 1.6;
    }


    /* COLUMNAS */

    .footer-navegacion {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }


    .footer-columna {
        min-width: 0;
        width: 100%;
    }


    .footer-columna span {
        max-width: 100%;

        word-break: normal;
        overflow-wrap: break-word;
    }


    /* PARTE INFERIOR */

    .footer-inferior {
        width: 100%;

        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        padding-top: 25px;
    }


    .footer-inferior p {
        max-width: 100%;

        line-height: 1.6;
    }


    .footer-legal {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 10px;
    }


    .footer-legal span {
        display: block;

        width: 100%;

        line-height: 1.5;
    }

}

.proceso-paso p {
    text-align: left;
    hyphens: none;
}

/* =========================
   MENSAJE DEL FORMULARIO
========================= */

.form-mensaje {
    margin-top: 20px;
}


.mensaje-exito {
    padding: 18px;

    background-color: #eef7f2;

    border: 1px solid #cfe4d8;
    border-radius: 7px;

    color: #244c38;
}


.mensaje-exito strong {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;
}


.mensaje-exito p {
    font-size: 13px;
    line-height: 1.6;
}


.mensaje-error {
    padding: 18px;

    background-color: #fff4f3;

    border: 1px solid #edd1ce;
    border-radius: 7px;

    color: #743b36;
}


.mensaje-error strong {
    display: block;

    margin-bottom: 8px;
}


.mensaje-error p {
    font-size: 13px;
    line-height: 1.6;
}


.boton-enviar:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* =========================
   WHATSAPP FLOTANTE
========================= */

.whatsapp-flotante {
    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 2000;

    display: flex;
    align-items: center;

    gap: 10px;

    background-color: #ffffff;
    color: #071827;

    padding: 10px 17px 10px 10px;

    border: 1px solid rgba(7, 24, 39, 0.12);
    border-radius: 50px;

    box-shadow: 0 10px 35px rgba(7, 24, 39, 0.18);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.whatsapp-flotante:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 40px rgba(7, 24, 39, 0.22);
}


.whatsapp-icono {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #9bc7b2;
    color: #071827;

    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 600px) {

    .whatsapp-flotante {
        right: 18px;
        bottom: 18px;

        padding: 9px;
    }

    .whatsapp-texto {
        display: none;
    }

    .whatsapp-icono {
        width: 40px;
        height: 40px;
    }

}

/* ========================================
   PÁGINAS LEGALES
======================================== */

.pagina-legal {
    background-color: #f5f7f9;

    color: #071827;
}


.legal-navbar {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 8%;

    background-color: #071827;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.legal-volver {
    color: #b8c7d1;

    text-decoration: none;

    font-size: 14px;

    transition: color 0.2s ease;
}


.legal-volver:hover {
    color: white;
}


/* CONTENIDO */

.legal-main {
    padding: 100px 8%;
}


.legal-contenido {
    max-width: 850px;

    margin: 0 auto;
}


.legal-etiqueta {
    color: #637d91;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 22px;
}


.legal-contenido > h1 {
    font-size: 52px;

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 15px;
}


.legal-actualizacion {
    color: #80909b;

    font-size: 13px;

    margin-bottom: 70px;
}


/* SECCIONES */

.legal-seccion {
    padding: 35px 0;

    border-top: 1px solid #d9e1e6;
}


.legal-seccion h2 {
    font-size: 21px;

    margin-bottom: 18px;
}


.legal-seccion p {
    color: #526572;

    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 16px;
}


.legal-seccion ul {
    padding-left: 22px;

    margin: 18px 0 22px;
}


.legal-seccion li {
    color: #526572;

    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 8px;
}


.legal-seccion strong {
    color: #071827;
}


/* FOOTER */

.legal-footer {
    padding: 30px 8%;

    background-color: #04111c;

    color: #718797;

    font-size: 12px;
}


/* MÓVIL */

@media (max-width: 600px) {

    .legal-navbar {
        height: 70px;

        padding: 0 7%;
    }


    .legal-main {
        padding: 70px 7%;
    }


    .legal-contenido > h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    .legal-actualizacion {
        margin-bottom: 50px;
    }


    .legal-seccion {
        padding: 28px 0;
    }


    .legal-seccion h2 {
        font-size: 19px;
    }


    .legal-footer {
        padding: 28px 7%;
    }

}

.footer-legal a {
    color: #718797;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-legal a:hover {
    color: white;
}

.form-aviso a {
    color: #536e80;

    font-weight: 600;

    text-decoration: underline;
}


.form-aviso a:hover {
    color: #071827;
}
/* ========================================
   CONFIGURACIÓN DEL PROYECTO
======================================== */

.configura-proyecto {
    margin-top: 70px;

    padding: 45px;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    background-color: #ffffff;

    border: 1px solid #dce4e9;
    border-radius: 14px;
}


.configura-texto .etiqueta {
    color: #637d91;

    margin-bottom: 18px;
}


.configura-texto h3 {
    font-size: 28px;

    line-height: 1.25;

    letter-spacing: -0.5px;

    margin-bottom: 18px;
}


.configura-texto > p:last-child {
    color: #657581;

    font-size: 15px;
    line-height: 1.7;
}



/* OPCIONES */

.opciones-proyecto {
    display: flex;

    flex-wrap: wrap;

    align-content: flex-start;

    gap: 12px;
}


.opciones-proyecto span {
    display: inline-flex;

    align-items: center;

    padding: 12px 16px;

    background-color: #f3f6f8;

    border: 1px solid #dce4e9;
    border-radius: 50px;

    color: #405562;

    font-size: 13px;
    font-weight: 500;
}



/* NOTA DE COTIZACIÓN */

.servicios-nota {
    margin-top: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 25px 30px;

    background-color: #eaf0f3;

    border-radius: 10px;
}


.servicios-nota p {
    max-width: 850px;

    color: #526572;

    font-size: 14px;
    line-height: 1.7;
}


.servicios-nota strong {
    color: #071827;
}


.servicios-nota a {
    flex-shrink: 0;

    color: #071827;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
}


.servicios-nota a:hover {
    opacity: 0.65;
}

/* ========================================
   CONFIGURA TU PROYECTO - RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .configura-proyecto {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr !important;

        gap: 35px;

        padding: 32px;

        overflow: hidden;
    }


    .configura-texto {
        width: 100%;
        min-width: 0;
    }


    .configura-texto h3 {
        font-size: 30px;
        line-height: 1.15;
    }


    .opciones-proyecto {
        width: 100%;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .opciones-proyecto span {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;

        padding: 12px 10px;

        border-radius: 10px;

        white-space: normal;
    }

}

@media (max-width: 480px) {

    .configura-proyecto {
        padding: 24px 20px;
    }


    .configura-texto h3 {
        font-size: 27px;
    }


    .opciones-proyecto {
        grid-template-columns: 1fr;
    }


    .opciones-proyecto span {
        justify-content: flex-start;

        text-align: left;

        padding: 13px 15px;
    }

}