:root {
    --azul: #0B2D5E;
    --azul-m: #1A4A8A;
    --azul-c: #1E5FAD;
    --naranja: #FF5C00;
    --naranja-o: #D44A00;
    --blanco: #fff;
    --gris-bg: #F4F6FA;
    --gris-t: #555E6D;
    --gris-b: #DDE3EE;
    --texto: #0B1A30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans',sans-serif;
    color: var(--texto);
    background: var(--blanco);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* TOPBAR */
.topbar {
    background: var(--azul);
    color: rgba(255,255,255,.65);
    font-size: 12px;
    padding: 7px 6%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

    .topbar a {
        color: rgba(255,255,255,.65);
        transition: .2s;
    }

        .topbar a:hover {
            color: var(--naranja);
        }

.tb-l, .tb-r {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    box-shadow: 0 2px 18px rgba(11,45,94,.1);
}

.nav-in {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-box {
    width: 46px;
    height: 46px;
    background: var(--azul);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    overflow: hidden;
}

    .nav-logo-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .nav-logo-box.no-img {
        display: flex;
    }

.nl-top {
    font-family: 'Montserrat',sans-serif;
    font-weight: 900;
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--naranja);
    text-transform: uppercase;
}

.nl-mid {
    font-family: 'Montserrat',sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}

.nl-bot {
    width: 100%;
    height: 2px;
    background: var(--naranja);
    margin-top: 3px;
    border-radius: 1px;
}

.nav-brand {
    font-family: 'Montserrat',sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--azul);
    letter-spacing: 1px;
}

    .nav-brand span {
        color: var(--naranja);
    }

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

    .nav-links a {
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 600;
        color: var(--gris-t);
        border-radius: 6px;
        transition: .2s;
    }

        .nav-links a:hover {
            color: var(--azul);
            background: var(--gris-bg);
        }

.nav-cta {
    background: var(--naranja) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
}

    .nav-cta:hover {
        background: var(--naranja-o) !important;
        color: #fff !important;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

    .hamburger span {
        width: 24px;
        height: 2.5px;
        background: var(--azul);
        display: block;
        border-radius: 2px;
    }

@media(max-width:900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 6%;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
        gap: 4px;
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: flex;
    }
}

/* HERO */
#hero {
    position: relative;
    height: calc(100vh - 108px);
    min-height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

    .slide.active {
        opacity: 1;
    }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--azul);
    transition: transform 8s linear;
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,rgba(11,45,94,.92) 0%,rgba(11,45,94,.65) 50%,rgba(11,45,94,.15) 100%);
}

.hero-c {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--naranja);
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 3px;
    margin-bottom: 22px;
    width: fit-content;
}

    .hero-badge::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #fff;
        animation: pulse 1.8s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.6);
    }
}

.hero-h {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(36px,6vw,74px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
}

    .hero-h .acc {
        color: var(--naranja);
    }

.hero-sub {
    font-size: clamp(14px,1.5vw,17px);
    color: rgba(255,255,255,.8);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 34px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-p {
    background: var(--naranja);
    color: #fff;
    padding: 14px 32px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: .25s;
    display: inline-block;
}

    .btn-p:hover {
        background: var(--naranja-o);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,92,0,.35);
    }

.btn-s {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,.5);
    cursor: pointer;
    border-radius: 4px;
    transition: .25s;
    display: inline-block;
}

    .btn-s:hover {
        border-color: #fff;
        background: rgba(255,255,255,.1);
        color: #fff;
    }

.sl-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

    .sl-ctrl:hover {
        background: var(--naranja);
    }

.sl-prev {
    left: 20px;
}

.sl-next {
    right: 20px;
}

.sl-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.s-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: .3s;
}

    .s-dot.active {
        background: var(--naranja);
        width: 26px;
        border-radius: 4px;
    }

/* BONDADES */
.bondades {
    background: var(--naranja);
    overflow: hidden;
    padding: 13px 0;
}

.bond-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.bond-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
}

.bond-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
.sec {
    padding: 90px 6%;
}

.sec-in {
    max-width: 1280px;
    margin: 0 auto;
}

.sec-lbl {
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--naranja);
    margin-bottom: 10px;
}

.sec-title {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(28px,4vw,48px);
    font-weight: 900;
    color: var(--azul);
    line-height: 1.1;
    margin-bottom: 18px;
}

    .sec-title span {
        color: var(--naranja);
    }

.sec-desc {
    font-size: 15px;
    color: var(--gris-t);
    line-height: 1.8;
    max-width: 620px;
    font-weight: 300;
}

/* ── FONDO ANIMADO: canvas absoluto dentro de la sección ── */
.sec-con-fondo {
    position: relative;
    overflow: hidden;
}

    .sec-con-fondo canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .sec-con-fondo > .sec-in {
        position: relative;
        z-index: 1;
    }

/* NOSOTROS */
#nosotros {
    background: #e8edf5;
}

.nos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.nos-text p {
    font-size: 15.5px;
    color: var(--gris-t);
    line-height: 1.85;
    margin-bottom: 18px;
    font-weight: 300;
}

.nos-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 36px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 8px 8px 22px rgba(11,45,94,.13),-5px -5px 15px rgba(255,255,255,.9);
}

.st-box {
    padding: 22px 18px;
    text-align: center;
    border-right: 1px solid rgba(11,45,94,.1);
}

    .st-box:last-child {
        border-right: none;
    }

.st-n {
    font-family: 'Montserrat',sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--azul);
    line-height: 1;
}

    .st-n span {
        color: var(--naranja);
    }

.st-l {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gris-t);
    margin-top: 6px;
}

.nos-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nos-img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    background: var(--azul-m);
}

    .nos-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

    .nos-img:hover img {
        transform: scale(1.05);
    }

    .nos-img.tall {
        grid-row: span 2;
        aspect-ratio: auto;
    }

        .nos-img.tall img {
            height: 100%;
        }

.img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--naranja);
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
}

.nos-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

    .nos-img-placeholder svg {
        opacity: .3;
    }

@media(max-width:900px) {
    .nos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nos-imgs {
        display: none;
    }
}

/* PRODUCTOS */
#productos {
    background: #f0ece4;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(288px,1fr));
    gap: 22px;
    margin-top: 42px;
}

.prod-card {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.65);
    box-shadow: 7px 7px 20px rgba(90,60,10,.12),-4px -4px 14px rgba(255,255,255,.9);
    transition: transform .3s,box-shadow .3s;
}

    .prod-card:hover {
        transform: translateY(-6px);
        box-shadow: 12px 12px 32px rgba(90,60,10,.18),-5px -5px 18px rgba(255,255,255,.95);
    }

.prod-img-w {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: #e8eef7;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .prod-img-w img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.prod-card:hover .prod-img-w img {
    transform: scale(1.07);
}

.prod-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--naranja);
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}

.prod-body {
    padding: 20px 22px 22px;
}

.prod-name {
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--azul);
    margin-bottom: 8px;
}

.prod-desc {
    font-size: 13.5px;
    color: var(--gris-t);
    line-height: 1.65;
    margin-bottom: 12px;
}

.uso-chip {
    display: inline-flex;
    background: rgba(11,45,94,.07);
    color: var(--azul-m);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    border: 1px solid rgba(11,45,94,.1);
    margin: 2px 3px 2px 0;
}

.prod-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--naranja);
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.prod-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px;
    color: #bbb;
    font-family: 'Montserrat',sans-serif;
    font-size: 16px;
    font-weight: 700;
}

/* DONDE COMPRAR */
#donde-comprar {
    background: #e6eaf3;
}

.dc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.dc-card {
    border-radius: 14px;
    padding: 24px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 7px 7px 18px rgba(11,45,94,.1),-4px -4px 12px rgba(255,255,255,.88);
    transition: transform .25s,box-shadow .25s,border-color .25s;
}

    .dc-card:hover {
        transform: translateY(-5px);
        box-shadow: 12px 12px 28px rgba(255,92,0,.14),-4px -4px 14px rgba(255,255,255,.9);
        border-color: rgba(255,92,0,.35);
    }

.dc-rif {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gris-t);
    margin-bottom: 5px;
}

.dc-nom {
    font-family: 'Montserrat',sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--azul);
    margin-bottom: 5px;
}

.dc-tel, .dc-dir {
    font-size: 13.5px;
    color: var(--gris-t);
    margin-bottom: 4px;
}

.dc-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--azul);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-top: 14px;
    transition: .2s;
}

    .dc-map:hover {
        background: var(--naranja);
        color: #fff;
    }

/* CONTACTO */
#contacto {
    background: var(--azul);
    padding: 90px 6%;
}

.ct-in {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ct-lbl {
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255,92,0,.9);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ct-title {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(30px,4vw,52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

    .ct-title span {
        color: var(--naranja);
    }

.ct-desc {
    color: rgba(255,255,255,.6);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 36px;
}

.ct-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ct-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,92,0,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ct-icon svg {
        stroke: var(--naranja);
    }

.ct-lbl2 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 2px;
}

.ct-val {
    font-size: 14.5px;
    color: rgba(255,255,255,.88);
}

.ct-form {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 36px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cf-g {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

    .cf-g label {
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,.45);
    }

    .cf-g input, .cf-g textarea, .cf-g select {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 7px;
        padding: 11px 15px;
        color: #fff;
        font-family: 'Open Sans',sans-serif;
        font-size: 14px;
        outline: none;
        transition: .2s;
    }

        .cf-g input:focus, .cf-g textarea:focus {
            border-color: var(--naranja);
        }

    .cf-g textarea {
        height: 108px;
        resize: vertical;
    }

    .cf-g select option {
        background: #1a4a8a;
    }

.cf-btn {
    width: 100%;
    background: var(--naranja);
    color: #fff;
    border: none;
    padding: 13px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 7px;
    cursor: pointer;
    transition: .25s;
}

    .cf-btn:hover {
        background: var(--naranja-o);
    }

.cf-ok {
    background: rgba(21,128,61,.2);
    border: 1px solid rgba(74,222,128,.3);
    color: #86efac;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    margin-top: 12px;
}

@media(max-width:900px) {
    .ct-in {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cf-row {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
footer {
    background: var(--azul);
    border-top: 1px solid rgba(255,255,255,.07);
}

.ft-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 6% 44px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
}

.ft-brand p {
    color: rgba(255,255,255,.45);
    font-size: 13.5px;
    line-height: 1.8;
    max-width: 270px;
    margin-top: 14px;
}

.ft-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    color: rgba(255,255,255,.6);
}

    .soc-btn:hover {
        background: var(--naranja);
        color: #fff;
    }

.ft-col h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 18px;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .ft-col ul a {
        font-size: 14px;
        color: rgba(255,255,255,.55);
        transition: .2s;
    }

        .ft-col ul a:hover {
            color: var(--naranja);
        }

.ft-info {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-bottom: 9px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.55;
}

    .ft-info svg {
        stroke: var(--naranja);
        flex-shrink: 0;
        margin-top: 2px;
    }

.ft-bot {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .ft-bot p {
        font-size: 12px;
        color: rgba(255,255,255,.3);
    }

    .ft-bot a {
        color: var(--naranja);
    }

@media(max-width:900px) {
    .ft-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* MODAL */
.modal-ov {
    position: fixed;
    inset: 0;
    background: rgba(11,29,60,.75);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

    .modal-ov.open {
        display: flex;
    }

.modal-box {
    background: #fff;
    border-radius: 16px;
    max-width: 620px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,.3);
}

.modal-head {
    padding: 22px 24px;
    border-bottom: 1px solid var(--gris-b);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-head h3 {
        font-family: 'Montserrat',sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--azul);
    }

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: var(--gris-bg);
    border: none;
    cursor: pointer;
    font-size: 17px;
    color: var(--gris-t);
}

.modal-body {
    padding: 24px;
}

    .modal-body img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 18px;
        background: #e8eef7;
    }

.m-cat {
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--naranja);
    margin-bottom: 8px;
}

.m-desc {
    font-size: 15px;
    color: var(--gris-t);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ── Logo PNG — ocupa el espacio completo sin cuadrado ni texto ── */
.nav-logo-img {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.ft-logo-img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    /*filter: brightness(0) invert(1);*/ /* fuerza blanco sobre fondo azul */
}
    /* Si el logo ya tiene versión blanca, quita el filtro desde admin config */
    .ft-logo-img.color {
        filter: none;
    }
