/* ═══════════════════════════════════════════════════
   RLH Ingenieros — Estilos Globales
   Versión: 2026
═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --navy: #0d2750;
    --navy2: #0a1f40;
    --blue: #1a4a8a;
    --yellow: #f5c800;
    --yellow2: #d4a900;
    --white: #ffffff;
    --gray50: #f4f6fb;
    --gray100: #eaf0f8;
    --gray200: #d5dfe8;
    --gray400: #8fa3bf;
    --gray500: #5a7294;
    --text: #0d2750;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    padding-top: 88px;
}

@media (max-width:991.98px) {
    body {
        padding-top: 56px;
    }
}

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.cursor-pointer {
    cursor: pointer;
}
.top-bar {
    background: var(--navy2);
    padding: .5rem 0;
    font-size: .8rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    transition: transform .3s;
}

.top-bar a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: color .2s;
}

.top-bar a:hover {
    color: var(--yellow);
}

.top-bar i {
    color: var(--yellow);
    font-size: .72rem;
}

.pipe {
    color: rgba(255, 255, 255, .1);
}

@media (max-width:991.98px) {
    .top-bar {
        display: none;
    }
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
nav.rlh-nav {
    background: rgba(255, 255, 255, .98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gray100);
    padding: 0;
    position: fixed !important;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1041;
    transition: all .3s;
}

nav.rlh-nav.shrunk {
    top: 0;
    box-shadow: 0 2px 20px rgba(13, 39, 80, .12);
}

@media (max-width:991.98px) {
    nav.rlh-nav {
        top: 0 !important;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.02em;
    line-height: 1.1;
}

.logo-sub {
    font-size: .8rem;
    color: var(--gray500);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.nav-link-custom {
    color: #4a6080 !important;
    font-weight: 500;
    font-size: 1rem;
    padding: .5rem 1rem !important;
    text-decoration: none;
    position: relative;
    transition: color .2s;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: all .25s;
    transform: translateX(-50%);
}

.nav-link-custom:hover {
    color: var(--navy) !important;
}

.nav-link-custom.active {
    color: var(--navy) !important;
    font-weight: 700;
}

.nav-link-custom.active::after {
    width: 60%;
}

.btn-cta-nav {
    background: var(--navy);
    color: var(--white) !important;
    font-weight: 700;
    font-size: .875rem;
    padding: .5rem 1.5rem !important;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border-bottom: 2px solid var(--yellow);
}

.btn-cta-nav::after {
    display: none !important;
}

.btn-cta-nav:hover {
    background: var(--blue);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 1px solid var(--gray100);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--gray500);
}

.bienvenida-rlh{
    display: block;
}
/* ═══════════════════════════════════════════
   SUBMENÚ DROPDOWN — Servicios
   ═══════════════════════════════════════════ */

@media (min-width:992px) {
    .rlh-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        animation: ddFade .18s ease;
    }
}

@keyframes ddFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rlh-nav .dropdown-menu {
    background: #fff;
    border: none;
    border-top: 3px solid var(--yellow);
    border-radius: 0;
    box-shadow: 0 12px 35px rgba(13, 39, 80, .15);
    padding: .4rem 0;
    min-width: 220px;
    margin-top: 0 !important;
}

.rlh-nav .dropdown-item {
    color: var(--navy);
    font-size: .92rem;
    font-weight: 500;
    padding: .65rem 1.4rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    border-left: 3px solid transparent;
    transition: all .18s;
}

.rlh-nav .dropdown-item i {
    color: var(--yellow);
    width: 18px;
    font-size: .85rem;
}

.rlh-nav .dropdown-item:hover {
    background: var(--gray50);
    border-left-color: var(--yellow);
    padding-left: 1.7rem;
    color: var(--navy);
}

/* Flecha del toggle */
.rlh-nav .dropdown-toggle::after {
    border-top-color: var(--yellow);
    vertical-align: .12em;
    margin-left: 0px !important;
    transition: transform .2s;
    border: 0px !important;
}

@media (max-width:991.98px) {
    .rlh-nav .dropdown-menu {
        border-top: none;
        border-left: 3px solid var(--yellow);
        box-shadow: none;
        background: var(--gray50);
        margin-left: .75rem;
        padding: .2rem 0;
    }

    .rlh-nav .dropdown-item {
        padding: .55rem 1.1rem;
        font-size: .875rem;
    }
}

.supply-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.supply-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--yellow) 0%, rgba(245, 200, 0, .15) 100%);
}

.supply-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    position: relative;
}

.supply-step:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.step-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .08);
    border: 2px solid rgba(245, 200, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--yellow);
    position: relative;
    z-index: 1;
    transition: all .3s;
}

.supply-step:hover .step-num {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
    transform: scale(1.08);
}

.step-body {
    flex: 1;
    padding-top: .35rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .35rem;
    letter-spacing: -.01em;
}

.step-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.65;
}

.step-tag {
    display: inline-block;
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--yellow);
    background: rgba(245, 200, 0, .1);
    padding: .2rem .6rem;
    margin-bottom: .4rem;
}

.step-promise {
    margin-top: .5rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .3);
}

.step-promise i {
    color: var(--yellow);
    font-size: .65rem;
}

@media (max-width:767px) {
    .supply-steps::before {
        left: 22px;
    }

    .step-num {
        width: 46px;
        height: 46px;
        font-size: .9rem;
    }
}

/* ══════════════════════════════════════
   HERO — NAVY
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(10, 31, 64, .88) 0%,
            rgba(13, 39, 80, .75) 55%,
            rgba(10, 31, 64, .55) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
/* Todos los contenidos encima de la capa */
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 7rem;
    padding-bottom: 5rem;
}

.hero::before {
    z-index: 3 !important;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255, 255, 255, .25);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    animation: bounceY 2s ease-in-out infinite;
}

.hero-scroll-hint i {
    font-size: .9rem;
    color: var(--yellow);
    opacity: .6;
}

@keyframes bounceY {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* Móvil */
@media (max-width:767px) {
    .hero .container {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}


.hero-h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.04em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-h1 .muted {
    display: block;
    color: rgba(255, 255, 255);
    font-weight: 300;
    font-size: .62em;
    letter-spacing: .01em;
}

.hero-h1 .accent {
    color: var(--yellow);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .58);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 2.25rem;
}

.hero-desc strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: .875rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* ── BOTONES GENERALES ── */
.btn-y {
    background: var(--yellow);
    color: var(--navy);
    font-weight: 800;
    font-size: .9375rem;
    padding: .8rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    transition: all .2s;
    box-shadow: 0 4px 18px rgba(245, 200, 0, .25);
}

.btn-y:hover {
    background: var(--yellow2);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 200, 0, .4);
}

.btn-ghost-w {
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
    font-size: .9375rem;
    padding: .8rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 1px solid rgba(255, 255, 255, .22);
    transition: all .2s;
}

.btn-ghost-w:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .05);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
    font-size: .9375rem;
    padding: .85rem 2.25rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    box-shadow: 0 4px 20px rgba(13, 39, 80, .3);
    transition: all .2s;
}

.btn-navy:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-navy {
    color: var(--navy);
    font-weight: 700;
    font-size: .9375rem;
    padding: .85rem 2.25rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 2px solid var(--navy);
    transition: all .2s;
}

.btn-outline-navy:hover {
    background: rgba(13, 39, 80, .08);
    color: var(--navy);
}

.stats-hero {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
    gap: 0;
}

.sh {
    flex: 1;
    text-align: center;
    padding: 0 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.sh:first-child {
    padding-left: 0;
    text-align: left;
}

.sh:last-child {
    border-right: none;
}

.sh-n {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -.04em;
    display: block;
}

.sh-n em {
    color: var(--yellow);
    font-style: normal;
}

.sh-l {
    font-size: .67rem;
    color: rgba(255, 255, 255, .32);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .4rem;
    display: block;
}

.hero-panel {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-left: 3px solid var(--yellow);
}

.panel-head {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: .68rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: .13em;
    text-transform: uppercase;
}

.prow {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: .7rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: background .2s;
}

.prow:last-child {
    border-bottom: none;
}

.prow:hover {
    background: rgba(245, 200, 0, .05);
}

.pico {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .09);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pico i {
    font-size: .8rem;
    color: var(--yellow);
}

.ptxt {
    font-size: .875rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    flex: 1;
}

.pbadge {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .06);
    padding: .2rem .5rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECCIONES — Fondos alternos
══════════════════════════════════════ */
.sec {
    padding: 45px 0;
}

.sec-white {
    background: var(--white);
}

.sec-navy {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.sec-navy::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, .018) 39px, rgba(255, 255, 255, .018) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, .018) 39px, rgba(255, 255, 255, .018) 40px);
    background-size: 40px 40px;
    pointer-events: none;
}

.sec-navy>.container {
    position: relative;
    z-index: 1;
}

.sec-tag {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--yellow2);
    display: inline-block;
    margin-bottom: .5rem;
}

.sec-h2 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.03em;
    margin-bottom: .75rem;
}

.sec-line {
    width: 44px;
    height: 3px;
    background: var(--yellow);
    margin-bottom: 1.5rem;
}

.sec-sub {
    font-size: .9375rem;
    color: var(--gray500);
    line-height: 1.7;
    max-width: 570px;
}

.on-dark .sec-tag {
    color: var(--yellow);
}

.on-dark .sec-h2 {
    color: var(--white);
}

.on-dark .sec-sub {
    color: rgba(255, 255, 255, .5);
}

/* ══════════════════════════════════════
   PAGE HEADER (hero secundario)
══════════════════════════════════════ */
.page-header {    
    padding: 4rem 0 3.5rem;
    position: relative;    
}

.nosotros{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Nosotros.webp") center / cover no-repeat fixed;       
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}

.contacto{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Contactanos.webp") center / cover no-repeat fixed;     
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}
/*Servicios*/
.ejecucion{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Servicios_Ejecucion.webp") center / cover no-repeat fixed;     
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}
.ingenieria{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Servicios_Ingenieria.webp") center / cover no-repeat fixed;     
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}
.mantenimiento{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Servicios_Mantenimiento.webp") center / cover no-repeat fixed;     
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}
.redes{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Servicios_Redes.webp") center / cover no-repeat fixed;     
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}
/*Productos*/
.tableros{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Producto_Tablero.webp") center / cover no-repeat fixed;     
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}
.instrumentacion{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Producto_Instrumentacion.webp") center / cover no-repeat fixed;     
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}
.conductores{   
    background: linear-gradient(120deg, rgba(10, 31, 64, .88) 0%, rgba(13, 39, 80, .75) 55%, rgba(10, 31, 64, .55) 100%), url("../img/Producto_Cables.webp") center / cover no-repeat fixed;     
    @media (max-width: 767px) {
        background-position: center;
        background-size: cover;
        background-attachment: local;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--yellow) 20%, var(--yellow) 80%, transparent);
}

.page-header-glow {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 0, .06) 0%, transparent 65%);
    pointer-events: none;
}

.page-header .eyebrow {
    margin-bottom: 1.25rem;
      color: var(--white);
}

.page-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.04em;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.page-header h1 em {
    color: var(--yellow);
    font-style: normal;
}

.page-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .55);
    max-width: 580px;
    line-height: 1.75;
}

.breadcrumb-rlh {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    margin-bottom: 1.5rem;
}

.breadcrumb-rlh a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb-rlh a:hover {
    color: var(--yellow);
}

.breadcrumb-rlh span {
    color: rgba(255, 255, 255, .2);
}

.breadcrumb-rlh .current {
    color: var(--yellow);
    font-weight: 600;
}

/* ══════════════════════════════════════
   CARDS — PILARES
══════════════════════════════════════ */
.pillar-card {
    text-align: center;
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--gray100);
    background: var(--white);
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.pillar-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 10px 35px rgba(13, 39, 80, .1);
    transform: translateY(-5px);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.p-ico {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--gray50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-ico i {
    font-size: 1.5rem;
    color: var(--navy);
}

.pillar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
}

.pillar-card p {
    font-size: .875rem;
    color: var(--gray500);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════
   CARDS — SERVICIOS (sobre navy)
══════════════════════════════════════ */
.srv-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--yellow);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s;
}

.srv-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(245, 200, 0, .35);
    transform: translateY(-3px);
}

.srv-card:hover::before {
    transform: scaleY(1);
}

.s-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-ico i {
    font-size: 1.1rem;
    color: var(--yellow);
}

.srv-card h5 {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .35rem;
}

.srv-card p {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin: 0;
}

.srv-big-card {
    background: var(--white);
    border: 1px solid var(--gray100);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.srv-big-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 6px 24px rgba(13, 39, 80, .09);
}

.srv-big-card .card-top {
    background: var(--navy);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.srv-big-card .card-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.srv-big-card.open .card-top::after {
    transform: scaleX(1);
}

.srv-big-card .card-ico {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-big-card .card-ico i {
    font-size: 1.1rem;
    color: var(--yellow);
}

.srv-big-card .card-title {
    font-size: .95rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.srv-big-card .card-tag {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .35);
    margin-top: .2rem;
}

.card-arrow {
    margin-left: auto;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, .07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-arrow i {
    font-size: .65rem;
    color: var(--yellow);
    transition: transform .3s;
}

.srv-big-card.open .card-arrow i {
    transform: rotate(180deg);
}

.srv-big-card .card-body {
    display: none;
    padding: 1.25rem;
    border-top: 1px solid var(--gray100);
}

.srv-big-card.open .card-body {
    display: block;
}

.srv-big-card .card-desc {
    font-size: .875rem;
    color: var(--gray500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.srv-big-card ul.srv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.srv-big-card ul.srv-list li {
    font-size: .85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: .6rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--gray100);
}

.srv-big-card ul.srv-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.srv-big-card ul.srv-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.ftab {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray500);
    border: 1px solid var(--gray200);
    background: var(--white);
    padding: .45rem 1.1rem;
    cursor: pointer;
    transition: all .2s;
}

.ftab:hover {
    color: var(--navy);
    border-color: var(--navy);
}

.ftab.active {
    color: var(--navy);
    background: var(--yellow);
    border-color: var(--yellow);
}

/* ══════════════════════════════════════
   HSE CARDS
══════════════════════════════════════ */
.hse-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray100);
    background: var(--white);
    transition: all .3s;
    height: 100%;
}

.hse-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 20px rgba(13, 39, 80, .08);
}

.h-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--gray50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-ico i {
    font-size: 1.1rem;
    color: var(--navy);
}

.hse-card h6 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .3rem;
}

.hse-card p {
    font-size: .8125rem;
    color: var(--gray500);
    margin: 0;
    line-height: 1.55;
}

/* ══════════════════════════════════════
   MARCAS
══════════════════════════════════════ */
.brand {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: .5rem 1.25rem;
    transition: all .25s;
    cursor: default;
}

.brand:hover {
    color: var(--yellow);
    border-color: rgba(245, 200, 0, .4);
    background: rgba(245, 200, 0, .05);
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
    background: var(--yellow);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0, 0, 0, .03) 8px, rgba(0, 0, 0, .03) 9px);
}

.cta-band .container {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.025em;
    margin-bottom: .6rem;
}

.cta-band p {
    color: rgba(13, 39, 80, .65);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer.rlh-footer {
    background: var(--navy2);
    border-top: 3px solid var(--yellow);
    padding: 3rem 0 1.25rem;
}

.ft-title {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1rem;
}

.ft-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-nav li {
    margin-bottom: .5rem;
}

.ft-nav a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .875rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: color .2s;
}

.ft-nav a i {
    font-size: .6rem;
    color: var(--yellow);
    opacity: .5;
}

.ft-nav a:hover {
    color: var(--yellow);
}

.ft-cl {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-cl li {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
    font-size: .875rem;
    align-items: flex-start;
}

.ft-cl i {
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: .2rem;
    font-size: .8rem;
}

.ft-cl a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
}

.ft-cl a:hover {
    color: var(--yellow);
}

.ft-cl span {
    color: rgba(255, 255, 255, .4);
}

.ft-soc {
    display: flex;
    gap: .5rem;
    margin-top: 1.25rem;
}

.ft-soc a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    font-size: .85rem;
    transition: all .2s;
}

.ft-soc a:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .25);
}

/* ══════════════════════════════════════
   LINK "VER MÁS"
══════════════════════════════════════ */
.link-more {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--yellow);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(245, 200, 0, .35);
    padding-bottom: .1rem;
    transition: gap .2s;
}

.link-more:hover {
    gap: .7rem;
    color: var(--yellow2);
}

/* ══════════════════════════════════════
   FLOAT BUTTONS
══════════════════════════════════════ */
#scrollTop {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 42px;
    height: 42px;
    background: var(--navy);
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(13, 39, 80, .3);
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.wa {
    position: fixed;
    right: 1.75rem;
    bottom: 5.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1050;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
    transition: all .3s;
}

.wa:hover {
    transform: translateY(-3px) scale(1.06);
    color: #fff;
}

/* ═══════════════════════════════════════════
   SUBMENÚ NOSOTROS
   ═══════════════════════════════════════════ */

.about-intro-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gray50);
    border: 1px solid var(--gray100);
    color: var(--navy);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: .35rem 1rem;
    margin-bottom: 1.5rem;
}

.about-intro-label i {
    color: var(--yellow2);
}

.stat-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid var(--gray100);
    margin-top: 2rem;
}

.stat-inline-item {
    flex: 1;
    min-width: 120px;
    padding: 1.1rem 1.25rem;
    border-right: 1px solid var(--gray100);
    text-align: center;
}

.stat-inline-item:last-child {
    border-right: none;
}

.stat-inline-n {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -.04em;
    line-height: 1;
    display: block;
}

.stat-inline-n em {
    color: var(--yellow2);
    font-style: normal;
}

.stat-inline-l {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--gray400);
    margin-top: .3rem;
    display: block;
}

.person-section{
    display: block;
}

.mvo-card {
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid var(--gray100);
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.mvo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.mvo-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 10px 35px rgba(13, 39, 80, .1);
    transform: translateY(-4px);
}

.mvo-card:hover::before {
    transform: scaleX(1);
}

.mvo-num {
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--yellow2);
    margin-bottom: 1rem;
    display: block;
}

.mvo-ico {
    width: 52px;
    height: 52px;
    background: var(--gray50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.mvo-ico i {
    font-size: 1.35rem;
    color: var(--navy);
}

.mvo-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .75rem;
}

.mvo-card p {
    font-size: .9rem;
    color: var(--gray500);
    line-height: 1.75;
    margin: 0;
}

.prop-card {
    padding: 1.75rem;
    border: 1px solid var(--gray100);
    background: var(--white);
    height: 100%;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.prop-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 8px 30px rgba(13, 39, 80, .09);
    transform: translateY(-3px);
}

.prop-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--yellow2);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -.04em;
    min-width: 48px;
    transition: color .3s;
}

.prop-card h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .4rem;
}

.prop-card p {
    font-size: .875rem;
    color: var(--gray500);
    margin: 0;
    line-height: 1.65;
}

.valor-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.valor-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.valor-item:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(245, 200, 0, .3);
}

.valor-item:hover::before {
    transform: scaleX(1);
}

.valor-ico {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-ico i {
    font-size: 1.1rem;
    color: var(--yellow);
}

.valor-item h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .3rem;
}

.valor-item p {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
    line-height: 1.6;
}

.stat-band {
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-n {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
    letter-spacing: -.05em;
}

.stat-n em {
    color: var(--yellow);
    font-style: normal;
}

.stat-l {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .35);
    margin-top: .5rem;
    display: block;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .07);
    align-self: stretch;
    margin: 1rem 0;
}

/* ══════════════════════════════════════
   SUBMENU - PRODUCTOS
══════════════════════════════════════ */
.proj-card {
    background: var(--white);
    border: 1px solid var(--gray100);
    overflow: hidden;
    height: 100%;
    transition: all .3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.proj-card:hover {
    box-shadow: 0 16px 48px rgba(13, 39, 80, .13);
    transform: translateY(-5px);
    border-color: var(--yellow);
}

.proj-card-top {
    background: var(--navy);
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.proj-card-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--yellow);
}

.proj-card-top .glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 0, .07), transparent 65%);
    pointer-events: none;
}

.proj-ico {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proj-ico i {
    font-size: 1.25rem;
    color: var(--yellow);
}

.proj-tag {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--yellow);
    margin-bottom: .25rem;
}

.proj-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -.01em;
}

.proj-sector-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .58rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    padding: .25rem .65rem;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .4);
    border: 1px solid rgba(255, 255, 255, .1);
}

.proj-body {
    padding: 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.proj-desc {
    font-size: .875rem;
    color: var(--gray500);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    flex: 1;
}

.proj-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.25rem;
}

.ptag {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--navy);
    background: var(--gray50);
    border: 1px solid var(--gray100);
    padding: .2rem .65rem;
}

.proj-footer {
    border-top: 1px solid var(--gray100);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.proj-sector {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gray400);
}

.proj-sector i {
    color: var(--yellow2);
    font-size: .65rem;
}

.proj-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: gap .2s, color .2s;
}

.proj-link:hover {
    gap: .6rem;
    color: var(--blue);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2.5rem;
}

.fbtn {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .5rem 1.25rem;
    border: 1px solid var(--gray200);
    background: var(--white);
    color: var(--gray500);
    cursor: pointer;
    transition: all .2s;
}

.fbtn:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.fbtn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.cap-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    transition: all .25s;
}

.cap-row:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(245, 200, 0, .25);
}

.cap-ico {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-ico i {
    font-size: 1rem;
    color: var(--yellow);
}

.cap-txt {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
    flex: 1;
}

.cap-badge {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .05);
    padding: .2rem .55rem;
    border: 1px solid rgba(255, 255, 255, .07);
    flex-shrink: 0;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    position: relative;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--gray100);
}

.step-card:last-child::after {
    display: none;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: .95rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid var(--yellow);
}

.step-card h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.step-card p {
    font-size: .8125rem;
    color: var(--gray500);
    margin: 0;
    line-height: 1.65;
}

.proj-item {
    transition: opacity .3s, transform .3s;
}

.proj-item.hidden {
    display: none;
}

/* ══════════════════════════════════════
   SUBMENU - CONTACTO
══════════════════════════════════════ */
.form-wrap {
    background: var(--white);
    border: 1px solid var(--gray100);
    padding: 2.5rem;
}

.form-label-custom {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--navy);
    margin-bottom: .45rem;
    display: block;
}

.form-control-custom {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--gray200);
    background: var(--white);
    color: var(--text);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    border-radius: 0;
    appearance: none;
}

.form-control-custom:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13, 39, 80, .07);
}

.form-control-custom::placeholder {
    color: var(--gray400);
}

select.form-control-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238fa3bf' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.srv-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.srv-check {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .85rem;
    border: 1px solid var(--gray100);
    cursor: pointer;
    transition: all .2s;
    font-size: .82rem;
    font-weight: 500;
    color: var(--gray500);
}

.srv-check:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.srv-check input[type="checkbox"] {
    display: none;
}

.check-box {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 2px solid var(--gray200);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.check-box i {
    font-size: .55rem;
    color: var(--white);
    display: none;
}

.srv-check.checked {
    border-color: var(--yellow);
    background: rgba(245, 200, 0, .04);
    color: var(--navy);
}

.srv-check.checked .check-box {
    background: var(--navy);
    border-color: var(--navy);
}

.srv-check.checked .check-box i {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    transition: all .2s;
    border-bottom: 3px solid var(--yellow);
    font-family: 'Inter', sans-serif;
    letter-spacing: -.01em;
}

.btn-submit:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 39, 80, .2);
}

.btn-submit:active {
    transform: translateY(0);
}

.success-msg {
    display: none;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .3);
    border-left: 3px solid #22c55e;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.success-msg.show {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.success-msg i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.success-msg p {
    margin: 0;
    font-size: .9rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.55;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .03);
    transition: all .25s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(245, 200, 0, .3);
}

.cc-ico {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-ico i {
    font-size: 1rem;
    color: var(--yellow);
}

.cc-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    margin-bottom: .2rem;
}

.cc-val {
    font-size: .9rem;
    font-weight: 600;
    color: var(--white);
}

.cc-val a {
    color: var(--white);
    text-decoration: none;
    transition: color .2s;
}

.cc-val a:hover {
    color: var(--yellow);
}

.map-wrap {
    background: var(--navy2);
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
    position: relative;
}

.map-wrap iframe {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(1.05);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.guarantee-item:last-child {
    border-bottom: none;
}

.g-ico {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: rgba(245, 200, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-ico i {
    font-size: .8rem;
    color: var(--yellow);
}

.g-txt {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

.form-steps {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gray100);
}

.fstep {
    flex: 1;
    text-align: center;
    padding: .75rem .5rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--gray400);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all .2s;
}

.fstep.active {
    color: var(--navy);
    border-bottom-color: var(--yellow);
}

.fstep i {
    display: block;
    font-size: 1rem;
    margin-bottom: .3rem;
    color: var(--gray200);
}

.fstep.active i {
    color: var(--navy);
}

.quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 1rem 1.5rem;
    background: var(--gray50);
    border: 1px solid var(--gray100);
    margin-bottom: 1.5rem;
}

.qi {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--gray500);
    font-weight: 500;
}

.qi i {
    color: var(--yellow2);
    font-size: .72rem;
}
.desktop-only-open .card-body {
    display: block !important;
}

.desktop-only-open.open .card-body {
    display: none !important;
}
/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:991.98px) {
    .logo-name{
        width: 48px;
    }
    .logo-img{
        font-size: 1rem;
    }
    .logo-sub{
        font-size: .6rem;
    }
    .person-section {
        display: none;
    }
    .rlh-nav .navbar-collapse {
        background: rgba(255, 255, 255, .98);
        border-top: 1px solid #eaf0f8;
        padding: .5rem 0 1rem;
        margin: 0 -.75rem;
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .rlh-nav .nav-link-custom::after {
        display: none !important;
    }

    .rlh-nav .nav-link-custom.active {
        border-left: 3px solid #f5c800;
        padding-left: calc(1rem - 3px) !important;
        background: rgba(245, 200, 0, .06);
        border-radius: 0;
    }

    .rlh-nav .nav-item:has(.btn-cta-nav) {
        margin-top: .6rem;
        padding-top: .6rem;
        border-top: 1px solid #eaf0f8;
    }

    .rlh-nav .btn-cta-nav {
        display: inline-flex !important;
        margin-left: 0;
        width: calc(100% - 2rem);
        justify-content: center;
    }

    .rlh-nav .dropdown-menu {
        background: #f4f6fb !important;
        border-left: 3px solid #f5c800 !important;
        margin-left: 1rem !important;
    }

    .rlh-nav .dropdown-item {
        color: #0d2750 !important;
        
    }  

    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-h1 {
        font-size: 2.5rem;
    }

    .stats-hero {
        flex-wrap: wrap;
    }

    .sh {
        min-width: 50%;
        padding: 1rem;
    }

    .sh:first-child {
        text-align: center;
        padding-left: 1rem;
    }

    .sec {
        padding: 25px 0;
    }

    .quick-info{
        display: none;
    }
    .desktop-only-open .card-body {
        display: none !important;
    }
    
    .desktop-only-open.open .card-body {
        display: block !important;
    }
       
    .srv-big-card {
        margin: 0 !important; /* compensa container */
    }

    .bienvenida-rlh{
        display: none;
    }
}

@media (max-width:575.98px) {
    .hero-h1 {
        font-size: 2.1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-y,
    .btn-ghost-w {
        justify-content: center;
    }

    .sh {
        min-width: 100%;
    }

    .cta-band .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .wa {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    #scrollTop {
        bottom: 5rem;
        right: 1.5rem;
    }
}
