:root {
    --amarillo: #FFB500;
    --amarillo-d: #E0A000;
    --peri: #ED1639;
    --negro: #0B0B0B;
    --negro2: #121212;
    --carbon: #1A1A1A;
    --blanco: #FFFFFF;
    --hueso: #F4F3F0;
    --hueso2: #ECEBE6;
    --txt-dark: #1A1A1A;
    --txt-mid: #4A4A47;
    --txt-light: #D7D7D2;
    --txt-mute: #9C9C97;
    --linea: rgba(255, 255, 255, .13);
    --linea-d: rgba(0, 0, 0, .12);
    --titulo: 'DIN Next LT Pro', 'Mulish', system-ui, sans-serif;
    --cuerpo: 'Mulish', system-ui, sans-serif;
    --mono: 'Space Mono', monospace;
    --max: 1280px;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--cuerpo);
    background: var(--negro);
    color: var(--blanco);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: var(--titulo);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.015em
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 48px
}

.label {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .05em;
    color: var(--amarillo-d);
    text-transform: uppercase
}

.label::before {
    content: "// "
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--titulo);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 15px 28px;
    border-radius: 60px;
    border: 1.5px solid transparent;
    transition: .25s;
    cursor: pointer
}

.btn-amarillo {
    background: var(--amarillo);
    color: #000
}

.btn-amarillo:hover {
    transform: translateY(-2px);
    background: var(--amarillo-d)
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .4);
    color: #fff
}

.btn-ghost:hover {
    border-color: var(--amarillo);
    color: var(--amarillo)
}

.btn-dark {
    background: var(--negro);
    color: #fff
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px)
}

.btn-rojo {
    background: var(--peri);
    color: #fff
}

.btn-rojo:hover {
    transform: translateY(-2px)
}

.btn-line-dark {
    border-color: rgba(0, 0, 0, .32);
    color: #1a1a1a
}

.btn-line-dark:hover {
    border-color: #000;
    background: rgba(0, 0, 0, .05)
}

.photo {
    position: relative;
    overflow: hidden;
    background: #1c1c1c;
    background-size: cover;
    background-position: center;
    filter: grayscale(1) contrast(1.04)
}

/* HEADER */
header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 60
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    height: 72px;
    padding: 0 14px 0 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18)
}

.nav .logo img {
    height: 46px;
    width: auto
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none
}

.nav ul a {
    font-family: var(--titulo);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #2a2a2a
}

.nav ul a:hover,
.nav ul a.act {
    color: var(--amarillo-d)
}

.nav .right {
    display: flex;
    align-items: center;
    gap: 18px
}

.burger {
    display: none;
    background: none;
    border: 0;
    color: #1a1a1a;
    font-size: 26px;
    cursor: pointer
}

/* HERO home (video) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4vh;
    background: var(--hueso);
    overflow: hidden
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.12) saturate(1.05)
}

.hero .ov {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(247, 246, 243, .97) 0%, rgba(247, 246, 243, .74) 48%, rgba(247, 246, 243, .42))
}

.hero .wrap {
    position: relative;
    z-index: 2;
    width: 100%
}

.hero .label {
    margin-bottom: 20px;
    color: var(--amarillo-d)
}

.hero h1 {
    font-size: clamp(46px, 8.5vw, 116px);
    text-transform: uppercase;
    letter-spacing: -.03em;
    color: #17181C;
    text-shadow: none
}

.hero h1 .y {
    color: var(--amarillo-d)
}

.hero .sub {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-top: 26px;
    flex-wrap: wrap
}

.hero .sub p {
    max-width: 430px;
    font-size: 18px;
    color: #3c3c39
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px
}

.hero-logo {
    height: 62px;
    width: auto;
    display: block;
    margin-bottom: 24px
}

/* SUBHERO (paginas internas) */
.subhero {
    position: relative;
    padding: 150px 0 60px;
    background: var(--negro2);
    overflow: hidden;
    border-bottom: 1px solid var(--linea)
}

.subhero.peri {
    border-top: 3px solid var(--peri)
}

.subhero .bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .28
}

.subhero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #0B0B0B 30%, rgba(11, 11, 11, .4))
}

.subhero .wrap {
    position: relative;
    z-index: 2
}

.crumbs {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--txt-mute);
    margin-bottom: 14px
}

.crumbs a:hover {
    color: var(--amarillo)
}

.subhero h1 {
    font-size: clamp(40px, 6.5vw, 86px);
    text-transform: uppercase;
    color: #fff
}

.subhero p {
    margin-top: 16px;
    max-width: 560px;
    color: var(--txt-light);
    font-size: 18px
}

section.block {
    padding: 90px 0
}

.bg-light {
    background: var(--hueso);
    color: var(--txt-dark)
}

.bg-dark2 {
    background: var(--negro2)
}

.head {
    max-width: 720px;
    margin-bottom: 50px
}

.head .label {
    margin-bottom: 14px
}

.head h2 {
    font-size: clamp(30px, 4.4vw, 56px);
    text-transform: uppercase
}

.bg-light .head h2 {
    color: var(--txt-dark)
}

.head p {
    margin-top: 16px;
    font-size: 18px;
    color: var(--txt-light)
}

.bg-light .head p {
    color: var(--txt-mid)
}

/* INTRO */
.intro {
    padding: 120px 0;
    border-top: 1px solid var(--linea)
}

.intro .big {
    font-family: var(--titulo);
    font-weight: 800;
    font-size: clamp(28px, 3.8vw, 52px);
    line-height: 1.1;
    letter-spacing: -.015em;
    max-width: 1040px;
    color: #fff
}

.intro .big .y {
    color: var(--amarillo)
}

.intro .big .soft {
    color: #9a9a95
}

.intro .row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 46px;
    flex-wrap: wrap;
    align-items: center
}

.intro .row p {
    max-width: 460px;
    color: var(--txt-light);
    font-size: 16px
}

/* SERVICIOS */
.srv {
    display: grid;
    grid-template-columns: auto 1fr 360px;
    gap: 34px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--linea-d);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 20px;
    transition: .25s
}

.srv:hover {
    box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
    transform: translateY(-3px)
}

.srv .snum {
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 84px;
    line-height: .8;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, .18)
}

.srv:hover .snum {
    -webkit-text-stroke-color: var(--amarillo-d)
}

.srv .mid h3 {
    font-size: 28px;
    color: var(--txt-dark);
    margin-bottom: 8px
}

.srv .mid>p {
    color: var(--txt-mid);
    font-size: 15.5px;
    margin-bottom: 16px;
    max-width: 430px
}

.srv .chk {
    list-style: none;
    display: grid;
    gap: 8px
}

.srv .chk li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: #33332f;
    font-weight: 600
}

.srv .chk li svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--amarillo-d);
    stroke-width: 2.4
}

.srv .pic {
    height: 200px;
    border-radius: 12px;
    filter: grayscale(1) contrast(1.05);
    transition: .4s
}

.srv:hover .pic {
    filter: grayscale(0) contrast(1.05)
}

.srv-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--negro);
    color: #fff;
    border-radius: 16px;
    padding: 26px 34px;
    margin-top: 14px
}

.srv-help b {
    color: var(--amarillo)
}

/* tabla hormigones */
.tabla-wrap {
    overflow-x: auto;
    border: 1px solid var(--linea-d);
    border-radius: 14px;
    background: #fff
}

table.htab {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px
}

table.htab th,
table.htab td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--linea-d);
    font-size: 15px;
    color: var(--txt-mid)
}

table.htab th {
    font-family: var(--titulo);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--txt-dark);
    background: var(--hueso)
}

.pend {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    color: #8a6d00;
    background: rgba(255, 181, 0, .16);
    border: 1px solid rgba(255, 181, 0, .5);
    border-radius: 30px;
    padding: 5px 12px;
    margin-top: 14px
}

/* STATS */
.stats {
    padding: 90px 0;
    background: var(--amarillo);
    color: #000
}

.stats .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px
}

.stats .stat {
    padding-left: 30px;
    border-left: 2px solid rgba(0, 0, 0, .16)
}

.stats .stat:first-child {
    border-left: 0;
    padding-left: 0
}

.stat .n {
    font-family: var(--titulo);
    font-weight: 900;
    font-size: clamp(40px, 4.4vw, 64px);
    line-height: .9;
    letter-spacing: -.03em
}

.stat .l {
    font-family: var(--mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #3a2f00;
    margin-top: 12px
}

/* OBRAS grid */
.ogrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
    grid-auto-rows: 190px
}

.ocell {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block
}

.ocell .photo {
    position: absolute;
    inset: 0;
    transition: .6s
}

.ocell:hover .photo {
    transform: scale(1.06);
    filter: grayscale(0) contrast(1.05)
}

.ocell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0, 0, 0, .72));
    z-index: 2
}

.ocell .cap {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 3;
    font-family: var(--titulo);
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase
}

.ocell .cap small {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--amarillo);
    font-weight: 400
}

.o1 {
    grid-column: span 7;
    grid-row: span 2
}

.o2 {
    grid-column: span 5
}

.o3 {
    grid-column: span 5
}

.o4 {
    grid-column: span 4
}

.o5 {
    grid-column: span 4
}

.o6 {
    grid-column: span 4
}

/* obras como tarjetas (pagina obras) */
.obras-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.ocard {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: var(--carbon);
    border: 1px solid var(--linea);
    transition: .25s
}

.ocard:hover {
    transform: translateY(-4px);
    border-color: var(--amarillo)
}

.ocard .ph {
    height: 220px
}

.ocard .meta {
    padding: 18px 20px
}

.ocard .meta small {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--amarillo)
}

.ocard .meta h3 {
    font-size: 21px;
    text-transform: uppercase;
    margin-top: 4px
}

.ocard .meta .go {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--txt-mute);
    margin-top: 8px
}

/* OBRA detalle galeria */
.gal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.gal .photo {
    height: 280px;
    border-radius: 10px
}

.gal .ph-empty {
    height: 280px;
    border-radius: 10px;
    border: 1px dashed var(--linea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--txt-mute);
    text-align: center;
    padding: 16px
}

/* PERI */
.peri-sec {
    padding: 100px 0;
    border-top: 3px solid var(--peri);
    position: relative;
    overflow: hidden;
    background: #fff;
    color: var(--txt-dark)
}

.peri-sec::before {
    content: "PERI";
    position: absolute;
    right: -2%;
    top: 8%;
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 26vw;
    color: rgba(237, 22, 57, .045);
    z-index: 0;
    pointer-events: none;
    letter-spacing: -.04em
}

.peri-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: stretch;
    margin-bottom: 26px
}

.peri-logo {
    height: 54px;
    width: auto;
    margin-bottom: 22px
}

.peri-top h2 {
    font-size: clamp(38px, 5.5vw, 78px);
    text-transform: uppercase;
    margin: 8px 0 20px
}

.peri-top h2 .r {
    color: var(--peri)
}

.peri-top h2 .d {
    color: var(--txt-dark)
}

.peri-top .desc {
    color: var(--txt-mid);
    max-width: 470px;
    font-size: 16.5px;
    margin-bottom: 26px
}

.peri-feats {
    list-style: none;
    display: grid;
    gap: 18px;
    margin-bottom: 28px
}

.peri-feats li {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.peri-feats .ic {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(237, 22, 57, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

.peri-feats .ic svg {
    width: 22px;
    height: 22px;
    stroke: var(--peri);
    fill: none;
    stroke-width: 2
}

.peri-feats h4 {
    font-size: 16px;
    color: var(--txt-dark);
    margin-bottom: 3px
}

.peri-feats p {
    color: var(--txt-mid);
    font-size: 14.5px
}

.peri-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.peri-photo {
    border-radius: 14px;
    border: 2px solid var(--peri);
    min-height: 480px;
    filter: none
}

.peri-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.pcard {
    background: var(--hueso);
    border: 1px solid var(--linea-d);
    border-radius: 14px;
    padding: 26px 22px
}

.pcard .ic {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(237, 22, 57, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.pcard .ic svg {
    width: 24px;
    height: 24px;
    stroke: var(--peri);
    fill: none;
    stroke-width: 2
}

.pcard h4 {
    font-size: 15px;
    color: var(--txt-dark);
    text-transform: uppercase;
    margin-bottom: 6px
}

.pcard p {
    color: var(--txt-mid);
    font-size: 14px
}

.nav ul a.nav-peri {
    color: var(--peri)
}

.nav ul a.nav-peri:hover {
    color: var(--peri);
    opacity: .78
}

.iso-badge-img {
    width: 128px;
    height: auto;
    border-radius: 16px;
    flex: 0 0 auto
}

.pcaro {
    position: relative;
    max-width: 840px;
    margin: 54px auto 0
}

.pcaro-track {
    position: relative;
    height: 400px
}

.pslide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity .55s ease;
    -webkit-mask-image: radial-gradient(ellipse 80% 82% at 50% 48%, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 82% at 50% 48%, #000 60%, transparent 100%)
}

.pslide.act {
    opacity: 1
}

.pnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--linea);
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

.pnav:hover {
    border-color: var(--peri);
    color: var(--peri)
}

.pprev {
    left: -8px
}

.pnext {
    right: -8px
}

.pdots {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 24px
}

.pdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    cursor: pointer;
    transition: .2s
}

.pdot.act {
    background: var(--peri);
    transform: scale(1.2)
}

@media(max-width:768px) {
    .pcaro-track {
        height: 260px
    }

    .pprev {
        left: 2px
    }

    .pnext {
        right: 2px
    }
}

/* GRUPO AZ */
.az {
    background: var(--negro2);
    padding: 90px 0;
    border-top: 1px solid var(--linea)
}

.az-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center
}

.az-grid h2 {
    font-size: clamp(30px, 4vw, 52px);
    text-transform: uppercase
}

.az-grid p {
    color: var(--txt-light);
    margin: 16px 0 26px;
    max-width: 380px
}

.az-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.az-brand {
    border: 1px solid var(--linea);
    border-radius: 12px;
    padding: 22px 12px;
    text-align: center;
    transition: .25s
}

.az-brand:hover {
    border-color: var(--amarillo);
    background: rgba(255, 181, 0, .04)
}

.az-brand .bn {
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 17px;
    color: #fff;
    margin-bottom: 6px
}

.az-brand .bd {
    font-size: 12px;
    color: var(--txt-mute)
}

/* ISO */
.iso {
    background: linear-gradient(118deg, #cdd0d4 0%, #eef0f2 20%, #bfc2c6 44%, #eaecee 62%, #c5c8cc 82%, #dcdee1 100%);
    color: #1d2024;
    padding: 74px 0;
    position: relative
}

.iso::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 2px, rgba(0, 0, 0, .018) 2px 4px);
    pointer-events: none
}

.iso .wrap {
    position: relative;
    z-index: 1
}

.iso-grid {
    display: flex;
    align-items: center;
    gap: 46px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center
}

.iso-badge {
    width: 120px;
    height: 150px;
    border: 3px solid #0B4F9E;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0B4F9E;
    font-family: var(--titulo);
    background: #fff;
    flex: 0 0 auto
}

.iso-badge .b1 {
    font-weight: 900;
    font-size: 30px;
    letter-spacing: .04em
}

.iso-badge .b2 {
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px
}

.iso-badge .b3 {
    font-size: 11px;
    color: #444;
    margin-top: 8px;
    border-top: 1px solid #0B4F9E;
    padding-top: 6px
}

.iso-txt {
    max-width: 520px;
    text-align: left
}

.iso-txt h3 {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.iso-txt p {
    color: var(--txt-mid);
    font-size: 16px
}

.iso-txt .scope {
    margin-top: 12px;
    font-weight: 700;
    color: var(--txt-dark);
    border-left: 4px solid var(--amarillo);
    padding-left: 14px
}

/* chip ISO en hero */
.hero-iso {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 50px;
    padding: 9px 24px 9px 9px
}

.hero-iso img {
    height: 52px;
    border-radius: 7px
}

.hero-iso span {
    font-family: var(--mono);
    font-size: 13.5px;
    color: #2f2f2c;
    text-transform: uppercase;
    letter-spacing: .03em
}

/* icono de servicio (reemplaza numero) */
.srv .sico {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    background: var(--negro);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

.srv .sico svg {
    width: 42px;
    height: 42px;
    stroke: var(--amarillo);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* contacto Get in Touch + mapa */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--linea);
    border: 1px solid var(--linea);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 24px
}

.cinfo {
    background: var(--negro2);
    padding: 36px
}

.cinfo .ci {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 24px
}

.cinfo .ci:last-child {
    margin-bottom: 0
}

.cinfo .ci .ic {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: rgba(255, 181, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

.cinfo .ci .ic svg {
    width: 22px;
    height: 22px;
    stroke: var(--amarillo);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cinfo .ci h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 4px
}

.cinfo .ci p {
    color: var(--txt-light);
    font-size: 15px
}

.cmap {
    min-height: 380px;
    background: #111
}

.cmap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    filter: grayscale(.35) contrast(1.05)
}

/* clientes */
.clientes {
    background: var(--hueso);
    color: var(--txt-dark);
    padding: 74px 0
}

.cli {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.cli .lg {
    background: #fff;
    border: 1px solid var(--linea-d);
    border-radius: 12px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: .25s
}

.cli .lg:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transform: translateY(-3px)
}

.cli .lg img {
    max-width: 100%;
    max-height: 74px;
    width: auto;
    mix-blend-mode: multiply
}

@media(max-width:768px) {
    .cli {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* CONTACTO */
.cta-sec {
    padding: 110px 0;
    border-top: 1px solid var(--linea)
}

.cta-sec .big {
    font-size: clamp(36px, 6vw, 92px);
    text-transform: uppercase;
    line-height: .95;
    margin-bottom: 12px
}

.cta-sec .big .y {
    color: var(--amarillo)
}

.cta-sec .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px
}

.cta-sec .top p {
    max-width: 380px;
    color: var(--txt-light)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--linea);
    border: 1px solid var(--linea);
    border-radius: 14px;
    overflow: hidden
}

.fcell {
    background: var(--negro2);
    padding: 22px 26px
}

.fcell.full {
    grid-column: 1/-1
}

.fcell label {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #dedede;
    margin-bottom: 10px
}

.fcell input,
.fcell select,
.fcell textarea {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    font-family: var(--cuerpo);
    font-size: 17px;
    padding: 4px 0
}

.fcell input::placeholder,
.fcell textarea::placeholder {
    color: #5a5a55
}

.fcell input:focus,
.fcell select:focus,
.fcell textarea:focus {
    outline: none
}

.fcell select option {
    background: #1a1a1a
}

.fcell textarea {
    min-height: 80px;
    resize: vertical
}

.send-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px
}

footer {
    padding: 74px 0 34px;
    border-top: 1px solid var(--linea);
    background: #070707
}

.foot-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 54px
}

.foot-top .logo img {
    height: 60px;
    margin-bottom: 16px
}

.foot-top p {
    color: var(--txt-mute);
    font-size: 15px;
    max-width: 300px
}

footer h4 {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--txt-mute);
    margin-bottom: 18px;
    font-weight: 400
}

footer ul {
    list-style: none;
    display: grid;
    gap: 11px;
    font-size: 15px;
    color: var(--txt-light)
}

footer a:hover {
    color: var(--amarillo)
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    color: #6a6a64;
    border-top: 1px solid var(--linea);
    padding-top: 22px
}


/* ===== CAPA DE IDENTIDAD (decoración, detrás del contenido) ===== */
.intro,
.cta-sec {
    position: relative;
    overflow: hidden
}

.intro>.wrap,
.cta-sec>.wrap {
    position: relative;
    z-index: 2
}

.intro::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 500px;
    height: 500px;
    background: url(assets/logo-white.png) center/contain no-repeat;
    opacity: .05;
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 0
}

.cta-sec::after {
    content: "";
    position: absolute;
    left: -130px;
    top: -80px;
    width: 450px;
    height: 450px;
    background: url(assets/logo-white.png) center/contain no-repeat;
    opacity: .045;
    transform: rotate(8deg);
    pointer-events: none;
    z-index: 0
}

.stats {
    position: relative;
    overflow: hidden
}

.stats>.wrap {
    position: relative;
    z-index: 2
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(0, 0, 0, .045) 0 2px, transparent 2px 12px);
    pointer-events: none;
    z-index: 0
}

.obras-sec .head,
.serv-sec .head {
    position: relative
}

@media(max-width:1024px) {
    .srv {
        grid-template-columns: auto 1fr;
        gap: 24px
    }

    .srv .pic {
        display: none
    }

    .peri-top {
        grid-template-columns: 1fr
    }

    .peri-photo {
        min-height: 300px
    }

    .peri-cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .az-grid {
        grid-template-columns: 1fr
    }

    .az-logos {
        grid-template-columns: repeat(3, 1fr)
    }

    .ogrid {
        grid-auto-rows: 160px
    }

    .obras-cards {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .foot-top {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .wrap {
        padding: 0 20px
    }

    .nav {
        margin: 0 16px
    }

    .nav ul,
    .nav .right .btn {
        display: none
    }

    .burger {
        display: block
    }

    section.block,
    .intro,
    .peri-sec,
    .az,
    .cta-sec {
        padding: 60px 0
    }

    .subhero {
        padding: 120px 0 44px
    }

    .hero {
        min-height: 88vh
    }

    .hero-right {
        align-items: flex-start
    }

    .hero-logo {
        height: 54px
    }

    .stats .wrap {
        grid-template-columns: 1fr 1fr;
        gap: 30px 18px
    }

    .stats .stat:nth-child(3) {
        border-left: 0;
        padding-left: 0
    }

    .srv {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .srv .sico {
        display: none
    }

    .srv .pic {
        display: block;
        order: -1;
        height: 190px
    }

    .srv .mid>p,
    .srv .chk {
        display: none
    }

    .srv .mid h3 {
        font-size: 24px
    }

    .ogrid {
        grid-template-columns: 1fr;
        grid-auto-rows: 210px
    }

    .o1,
    .o2,
    .o3,
    .o4,
    .o5,
    .o6 {
        grid-column: span 1;
        grid-row: span 1
    }

    .obras-cards,
    .gal {
        grid-template-columns: 1fr
    }

    .peri-cards {
        grid-template-columns: 1fr
    }

    .az-logos {
        grid-template-columns: 1fr 1fr
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .foot-top {
        grid-template-columns: 1fr
    }

    .contact {
        grid-template-columns: 1fr
    }

    .iso-grid {
        flex-direction: column
    }

    .iso-txt {
        text-align: center
    }

    .iso-txt .scope {
        text-align: left
    }
}

/* obras a color (2da ronda) */
.ocell .photo,
.ocard .ph,
.gal .photo {
    filter: none
}

/* menu mobile funcional */
@media(max-width:768px) {
    .nav {
        position: relative
    }

    .nav.open ul {
        display: flex;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        border-radius: 14px;
        padding: 18px 22px;
        gap: 16px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
        z-index: 70
    }

    .nav.open ul a {
        color: #2a2a2a;
        font-size: 15px
    }

    .nav.open .right .btn {
        display: inline-flex
    }
}

/* valores (nosotros) */
.valores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.val {
    background: var(--carbon);
    border: 1px solid var(--linea);
    border-radius: 14px;
    padding: 26px 22px
}

.val h4 {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff
}

.val p {
    color: var(--txt-light);
    font-size: 14.5px
}

.img-color {
    filter: none !important
}

@media(max-width:768px) {
    .valores {
        grid-template-columns: 1fr
    }
}

.tipos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.tipo {
    background: #fff;
    border: 1px solid var(--linea-d);
    border-left: 3px solid var(--amarillo);
    border-radius: 10px;
    padding: 20px 22px
}

.tipo h4 {
    text-transform: uppercase;
    font-size: 16px;
    color: var(--txt-dark);
    margin-bottom: 6px
}

.tipo p {
    color: var(--txt-mid);
    font-size: 14.5px
}

@media(max-width:768px) {
    .tipos {
        grid-template-columns: 1fr
    }
}

.cli-caro {
    position: relative
}

.cli-viewport {
    display: grid
}

.cli-slide {
    grid-area: 1/1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    opacity: 0;
    transition: opacity .6s;
    pointer-events: none
}

.cli-slide.act {
    opacity: 1;
    pointer-events: auto
}

.cli-dots {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 30px
}

.cdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .2);
    cursor: pointer;
    transition: .2s
}

.cdot.act {
    background: var(--amarillo-d);
    transform: scale(1.2)
}

@media(max-width:768px) {
    .cli-slide {
        grid-template-columns: 1fr 1fr
    }
}

.preq-sec {
    margin-bottom: 26px
}

.preq-sec h3 {
    font-family: var(--titulo);
    text-transform: uppercase;
    font-size: 18px;
    color: var(--amarillo);
    margin-bottom: 16px
}

.unit {
    display: flex;
    gap: 8px
}

.unit input {
    flex: 1;
    min-width: 0
}

.unit select {
    width: 86px;
    flex: 0 0 auto
}

.adic {
    display: grid;
    gap: 1px;
    background: var(--linea);
    border: 1px solid var(--linea);
    border-radius: 12px;
    overflow: hidden
}

.ad {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: var(--negro2);
    padding: 16px 22px;
    flex-wrap: wrap
}

.ad span {
    font-size: 15px;
    color: var(--txt-light)
}

.yn {
    display: flex;
    gap: 16px
}

.yn label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--txt-light);
    cursor: pointer;
    font-family: var(--mono)
}

.yn input {
    accent-color: var(--amarillo)
}

.adic-note {
    margin-top: 12px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--txt-mute)
}

.stats-cta {
    max-width: var(--max);
    margin: 34px auto 0;
    padding: 0 48px
}

@media(max-width:768px) {
    .stats-cta {
        padding: 0 20px
    }
}

/* Nosotros: infografia amarilla misión/visión/valores */
.esencia {
    background: var(--amarillo);
    color: #000;
    padding: 80px 0
}

.esencia .head h2 {
    color: #000
}

.mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start
}

.mvv-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px
}

.mvv-ic {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px
}

.mvv-ic svg {
    width: 26px;
    height: 26px;
    stroke: var(--amarillo);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.mvv-card h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px
}

.mvv-card>p {
    color: #444;
    font-size: 15.5px
}

.mvv-card ul {
    list-style: none;
    display: grid;
    gap: 11px
}

.mvv-card li {
    font-size: 14px;
    color: #3a3a3a
}

.mvv-card li b {
    display: block;
    color: #000;
    text-transform: uppercase;
    font-family: var(--titulo);
    font-size: 13px;
    letter-spacing: .02em;
    margin-bottom: 2px
}

@media(max-width:768px) {
    .mvv {
        grid-template-columns: 1fr
    }
}

/* Contacto: mas color */
.contact {
    border-top: 3px solid var(--amarillo)
}

.cinfo .ci .ic {
    background: var(--amarillo)
}

.cinfo .ci .ic svg {
    stroke: #000
}

.cmap iframe {
    filter: none
}

/* esencia: tramado + valores a lo ancho */
.esencia {
    position: relative;
    overflow: hidden
}

.esencia .wrap {
    position: relative;
    z-index: 1
}

.esencia::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(0, 0, 0, .05) 0 2px, transparent 2px 12px);
    pointer-events: none;
    z-index: 0
}

.mvv {
    grid-template-columns: 1fr 1fr
}

.mvv-card.full {
    grid-column: 1/-1
}

.val-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px 26px;
    margin-top: 6px
}

.vitem b {
    display: block;
    color: #000;
    text-transform: uppercase;
    font-family: var(--titulo);
    font-size: 13px;
    letter-spacing: .02em;
    margin-bottom: 3px
}

.vitem span {
    color: #3a3a3a;
    font-size: 14px
}

/* PERI page: ISO destacado + galeria */
.peri-iso {
    background: #0A0A0A;
    color: #fff;
    padding: 66px 0;
    border-top: 3px solid var(--peri);
    border-bottom: 3px solid var(--peri)
}

.peri-iso-box {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap
}

.peri-iso-box img {
    width: 118px;
    height: auto;
    border-radius: 14px;
    flex: 0 0 auto
}

.peri-iso-box h3 {
    font-size: clamp(22px, 3vw, 38px);
    text-transform: uppercase;
    line-height: 1.05;
    max-width: 820px;
    margin-top: 6px
}

.peri-gal2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

@media(max-width:768px) {
    .peri-gal2 {
        grid-template-columns: 1fr
    }

    .peri-iso-box {
        gap: 20px
    }
}

/* Retoques julio: MVV al costado, redes, lightbox */
.mvv-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.mvv-head h3 {
    margin: 0
}

.mvv-card .mvv-head .mvv-ic {
    margin: 0
}

.social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin-top: 8px
}

.social a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--linea);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt-light);
    transition: .2s
}

.social a:hover {
    background: var(--amarillo);
    border-color: var(--amarillo);
    color: #000
}

.social svg {
    width: 17px;
    height: 17px;
    fill: currentColor
}

#lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, .93);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 24px
}

#lightbox.on {
    display: flex
}

#lightbox img {
    max-width: 95%;
    max-height: 92%;
    border-radius: 8px;
    filter: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6)
}

.obra-addr {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 13.5px;
    color: var(--txt-light);
    border: 1px solid var(--linea);
    border-radius: 40px;
    padding: 9px 18px;
    margin-bottom: 26px
}

.obra-addr a {
    color: var(--amarillo)
}

.obra-addr svg {
    width: 15px;
    height: 15px;
    stroke: var(--amarillo);
    fill: none;
    stroke-width: 2;
    flex: 0 0 auto
}

.az-brand .bn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px
}

.az-brand .bn img {
    height: 30px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: .92
}

.az-brand:hover .bn img {
    opacity: 1
}

a.az-brand {
    cursor: pointer;
    display: block;
    color: inherit
}

a.az-brand:hover {
    background: var(--amarillo);
    border-color: var(--amarillo)
}

a.az-brand:hover .bd {
    color: #151515
}

a.az-brand:hover .bn img {
    filter: invert(1);
    opacity: 1
}

.az-brand.nolink {
    cursor: default
}

/* MVV MOBILE FIX */
@media(max-width:768px) {
    .mvv {
        grid-template-columns: 1fr !important
    }

    .mvv-card.full {
        grid-column: 1/-1
    }

    .val-grid {
        grid-template-columns: 1fr
    }

    .mvv-card {
        padding: 24px 20px
    }

    .esencia {
        padding: 56px 0
    }
}

/* Clientes marquee (cinta) */
.cli-marquee {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
}

.cli-track {
    display: flex;
    width: max-content;
    animation: cli-scroll 60s linear infinite
}

.cli-marquee:hover .cli-track {
    animation-play-state: paused
}

.cli-track .lg {
    flex: 0 0 auto;
    width: 178px;
    height: 108px;
    margin-right: 18px;
    background: #fff;
    border: 1px solid var(--linea-d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: .25s
}

.cli-track .lg img {
    max-width: 100%;
    max-height: 62px;
    width: auto;
    mix-blend-mode: multiply
}

@keyframes cli-scroll {
    to {
        transform: translateX(-50%)
    }
}

@media(max-width:768px) {
    .cli-track .lg {
        width: 140px;
        height: 92px;
        margin-right: 14px
    }
}

.btn-wpp {
    background: #25D366;
    color: #fff;
    border: none;
    gap: 9px
}

.btn-wpp:hover {
    background: #1EBE5A;
    transform: translateY(-2px)
}

.btn-lg {
    padding: 18px 34px;
    font-size: 15px
}

.cta-wpp {
    margin-top: 30px
}

/* Servicios: checks + acordeon + tarjetas */
.checks {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin: 10px 0 6px
}

.check-it {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    color: var(--txt-dark);
    font-size: 14.5px
}

.check-it svg {
    width: 20px;
    height: 20px;
    stroke: var(--amarillo-d);
    fill: none;
    stroke-width: 2.2
}

.acc {
    border-top: 1px solid var(--linea-d)
}

.acc-item {
    border-bottom: 1px solid var(--linea-d)
}

.acc-head {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    font-family: var(--titulo);
    font-weight: 800;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--txt-dark);
    text-transform: uppercase;
    letter-spacing: -.01em
}

.acc-head:hover {
    color: var(--amarillo-d)
}

.acc-ico {
    font-family: var(--mono);
    font-size: 24px;
    color: var(--amarillo-d);
    transition: .25s;
    line-height: 1
}

.acc-item.open .acc-ico {
    transform: rotate(45deg)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.acc-item.open .acc-body {
    max-height: 2000px
}

.acc-body-inner {
    padding: 2px 4px 26px
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.svc-card {
    background: #fff;
    border: 1px solid var(--linea-d);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.svc-card .ph {
    height: 150px
}

.svc-card .ph.photo {
    filter: grayscale(1) contrast(1.05);
    transition: .4s
}

.svc-card:hover .ph.photo {
    filter: grayscale(0) contrast(1.05)
}

.svc-card .bd {
    padding: 22px
}

.svc-ico {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--negro);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.svc-ico svg {
    width: 26px;
    height: 26px;
    stroke: var(--amarillo);
    fill: none;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.svc-card h3 {
    font-size: 21px;
    color: var(--txt-dark);
    margin-bottom: 8px;
    text-transform: uppercase
}

.svc-card p {
    color: var(--txt-mid);
    font-size: 14.5px;
    margin-bottom: 14px
}

.svc-card .chk {
    list-style: none;
    display: grid;
    gap: 8px
}

.svc-card .chk li,
.chk-dark li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 14px;
    color: #33332f;
    font-weight: 600
}

.svc-card .chk li svg,
.chk-dark li svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    stroke: var(--amarillo-d);
    fill: none;
    stroke-width: 2.4;
    margin-top: 2px
}

@media(max-width:768px) {
    .svc-grid {
        grid-template-columns: 1fr
    }
}

.acc-desc {
    color: var(--txt-mid);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 840px
}

.smini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px
}

.smini {
    background: #fff;
    border: 1px solid var(--linea-d);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    transition: .25s;
    color: var(--txt-dark)
}

.smini:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
    transform: translateY(-3px);
    border-color: var(--amarillo-d)
}

.smini-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--negro);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.smini-ico svg {
    width: 28px;
    height: 28px;
    stroke: var(--amarillo);
    fill: none;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.smini h4 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--txt-dark);
    margin-bottom: 8px
}

.smini p {
    color: var(--txt-mid);
    font-size: 14px;
    flex: 1
}

.smini-go {
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--amarillo-d);
    font-weight: 700
}

@media(max-width:768px) {
    .smini-grid {
        grid-template-columns: 1fr
    }
}

.subhero-logo {
    height: 132px;
    width: auto;
    display: block;
    margin: 10px 0 4px
}

.peri-logo-title {
    height: 84px;
    width: auto;
    display: block;
    margin: 10px 0 18px
}

@media(max-width:768px) {
    .subhero-logo {
        height: 88px
    }

    .peri-logo-title {
        height: 60px
    }
}

.sico .ico-img,
.svc-ico .ico-img,
.smini-ico .ico-img {
    width: 62%;
    height: 62%;
    object-fit: contain;
    display: block
}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px
}

.hero-tt {
    flex: 1;
    min-width: 0
}

.hero-badge {
    flex: 0 0 auto;
    z-index: 3;
    background: #fff;
    border: 2px solid #0a4c9e;
    border-radius: 14px;
    padding: 18px 18px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 156px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
    transform: translate(-12px, 17px)
}

.hero-badge img {
    width: 96px;
    height: auto;
    border-radius: 7px
}

.hero-badge .hb-t1 {
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 13px;
    color: #0a4c9e;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.12
}

.hero-badge .hb-t2 {
    font-family: var(--titulo);
    font-weight: 800;
    font-size: 15px;
    color: #0a4c9e;
    text-align: center;
    border-top: 1px solid #cdd8e8;
    padding-top: 8px;
    width: 100%
}

@media(max-width:900px) {
    .hero-top {
        display: block;
        position: static
    }

    .hero-tt {
        min-width: 0
    }

    .hero-badge {
        position: absolute;
        right: 20px;
        bottom: 10px;
        width: 76px;
        transform: none;
        margin: 0;
        padding: 8px 8px 7px;
        gap: 5px;
        border-radius: 10px
    }

    .hero-badge img {
        width: 44px
    }

    .hero-badge .hb-t1 {
        font-size: 7.5px
    }

    .hero-badge .hb-t2 {
        font-size: 8.5px;
        padding-top: 5px
    }
}
