/* ===== TraduTec Perú — sitio en código (sin Elementor) ===== */
:root {
    --navy1: #02183E;
    --navy2: #021F4A;
    --card: #0A2148;
    --turq: #0BB1B6;
    --gold: #F5B512;
    --white: #fff;
    --muted: #C9D6F5;
    --muted2: #8FA3D6;
    --maxw: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    background: var(--navy1);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px
}

.eyebrow {
    color: var(--turq);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.eyebrow::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    background: var(--turq);
    margin-top: 8px;
    border-radius: 2px
}

.sec-title {
    text-align: center;
    margin: 0 0 34px
}

.sec-title h2 {
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px
}

.sec-title .bar {
    width: 48px;
    height: 3px;
    background: var(--turq);
    margin: 0 auto;
    border-radius: 2px
}

/* ===== Botones ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 13px 22px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-gold {
    background: var(--gold);
    color: var(--navy1)
}

.btn-gold:hover {
    box-shadow: 0 10px 26px rgba(245, 181, 18, .32);
    filter: brightness(1.03)
}

.btn-turq {
    background: var(--turq);
    color: var(--white)
}

.btn-turq:hover {
    box-shadow: 0 10px 26px rgba(11, 177, 182, .3)
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .35)
}

.btn-outline:hover {
    border-color: var(--turq);
    color: var(--turq)
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy1);
    box-shadow: 0 2px 18px rgba(0, 0, 0, .18)
}

.site-header .wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 16px
}

.site-header .logo img {
    width: 180px
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px
}

.main-nav>a,
.main-nav .has-sub>a {
    display: inline-block;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--white);
    position: relative
}

.main-nav a:hover {
    color: var(--turq)
}

.main-nav a.active {
    color: var(--gold)
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    background: var(--turq)
}

.has-sub {
    position: relative
}

.has-sub .sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: .18s
}

.has-sub:hover .sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.has-sub .sub a {
    display: block;
    padding: 13px 18px;
    color: var(--navy1);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid rgba(2, 24, 62, .08)
}

.has-sub .sub a:hover {
    background: #FFF8E0;
    color: var(--navy2);
    box-shadow: inset 4px 0 0 var(--gold)
}

.header-cta {
    margin-left: 8px
}

.nav-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    color: #fff;
    font-size: 24px;
    cursor: pointer
}

/* ===== Hero ===== */
.tt-hero {
    position: relative;
    background: var(--navy1);
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.tt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, #02183E 0%, #02183E 46%, rgba(2, 24, 62, .82) 58%, rgba(2, 24, 62, .28) 70%, rgba(2, 24, 62, .16) 100%)
}

.tt-hero .wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px
}

.hero-copy {
    max-width: 560px
}

.hero-copy h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 12px;
    max-width: 520px
}

.hero-copy h1 .accent {
    color: var(--turq)
}

.hero-sub {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 24px
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px
}

.hbadge {
    display: flex;
    gap: 9px;
    align-items: flex-start
}

.hbadge .ic {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(11, 177, 182, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turq);
    font-size: 15px
}

.hbadge b {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.25
}

.hbadge span {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.35
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* ===== Nuestra empresa (card) ===== */
.empresa {
    padding: 70px 0
}

.empresa-card {
    background: var(--card);
    border: 1px solid rgba(120, 165, 225, .14);
    border-radius: 20px;
    padding: 46px 50px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0
}

.empresa-card .col-left {
    padding-right: 44px
}

.empresa-card .col-right {
    padding-left: 44px;
    border-left: 1px solid rgba(11, 177, 182, .22)
}

.empresa-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 14px
}

.empresa-card p:last-child {
    margin-bottom: 0
}

.foot-h,
.col-right h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px
}

.flags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px
}

.flag {
    text-align: center
}

.flag img {
    width: 140px;
    max-width: 100%;
    margin: 0 auto 12px;
    border-radius: 9px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .45)
}

.flag span {
    font-size: 15px;
    font-weight: 500
}

.divider-h {
    height: 1px;
    background: rgba(11, 177, 182, .35);
    margin: 20px 0 24px
}

.valores {
    display: grid;
    grid-template-columns: 34% 1fr;
    gap: 10px;
    align-items: start
}

.valores .vt {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.3
}

.valores ul {
    list-style: none
}

.valores li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4
}

.valores li i {
    color: var(--turq);
    font-size: 17px;
    margin-top: 2px
}

/* ===== Servicios ===== */
.servicios {
    padding: 10px 0 60px
}

.serv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.serv-card {
    background: var(--navy2);
    border: 1px solid rgba(11, 177, 182, .3);
    border-radius: 8px;
    padding: 28px 24px
}

.serv-card .ic {
    color: var(--turq);
    font-size: 34px;
    margin-bottom: 16px
}

.serv-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px
}

.serv-card ul {
    list-style: none;
    margin-bottom: 14px
}

.serv-card li {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative
}

.serv-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--turq);
    font-weight: 700
}

.serv-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px
}

.serv-card .lbl {
    color: #fff;
    font-weight: 700
}

.serv-card .small {
    color: var(--muted2);
    font-size: 12.5px
}

.interp {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 0;
    margin-top: 30px;
    align-items: stretch;
    background: var(--navy2);
    border: 1px solid rgba(11, 177, 182, .3);
    border-radius: 8px
}

.interp>div {
    padding: 30px 34px
}

.interp>div:first-child {
    border-right: 1px solid rgba(11, 177, 182, .22)
}

.interp .ic {
    color: var(--turq);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px
}

/* Escritorio: ícono en columna izquierda + texto (título+párrafos) en columna derecha */
.interp-desk {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.interp-desk>.ic {
    flex: 0 0 auto;
    margin-bottom: 0;
    margin-top: 2px
}

.interp-desk .interp-txt {
    flex: 1;
    min-width: 0
}

.interp h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px
}

.interp p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px
}

.interp .lbl {
    color: #fff;
    font-weight: 700
}

.interp .list2 li {
    list-style: none;
    color: var(--muted);
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px
}

.interp .list2 li i {
    color: var(--turq)
}

/* ===== Proyectos ===== */
.proyectos {
    padding: 50px 0 10px
}

.proy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.proy-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(11, 177, 182, .3)
}

.proy-card img {
    width: 100%;
    height: 180px;
    object-fit: cover
}

.proy-card .name {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: rgba(2, 24, 62, .92);
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 1px;
    text-align: center;
    padding: 8px 10px;
    border: 1px solid rgba(11, 177, 182, .4);
    border-radius: 4px
}

.proy-tags {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 24px 0 10px
}

.proy-tags p {
    color: var(--muted);
    font-size: 14.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px
}

.proy-tags i {
    color: var(--turq);
    font-size: 18px
}

/* ===== Clientes ===== (título DENTRO del contenedor blanco + raya blanca debajo) */
.clientes {
    padding: 50px 0
}

.clientes-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 32px 34px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25)
}

.cl-head {
    text-align: center;
    color: #02183E;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase
}

.cl-head::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #0BB1B6, #5fe0e4);
    margin: 9px auto 0;
    border-radius: 2px
}

.cl-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    gap: 26px;
    margin-top: 26px
}

.cl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 70px
}

.cl-img {
    max-height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain
}

.cl-bechtel-img {
    max-height: 62px
}

.cl-cps-img {
    max-height: 66px
}

.cl-pucp-lock {
    gap: 10px
}

.cl-pucp-lock .cl-seal {
    height: 52px;
    width: auto
}

.cl-pucp-txt b {
    display: block;
    color: #0A2C5A;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 1px;
    line-height: 1
}

.cl-pucp-txt small {
    display: block;
    color: #0A2C5A;
    font-size: 7.5px;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-top: 3px;
    white-space: nowrap
}

/* raya blanca FUERA/debajo del contenedor (detalle de la referencia) */
.cl-rule {
    height: 2px;
    background: rgba(255, 255, 255, .55);
    border-radius: 2px;
    margin: 22px 6% 0
}

/* ===== Contacto ===== */
.contacto {
    padding: 10px 0 70px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 26px
}

.field {
    display: flex;
    flex-direction: column
}

.field.full {
    grid-column: 1 / -1
}

.field label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #fff
}

.field label .req {
    color: var(--gold)
}

.field .inp {
    position: relative;
    display: flex;
    align-items: center
}

.field .inp i {
    position: absolute;
    left: 14px;
    color: var(--turq);
    font-size: 14px
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    padding: 13px 14px 13px 40px
}

.field textarea {
    padding-left: 14px;
    min-height: 96px;
    resize: vertical
}

.field select {
    appearance: none
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(201, 214, 245, .55)
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 181, 18, .18)
}

.form-foot {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 6px
}

.policy {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 8px;
    align-items: center
}

.policy a {
    color: var(--gold);
    text-decoration: underline
}

/* ===== Footer ===== */
.site-footer {
    background: var(--navy1);
    padding: 44px 0 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: 36% 38% 26%;
    gap: 30px
}

.site-footer .logo img {
    width: 180px;
    margin-bottom: 14px
}

.site-footer .tag {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7
}

.fcontact {
    list-style: none
}

.fcontact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 14px
}

.fcontact li i {
    color: var(--turq);
    font-size: 15px;
    width: 20px;
    text-align: center;
    margin-top: 3px
}

.fsocial {
    display: flex;
    gap: 10px
}

.fsocial a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--turq);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: .15s
}

.fsocial a:hover {
    background: var(--gold);
    color: var(--navy1)
}

.copyright {
    text-align: center;
    color: var(--muted2);
    font-size: 12.5px;
    padding-top: 24px
}

/* ===== WhatsApp flotante ===== */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

/* ===== Responsive ===== */
@media(max-width:991px) {

    .empresa-card,
    .serv-grid,
    .interp,
    .proy-grid,
    .clientes-card,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .empresa-card .col-left {
        padding-right: 0;
        padding-bottom: 30px
    }

    .empresa-card .col-right {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(11, 177, 182, .22);
        padding-top: 30px
    }

    .proy-grid {
        grid-template-columns: 1fr 1fr
    }

    .clientes-card {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}

@media(max-width:767px) {
    .nav-toggle {
        display: block
    }

    .main-nav {
        display: none
    }

    .hero-copy h1 {
        font-size: 32px
    }

    #tt-net {
        opacity: .16 !important
    }

    .hero-badges {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .hbadge {
        max-width: 340px
    }
}

/* =================================================================
   EFECTOS ÚNICOS + DEGRADADOS (capa premium custom)
   ================================================================= */

/* Degradados sutiles de profundidad en secciones navy */
.empresa {
    background: linear-gradient(180deg, #02183E 0%, #031B45 100%)
}

.servicios {
    background: linear-gradient(180deg, #031B45 0%, #02183E 100%)
}

.proyectos {
    background: linear-gradient(180deg, #02183E 0%, #021F4A 60%, #02183E 100%)
}

.contacto {
    background: linear-gradient(180deg, #02183E 0%, #041d49 100%)
}

/* Glow radial detrás del mapa del hero */
.tt-hero::after {
    content: "";
    position: absolute;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(11, 177, 182, .10) 0%, rgba(11, 177, 182, 0) 60%)
}

/* Barra de título: degradado turquesa */
.sec-title .bar {
    background: linear-gradient(90deg, #0BB1B6, #5fe0e4)
}

.eyebrow::after {
    background: linear-gradient(90deg, #0BB1B6, rgba(11, 177, 182, 0))
}

/* Acento superior con degradado en las cards de servicio */
.serv-card {
    position: relative;
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s, border-color .3s, background .3s
}

.serv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0BB1B6, #5fe0e4, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease
}

.serv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 177, 182, .6);
    background: linear-gradient(180deg, #06255a, #021F4A);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .4), 0 0 0 1px rgba(11, 177, 182, .25)
}

.serv-card:hover::before {
    transform: scaleX(1)
}

.serv-card .ic {
    transition: transform .4s ease, color .3s
}

.serv-card:hover .ic {
    transform: scale(1.12) rotate(-6deg)
}

/* Empresa card: borde con degradado + leve glow al hover */
.empresa-card {
    position: relative;
    transition: box-shadow .4s
}

.empresa-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(11, 177, 182, .5), rgba(120, 165, 225, .08) 40%, rgba(245, 181, 18, .25));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}

.empresa-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4), 0 0 40px rgba(11, 177, 182, .08)
}

.flag img {
    transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s
}

.flag:hover img {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .55)
}

/* Proyectos: zoom de imagen + nombre que sube al hover */
.proy-card {
    transition: transform .35s, box-shadow .35s
}

.proy-card img {
    transition: transform .6s cubic-bezier(.2, .7, .2, 1)
}

.proy-card .name {
    transition: transform .35s ease, background .35s
}

.proy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45)
}

.proy-card:hover img {
    transform: scale(1.08)
}

.proy-card:hover .name {
    background: rgba(11, 177, 182, .95);
    border-color: #5fe0e4
}

/* Botones: barrido de luz al hover */
.btn {
    position: relative;
    overflow: hidden
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg);
    transition: left .55s ease
}

.btn:hover::after {
    left: 140%
}

/* Badges del hero: anillo de pulso en el ícono */
.hbadge .ic {
    position: relative
}

.hbadge .ic::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(11, 177, 182, .5);
    animation: ttpulse 2.6s ease-out infinite
}

@keyframes ttpulse {
    0% {
        transform: scale(1);
        opacity: .7
    }

    70% {
        transform: scale(1.35);
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

/* Íconos sociales del footer: rebote sutil */
.fsocial a {
    transition: transform .25s ease, background .2s, color .2s
}

.fsocial a:hover {
    transform: translateY(-3px) scale(1.08)
}

/* WhatsApp flotante: anillo de pulso verde infinito */
.wa-float {
    transition: transform .25s
}

.wa-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: waring 2s ease-out infinite
}

.wa-float:hover {
    transform: scale(1.08) rotate(6deg)
}

@keyframes waring {
    0% {
        transform: scale(1);
        opacity: .6
    }

    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

/* Nav: subrayado que crece desde el centro al hover */
.main-nav>a::after,
.has-sub>a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 2px;
    height: 2px;
    background: #0BB1B6;
    transition: left .25s ease, right .25s ease
}

.main-nav>a:hover::after,
.has-sub:hover>a::after {
    left: 12px;
    right: 12px
}

.main-nav a.active::after {
    left: 12px;
    right: 12px;
    background: #F5B512
}

/* Valores e interp: check que se pinta al hover de fila */
.valores li,
.interp .list2 li {
    transition: transform .2s ease
}

.valores li:hover,
.interp .list2 li:hover {
    transform: translateX(4px)
}

/* Scroll-reveal (lo activa effects.js agregando .reveal y luego .in) */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media(prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .hbadge .ic::before,
    .wa-float::before {
        animation: none
    }
}

/* Menú mobile desplegado */
@media(max-width:767px) {
    .main-nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #021634;
        padding: 8px 0;
        box-shadow: 0 16px 30px rgba(0, 0, 0, .4);
        gap: 0
    }

    .main-nav.open>a,
    .main-nav.open .has-sub>a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .main-nav.open .has-sub .sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #0a1f44;
        border-radius: 0;
        display: none
    }

    .main-nav.open .has-sub .sub a {
        color: #C9D6F5;
        background: transparent
    }

    .site-header .wrap {
        position: relative;
        flex-wrap: wrap
    }
}

/* === Responsive fixes (review) === */
@media(max-width:991px) {
    .cl-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 18px
    }

    .cl {
        min-height: 58px
    }

    .cl-rule {
        margin-left: 0;
        margin-right: 0
    }
}

@media(max-width:767px) {
    .header-cta {
        display: none
    }

    /* en mobile el CTA va en el menú + hero, no en el header */
    .site-header .wrap {
        gap: 10px
    }

    .cl-head {
        font-size: 12px
    }

    .cl-pucp-txt b {
        font-size: 22px
    }
}

@media(max-width:420px) {
    .cl-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px
    }
}

/* Submenú SERVICIOS acordeón en móvil: se abre al tocar "SERVICIOS" (.sub-open lo agrega effects.js) */
@media(max-width:991px) {
    .main-nav.open .has-sub.sub-open .sub {
        display: block
    }

    .main-nav.open .has-sub>a .fa-caret-down {
        transition: transform .25s ease
    }

    .main-nav.open .has-sub.sub-open>a .fa-caret-down {
        transform: rotate(180deg)
    }
}

/* === Header: hamburguesa desde tablet (≤991) para que el nav no quede apretado === */
@media(max-width:991px) {
    .nav-toggle {
        display: block
    }

    .main-nav {
        display: none
    }

    .header-cta {
        display: none
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #021634;
        padding: 8px 0;
        box-shadow: 0 16px 30px rgba(0, 0, 0, .4);
        gap: 0;
        z-index: 1001
    }

    .main-nav.open>a,
    .main-nav.open .has-sub>a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .main-nav.open .has-sub .sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #0a1f44;
        border-radius: 0;
        display: none
    }

    .main-nav.open .has-sub .sub a {
        color: #C9D6F5;
        background: transparent
    }

    .site-header .wrap {
        position: relative;
        flex-wrap: wrap
    }
}

/* Interpretación: en mobile/tablet el divisor vertical pasa a horizontal */
@media(max-width:991px) {
    .interp>div {
        padding: 26px 24px
    }

    .interp>div:first-child {
        border-right: 0;
        border-bottom: 1px solid rgba(11, 177, 182, .22)
    }
}

/* Form: Mensaje (izq) más alto; Idioma destino queda arriba-derecha (ref imagen) */
.form-grid {
    align-items: start
}

.field.msg textarea {
    min-height: 150px
}

/* Contenido dual: ESCRITORIO intacto + MÓVIL = clon del mockup */
.only-mob {
    display: none
}

@media(max-width:767px) {
    .only-desk {
        display: none !important
    }

    .only-mob {
        display: revert
    }
}

/* Página interna (políticas, etc.) */
.page-hero {
    background: linear-gradient(180deg, #02183E, #031B45);
    padding: 70px 0 40px;
    text-align: center
}

.page-hero h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px
}

.page-hero .bar {
    width: 54px;
    height: 3px;
    background: linear-gradient(90deg, #0BB1B6, #5fe0e4);
    margin: 0 auto;
    border-radius: 2px
}

.page-body {
    padding: 50px 0 70px
}

.page-body .doc {
    max-width: 860px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid rgba(120, 165, 225, .14);
    border-radius: 16px;
    padding: 44px 48px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3)
}

.page-body h2 {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    margin: 28px 0 12px
}

.page-body h2:first-child {
    margin-top: 0
}

.page-body p,
.page-body li {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 12px
}

.page-body ul {
    padding-left: 20px;
    margin-bottom: 12px
}

.page-body a:not(.btn) {
    color: var(--turq)
}

.page-body .upd {
    color: var(--muted2);
    font-size: 13px;
    margin-top: 24px;
    font-style: italic
}

@media(max-width:767px) {
    .page-body .doc {
        padding: 28px 22px
    }
}

/* Anclas one-page: compensar header sticky (~80px) al hacer scroll a cada sección */
#inicio,
#empresa,
.servicios,
#proyectos,
.contacto,
.serv-card,
#interpretacion,
#otros-servicios {
    scroll-margin-top: 92px
}

/* Mensaje de envío del formulario */
.form-msg {
    grid-column: 1/-1;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 600
}

.form-msg:empty {
    display: none
}

.form-msg.ok {
    background: rgba(11, 177, 182, .15);
    border: 1px solid rgba(11, 177, 182, .5);
    color: #bdf3f5
}

.form-msg.err {
    background: rgba(220, 60, 60, .15);
    border: 1px solid rgba(220, 60, 60, .5);
    color: #ffd0d0
}

/* Clientes: carrusel 3-up deslizante en móvil (muestra 3 logos, pasan uno por uno). Lo activa effects.js con .cl-carousel */
.cl-carousel {
    display: flex !important;
    overflow: hidden;
    will-change: transform
}

.cl-carousel .cl {
    flex: 0 0 33.333%;
    position: static;
    opacity: 1;
    pointer-events: auto
}

/* Dropdown nativo: opciones legibles (texto oscuro sobre blanco) */
.field select {
    color: #fff
}

.field select option {
    color: #02183E;
    background: #fff
}

/* ===== Páginas de servicio ===== */
.svc-hero {
    background: #02183E center/cover no-repeat;
    padding: 66px 0 54px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.svc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(2, 24, 62, .94) 0%, rgba(3, 38, 96, .84) 55%, rgba(2, 31, 74, .92) 100%)
}

.svc-hero .wrap {
    position: relative;
    z-index: 2
}

.svc-hero .svc-ic {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(11, 177, 182, .12);
    border: 1px solid rgba(11, 177, 182, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turq);
    font-size: 34px;
    margin: 0 auto 22px;
    box-shadow: 0 0 0 8px rgba(11, 177, 182, .06)
}

.svc-hero h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px
}

.svc-hero p {
    color: var(--muted);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6
}

.svc-doc h2 {
    margin-top: 26px
}

.svc-doc ul {
    padding-left: 0;
    list-style: none
}

.svc-doc ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6
}

.svc-doc ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--turq);
    font-size: 13px
}

.svc-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

@media(max-width:767px) {
    .svc-hero h1 {
        font-size: 26px
    }

    .svc-cta .btn {
        flex: 1 1 100%;
        justify-content: center
    }
}

/* dropdown con 9 ítems: un poco más ancho + scroll si no entra en pantallas bajas */
@media(min-width:992px) {
    .has-sub .sub {
        min-width: 286px;
        max-height: min(72vh, 540px);
        overflow-y: auto
    }
}

/* ====== Rediseño tipo mockup: Empresa + Idiomas + Valores ====== */
.emp-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 24px;
    align-items: stretch
}

.emp-card,
.idiomas-card {
    background: var(--card);
    border: 1px solid rgba(120, 165, 225, .14);
    border-radius: 16px;
    padding: 30px 32px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28)
}

.emp-card {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.emp-row {
    display: flex;
    gap: 14px;
    align-items: center
}

.emp-ic {
    flex: 0 0 auto;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(11, 177, 182, .1);
    border: 1px solid rgba(11, 177, 182, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turq);
    font-size: 28px
}

.emp-card .eyebrow {
    margin-bottom: 12px
}

.emp-body p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 11px
}

.emp-body p:last-child {
    margin-bottom: 0
}

.idiomas-card h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff
}

.idioma-list {
    list-style: none
}

.idioma-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 500
}

.idioma-list li:last-child {
    margin-bottom: 0
}

.idioma-list img {
    width: 42px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .45)
}

/* ====== ESCRITORIO (imagen 3): Empresa + Idiomas grandes + Valores en un solo bloque ====== */
.emp3 {
    display: none
}

@media(min-width:768px) {
    .emp3 {
        display: flex;
        background: var(--card);
        border: 1px solid rgba(120, 165, 225, .14);
        border-radius: 16px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
        overflow: hidden
    }

    .empresa .emp-grid {
        display: none
    }

    /* en escritorio se usa .emp3, no las tarjetas del mockup */
    .valores-sec {
        display: none
    }

    /* los valores van dentro de .emp3 */
    .otros-illu {
        display: none
    }

    /* en escritorio "Otros servicios" va SIN ilustración (imagen 5) */
    .serv-more {
        display: none
    }

    /* en escritorio NO van los botones "Más información" */
}

.emp3-left {
    flex: 0 0 37%;
    padding: 40px 38px;
    border-right: 1px solid rgba(120, 165, 225, .14)
}

.emp3-left .eyebrow {
    margin-bottom: 18px
}

.emp3-left p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px
}

.emp3-left p:last-child {
    margin-bottom: 0
}

.emp3-right {
    flex: 1;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 26px
}

.emp3-h {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px
}

.emp3-flags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.emp3-flag {
    text-align: center
}

.emp3-flag img {
    width: 100%;
    max-width: 160px;
    height: 96px;
    object-fit: cover;
    border-radius: 9px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
    margin-bottom: 12px
}

.emp3-flag span {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

.emp3-divider {
    height: 1px;
    background: rgba(120, 165, 225, .16)
}

.emp3-valores {
    display: flex;
    gap: 34px;
    align-items: flex-start
}

.emp3-valores .emp3-h {
    flex: 0 0 96px;
    margin-bottom: 0;
    line-height: 1.45
}

.emp3-vlist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1
}

.emp3-vlist li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45
}

.emp3-vlist li i {
    color: var(--turq);
    font-size: 16px;
    margin-top: 1px;
    flex: 0 0 auto
}

.valores-sec {
    padding: 46px 0
}

.valores-card {
    background: var(--card);
    border: 1px solid rgba(120, 165, 225, .14);
    border-radius: 16px;
    padding: 20px 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .25)
}

.valores-card .sec-title {
    margin-bottom: 14px
}

.val-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.val-item {
    text-align: center
}

.val-ic {
    display: inline-flex;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid rgba(11, 177, 182, .4);
    background: rgba(11, 177, 182, .08);
    align-items: center;
    justify-content: center;
    color: var(--turq);
    font-size: 25px;
    margin-bottom: 12px;
    transition: transform .25s, box-shadow .25s
}

.val-item:hover .val-ic {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(11, 177, 182, .2)
}

.val-item b {
    display: block;
    font-size: 14px;
    font-weight: 600
}

/* Botón "Más información" en cards de servicio */
.serv-more {
    margin-top: 16px;
    padding: 10px 20px;
    font-size: 11px
}

/* ====== Responsive tipo mockup (móvil mantiene columnas) ====== */
@media(max-width:767px) {

    /* badges del hero en fila: ícono a la IZQUIERDA + texto a la derecha (como la imagen) */
    .hero-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px
    }

    .hbadge {
        flex-direction: row;
        gap: 6px;
        text-align: left;
        align-items: flex-start
    }

    .hbadge .ic {
        width: 30px;
        height: 30px;
        font-size: 12px;
        flex: 0 0 30px
    }

    .hbadge b {
        font-size: 10.5px;
        margin-bottom: 0;
        line-height: 1.22
    }

    .hbadge span {
        display: none
    }

    /* la imagen solo muestra el título del badge */
    /* CTAs del hero lado a lado */
    .hero-ctas {
        gap: 10px
    }

    .hero-ctas .btn {
        flex: 1;
        justify-content: center;
        padding: 12px 10px;
        font-size: 11px
    }

    /* empresa + idiomas: 2 columnas en móvil (como la imagen) */
    .emp-grid {
        grid-template-columns: 2.1fr 1fr;
        gap: 10px
    }

    .emp-card,
    .idiomas-card {
        padding: 16px 14px
    }

    .emp-ic {
        width: 42px;
        height: 42px;
        font-size: 18px
    }

    .emp-body p {
        font-size: 10.5px;
        line-height: 1.55;
        margin-bottom: 8px
    }

    .idiomas-card h3 {
        font-size: 11px;
        margin-bottom: 12px
    }

    .idioma-list li {
        font-size: 11.5px;
        gap: 8px;
        margin-bottom: 11px
    }

    .idioma-list img {
        width: 28px
    }

    /* valores: 4 en fila, compactos */
    .val-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px
    }

    .val-ic {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 8px
    }

    .val-item b {
        font-size: 11px
    }

    /* ===== Formulario tipo mockup: contenedor + etiquetas DENTRO del campo ===== */
    .contacto .sec-title {
        display: none
    }

    /* el título va dentro del contenedor */
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 11px 10px;
        background: #04173b;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 16px;
        padding: 16px 13px
    }

    .form-head {
        grid-column: 1/-1;
        text-align: center;
        font-weight: 800;
        font-size: 15px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #fff;
        margin: 0 0 6px
    }

    .contacto .field {
        position: relative
    }

    .field input,
    .field select,
    .field textarea {
        padding: 11px 12px 11px 30px;
        font-size: 11px;
        border-radius: 10px
    }

    .field .inp i {
        left: 10px;
        font-size: 11px
    }

    /* etiqueta flotante (placeholder) con asterisco rojo */
    .contacto .field>label {
        position: absolute;
        left: 30px;
        top: 1px;
        bottom: 1px;
        display: flex;
        align-items: center;
        margin: 0;
        font-size: 10px;
        font-weight: 500;
        color: rgba(201, 214, 245, .82);
        pointer-events: none;
        z-index: 2;
        white-space: nowrap;
        overflow: hidden;
        max-width: calc(100% - 14px);
        transition: opacity .12s
    }

    .contacto .field>label .req {
        color: #ff5252;
        margin-left: 2px
    }

    .contacto .field.filled>label,
    .contacto .field:focus-within>label {
        opacity: 0
    }

    /* dropdowns: sin ícono, con chevron ▼ a la derecha */
    .contacto .field:has(select) .inp i {
        display: none
    }

    .contacto .field:has(select) select {
        padding-left: 11px;
        padding-right: 26px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'%3E%3Cpath fill='%23c9d6f5' d='M0 0h12L6 7z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 11px center;
        background-size: 10px
    }

    .contacto .field:has(select)>label,
    .contacto .field.msg>label {
        left: 11px
    }

    .field.msg {
        order: 10
    }

    .form-foot {
        order: 11
    }

    .field.msg textarea {
        min-height: 42px;
        padding-left: 12px
    }

    /* valores: divisores verticales (mockup móvil) */
    .val-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, .25)
    }

    /* empresa: ícono a la izquierda, compacto */
    .emp-card {
        gap: 10px
    }

    .emp-card .eyebrow {
        font-size: 10px;
        margin-bottom: 7px
    }
}

@media(max-width:420px) {
    .val-ic {
        width: 42px;
        height: 42px;
        font-size: 16px
    }
}

/* ====== Móvil tipo mockup: mapa prominente abajo + proyectos carrusel ====== */
@media(max-width:767px) {
    .tt-hero {
        align-items: flex-start;
        min-height: auto;
        overflow: hidden
    }

    .tt-hero .wrap {
        padding-top: 28px;
        padding-bottom: 238px
    }

    #tt-net {
        opacity: .9 !important
    }

    /* proyectos: carrusel horizontal con swipe */
    .proy-grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 4px 2px 14px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch
    }

    .proy-grid::-webkit-scrollbar {
        display: none
    }

    .proy-card {
        flex: 0 0 80%;
        scroll-snap-align: center
    }

    .proy-card img {
        height: 190px
    }
}

/* ====== Interpretación: 3 sub-tipos en columnas + Otros servicios con ilustración ====== */
.interp h3 i {
    color: var(--turq);
    margin-right: 9px
}

.interp-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px
}

.itype {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.itype-ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 177, 182, .1);
    border: 1px solid rgba(11, 177, 182, .28);
    color: var(--turq);
    font-size: 19px
}

.itype b {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700
}

.itype p {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0
}

.otros-main {
    display: flex;
    flex-direction: column
}

.otros-illu {
    margin-top: auto;
    padding-top: 18px;
    text-align: center;
    color: rgba(11, 177, 182, .42);
    font-size: 56px;
    line-height: 1
}

/* ====== Proyectos: flechas + dots (visibles sólo en móvil) ====== */
.proy-carousel {
    position: relative
}

.proy-arrow,
.proy-dots {
    display: none
}

/* ====== Móvil tipo mockup: servicios 3-col · interp 3-col · clientes 4-fila · proy flechas+dots ====== */
@media(max-width:767px) {

    /* servicios: 3 columnas con viñetas cortas (como la imagen) */
    .serv-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px
    }

    .serv-card {
        padding: 14px 10px;
        border-radius: 8px
    }

    .serv-card .ic {
        font-size: 22px;
        margin-bottom: 9px
    }

    .serv-card h3 {
        font-size: 11.5px;
        line-height: 1.25;
        margin-bottom: 10px
    }

    .serv-card ul {
        margin-bottom: 10px
    }

    .serv-card li {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 6px;
        padding-left: 12px
    }

    .serv-more {
        font-size: 8.5px;
        padding: 8px 6px;
        margin-top: 8px;
        letter-spacing: 0
    }

    /* interpretación: card + Otros servicios LADO A LADO (como la imagen) */
    .interp {
        grid-template-columns: 1.5fr 1fr
    }

    .interp>div {
        padding: 12px 9px
    }

    .interp>div:first-child {
        border-right: 1px solid rgba(11, 177, 182, .22);
        border-bottom: 0
    }

    .interp h3 {
        font-size: 12px;
        margin-bottom: 9px
    }

    .interp-types {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px
    }

    .itype {
        gap: 5px
    }

    .itype-ic {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 8px
    }

    .itype b {
        font-size: 8.5px
    }

    .itype p {
        font-size: 7px;
        line-height: 1.35
    }

    .otros-main h3 {
        font-size: 11px
    }

    .interp .list2 li {
        font-size: 8.5px;
        gap: 6px;
        margin-bottom: 8px
    }

    .otros-illu {
        font-size: 34px;
        padding-top: 8px
    }

    /* clientes: 4 logos lo más grandes posible SIN encimarse (contenidos en su celda) */
    .clientes-card {
        padding: 12px 6px 12px
    }

    .cl-logos {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px
    }

    .cl {
        min-height: 44px;
        gap: 3px;
        overflow: hidden
    }

    .cl-img,
    .cl-seal {
        max-width: 100%;
        object-fit: contain
    }

    .cl-img {
        max-height: 32px
    }

    .cl-bechtel-img {
        max-height: 36px
    }

    .cl-cps-img {
        max-height: 34px
    }

    .cl-pucp-lock {
        gap: 2px;
        flex-direction: column
    }

    .cl-pucp-lock .cl-seal {
        height: 26px;
        width: auto
    }

    .cl-pucp-txt {
        text-align: center
    }

    .cl-pucp-txt b {
        font-size: 10px !important;
        line-height: 1
    }

    .cl-pucp-txt small {
        font-size: 4px;
        line-height: 1.05;
        white-space: normal;
        display: block
    }

    /* proyectos: las 4 tarjetas en UNA fila + flechas a los lados + dots (como el mockup) */
    .proy-carousel {
        display: flex;
        align-items: center;
        gap: 4px
    }

    .proy-carousel .proy-grid {
        flex: 1;
        min-width: 0;
        gap: 5px
    }

    .proy-card {
        flex: 0 0 23%;
        scroll-snap-align: start
    }

    .proy-card img {
        height: 52px
    }

    .proy-card .name {
        font-size: 6px;
        letter-spacing: 0;
        padding: 3px 2px;
        left: 3px;
        right: 3px;
        bottom: 3px;
        line-height: 1.1
    }

    .proy-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1px solid rgba(11, 177, 182, .5);
        background: rgba(2, 24, 62, .9);
        color: var(--turq);
        font-size: 10px;
        cursor: pointer;
        z-index: 3;
        padding: 0
    }

    .proy-arrow:active {
        background: var(--turq);
        color: #fff
    }

    .proy-dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 13px
    }

    .proy-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(201, 214, 245, .3);
        transition: all .25s;
        cursor: pointer
    }

    .proy-dots .dot.on {
        background: var(--turq);
        width: 20px;
        border-radius: 4px
    }
}

@media(max-width:420px) {
    .cl-logos {
        grid-template-columns: repeat(4, 1fr) !important
    }
}

/* ====== MÓVIL: escala tipográfica/íconos compacta (proporcional al mockup 758px → 390px ≈ 0.51x) ====== */
@media(max-width:767px) {

    /* títulos de sección */
    .sec-title h2 {
        font-size: 16px;
        letter-spacing: .8px
    }

    .sec-title .bar {
        width: 38px;
        height: 2px
    }

    /* ocultar "Mina Justa / Expansión de Aeropuerto" SOLO en móvil */
    .proy-tags {
        display: none
    }

    /* hero */
    .tt-hero h1 {
        font-size: 24px;
        line-height: 1.18
    }

    .tt-hero h1 .accent {
        display: block
    }

    /* "conecta al mundo" en su propia línea (como el mockup) */
    .hero-sub {
        font-size: 12.5px
    }

    .hbadge .ic {
        width: 27px;
        height: 27px;
        font-size: 12px;
        flex: 0 0 27px
    }

    .hbadge b {
        font-size: 10px;
        line-height: 1.2
    }

    /* empresa + idiomas (legibles) */
    .emp-body p {
        font-size: 7px;
        line-height: 1.5;
        margin-bottom: 5px
    }

    .emp-ic {
        width: 26px;
        height: 26px;
        font-size: 11px
    }

    .emp-card .eyebrow {
        font-size: 8px;
        margin-bottom: 6px
    }

    .idiomas-card h3 {
        font-size: 10px;
        margin-bottom: 10px
    }

    .idioma-list li {
        font-size: 10px;
        gap: 7px;
        margin-bottom: 9px
    }

    .idioma-list img {
        width: 24px
    }

    /* valores */
    .valores-card {
        padding: 18px 10px
    }

    .val-ic {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin-bottom: 7px
    }

    .val-item b {
        font-size: 9.5px
    }

    /* servicios DENTRO de un contenedor con borde (como el mockup) */
    .servicios-card {
        border: 1px solid rgba(120, 165, 225, .16);
        border-radius: 16px;
        padding: 14px 9px;
        background: rgba(255, 255, 255, .012)
    }

    .servicios-card .sec-title {
        margin-bottom: 14px
    }

    /* servicios: ícono al LADO del título (título chico para que entre en 3 columnas) */
    .serv-card {
        padding: 11px 8px
    }

    .serv-head {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 9px
    }

    .serv-card .ic {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 1px solid rgba(11, 177, 182, .45);
        background: rgba(11, 177, 182, .08);
        font-size: 9px;
        margin-bottom: 0;
        flex: 0 0 auto;
        line-height: 1
    }

    .serv-card h3 {
        font-size: 7.5px;
        margin-bottom: 0;
        line-height: 1.12
    }

    .serv-card li {
        font-size: 7.5px;
        line-height: 1.38;
        margin-bottom: 4px;
        padding-left: 9px
    }

    .serv-more {
        font-size: 7px;
        padding: 6px 4px;
        margin-top: 7px
    }

    /* interpretación: ícono ARRIBA (para que entre legible en las columnas angostas) */
    .interp h3 {
        font-size: 11.5px
    }

    .itype {
        gap: 4px
    }

    .itype-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 3px
    }

    .itype-ic {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid rgba(11, 177, 182, .45);
        background: rgba(11, 177, 182, .08);
        font-size: 13px;
        flex: 0 0 auto
    }

    .itype b {
        font-size: 9.5px;
        line-height: 1.15
    }

    .itype p {
        font-size: 8.5px;
        line-height: 1.4
    }

    .otros-main h3 {
        font-size: 11px
    }

    .interp .list2 li {
        font-size: 9.5px
    }

    /* clientes */
    .cl-head {
        font-size: 11px
    }

    /* carrusel de clientes 3-up (3 logos visibles, deslizan uno por uno) */
    .cl-carousel {
        margin-top: 12px;
        align-items: center
    }

    .cl-carousel .cl {
        min-height: 36px;
        overflow: hidden;
        padding: 0 3px
    }

    .cl-carousel .cl-img {
        max-height: 26px
    }

    .cl-carousel .cl-bechtel-img {
        max-height: 30px
    }

    .cl-carousel .cl-cps-img {
        max-height: 28px
    }

    .cl-carousel .cl-pucp-lock {
        flex-direction: column;
        gap: 1px
    }

    .cl-carousel .cl-pucp-lock .cl-seal {
        height: 20px
    }

    .cl-carousel .cl-pucp-txt {
        text-align: center
    }

    .cl-carousel .cl-pucp-txt b {
        font-size: 8px !important
    }

    .cl-carousel .cl-pucp-txt small {
        font-size: 3.5px
    }

    /* formulario */
    .contacto .field>label {
        font-size: 11px
    }

    .field input,
    .field select,
    .field textarea {
        font-size: 11px
    }

    .policy a {
        color: var(--turq)
    }

    /* checkbox + botón LADO A LADO (como el mockup) */
    .form-foot {
        flex-wrap: nowrap;
        gap: 8px;
        align-items: center
    }

    .policy {
        flex: 1;
        min-width: 0;
        font-size: 8px;
        gap: 5px;
        line-height: 1.22
    }

    .policy input[type=checkbox] {
        width: 13px;
        height: 13px;
        flex: 0 0 auto
    }

    .form-foot .btn {
        flex: 0 0 auto;
        font-size: 8.5px;
        padding: 8px 11px;
        gap: 6px;
        letter-spacing: .3px;
        white-space: nowrap
    }

    .form-foot .btn i {
        font-size: 9px
    }

    /* footer: 3 columnas horizontales (logo | contacto | síguenos) como el mockup */
    .site-footer {
        padding: 28px 0 18px
    }

    .footer-grid {
        grid-template-columns: 26% 48% 26% !important;
        gap: 6px;
        align-items: start
    }

    .site-footer .logo img {
        width: 86px;
        margin-bottom: 7px
    }

    .site-footer .tag {
        font-size: 8px;
        line-height: 1.5
    }

    .foot-h {
        font-size: 9px;
        margin-bottom: 8px;
        letter-spacing: .3px
    }

    .fcontact li {
        font-size: 7.5px;
        gap: 5px;
        margin-bottom: 8px;
        overflow-wrap: anywhere
    }

    .fcontact li i {
        font-size: 8px;
        width: 11px;
        margin-top: 1px
    }

    .fsocial {
        gap: 4px
    }

    .fsocial a {
        width: 20px;
        height: 20px;
        font-size: 10px
    }

    /* raya blanca separadora arriba del copyright (como el mockup) */
    .copyright {
        font-size: 9px;
        padding-top: 14px;
        margin-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, .5)
    }
}

/* ====== Móvil: apretar el padding vertical entre contenedores (espacios cortos) ====== */
@media(max-width:767px) {
    .empresa {
        padding: 30px 0 22px
    }

    .valores-sec {
        padding: 20px 0
    }

    /* empresa→valores: 22+20=42px (antes 116) */
    .servicios {
        padding: 8px 0 20px
    }

    /* valores→servicios: 20+8=28px */
    .interp {
        margin-top: 20px
    }

    /* servicios-card → interpretación */
    .proyectos {
        padding: 20px 0 8px
    }

    /* servicios→proyectos: 20+20=40px (antes 110) */
    .clientes {
        padding: 22px 0
    }

    /* proyectos→clientes y clientes→contacto: ~30px */
    .contacto {
        padding: 8px 0 24px
    }

    /* contacto→footer: 24+28=52px (antes 98) */
}