:root {
    --oro-gbl: #c5a059;
    --oro-gbl-suave: #ead39a;
    --transp-negra: rgba(0, 0, 0, 0.7);
    --transp-blanca: rgba(255, 255, 255, 0.1);
    --public-navbar-height: 91px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

img,
video,
canvas {
    height: auto;
}

.fondo-capa {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 2s ease-in-out;
    z-index: -1;
    opacity: 0;
}

.fondo-capa.visible {
    opacity: 1;
}

.navbar-gbl {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 0;
}

.navbar-container-custom {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
    justify-content: stretch;
    align-items: center;
    max-width: none;
    margin: 0 auto;
    padding: 0 clamp(14px, 2vw, 38px);
    width: 100%;
    min-width: 0;
}

.navbar-brand {
    grid-column: 1;
    justify-self: start;
}

.nav-custom-container {
    grid-column: 2;
    justify-self: center;
}

.nav-item-gbl {
    position: relative;
    margin: 0 5px;
}

.navbar-brand img {
    width: auto;
    height: 60px;
    display: block;
}

.nav-custom-container .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 4px;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.nav-link-gbl {
    color: #fff;
    text-transform: uppercase;
    font-size: .85rem;
    letter-spacing: 1.5px;
    padding: 15px 10px;
    display: block;
    text-decoration: none;
}

.nav-link-gbl:hover,
.nav-link-gbl.is-active {
    color: var(--oro-gbl);
}

.dropdown-content-gbl {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(0, 0, 0, .9);
    border: 1px solid rgba(197, 160, 89, .35);
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
    z-index: 1060;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .42);
}

.dropdown-content-gbl a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: .8rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    white-space: nowrap;
}

.dropdown-content-gbl a:last-child {
    border-bottom: 0;
}

.dropdown-content-gbl a:hover {
    background: var(--oro-gbl);
    color: #000;
}

.nav-item-gbl:hover .dropdown-content-gbl,
.nav-item-gbl:focus-within .dropdown-content-gbl {
    display: block;
}

.menu-hamburguesa-wrapper {
    position: fixed;
    right: 0;
    top: var(--public-navbar-height, 91px);
    width: 50px;
    height: 50px;
    z-index: 1050;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    overflow: visible;
    transition: top .2s ease;
    max-width: 100vw;
}

.trigger-zona {
    width: 50px;
    height: 50px;
    background: var(--oro-gbl);
    color: #000;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, .5);
}

.trigger-zona:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.sidebar-derecho {
    width: 0;
    max-width: 0;
    height: 0;
    box-sizing: border-box;
    max-height: calc(100vh - var(--public-navbar-height, 91px));
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(20px);
    transition: width .4s cubic-bezier(.4, 0, .2, 1), max-width .4s cubic-bezier(.4, 0, .2, 1), padding .2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.sidebar-derecho h4 {
    color: var(--oro-gbl);
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    margin: 0 0 24px;
}

.menu-hamburguesa-wrapper.is-open {
    width: min(330px, 100vw);
    height: auto;
}

.menu-hamburguesa-wrapper.is-open .sidebar-derecho {
    width: min(280px, calc(100vw - 50px));
    max-width: min(280px, calc(100vw - 50px));
    height: auto;
    padding: 25px;
    border-left: 1px solid var(--oro-gbl);
    overflow-y: auto;
    pointer-events: auto;
}

.btn-acceso {
    background: var(--transp-blanca);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 15px;
    margin-bottom: 12px;
    width: 100%;
    text-align: left;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: .3s;
    border-radius: 5px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.btn-acceso:hover {
    background: var(--oro-gbl);
    color: #000;
    transform: translateX(5px);
}

.informativos-publicos {
    margin-top: 36px;
}

.clientes-public-page {
    min-height: 100vh;
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.clientes-public-page .fondo-capa {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, .28), #000 92%),
        url('../img/fondos/fondo_index/en_uso/fondo_index2.png');
}

.clientes-public-main {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 150px 0 80px;
    min-width: 0;
}

.clientes-hero-card {
    background: linear-gradient(145deg, rgba(13, 12, 10, .92), rgba(0, 0, 0, .74));
    border: 1px solid rgba(197, 160, 89, .36);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

.clientes-hero-card {
    padding: clamp(26px, 4vw, 46px);
    min-width: 0;
    overflow-wrap: anywhere;
}

.clientes-kicker {
    color: var(--oro-gbl-suave);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.clientes-hero-card h1,
.clientes-reviews-section h2 {
    margin: 10px 0 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.clientes-hero-card h1 {
    font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.clientes-hero-card p {
    max-width: 720px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.clientes-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
    min-width: 0;
}

.cliente-logo-card {
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(197, 160, 89, .25);
    border-radius: 8px;
}

.cliente-logo-card img {
    max-width: 100%;
    max-height: 76px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .36));
}

.clientes-reviews-section {
    margin-top: 34px;
    padding: 0;
}

.clientes-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 0 4px;
    min-width: 0;
}

.clientes-section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.clientes-section-head span {
    color: var(--oro-gbl-suave);
    border: 1px solid rgba(197, 160, 89, .32);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
}

.clientes-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
    min-width: 0;
}

.cliente-review-card {
    min-height: 0;
    padding: 20px;
    background: linear-gradient(145deg, rgba(18, 16, 13, .88), rgba(0, 0, 0, .7));
    border: 1px solid rgba(197, 160, 89, .32);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
    min-width: 0;
}

.cliente-review-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(197, 160, 89, .18);
    min-width: 0;
}

.cliente-review-card__head strong {
    color: #fff;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.cliente-review-card__head span {
    color: var(--oro-gbl-suave);
    font-size: .78rem;
    white-space: nowrap;
}

.cliente-review-card p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.contacto-public-page {
    min-height: 100vh;
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.contacto-public-page .fondo-capa {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, .28), #000 92%),
        url('../img/fondos/fondo_index/en_uso/fondo_index2.png');
}

.contacto-public-main {
    width: min(1180px, calc(100% - 36px));
    min-height: calc(100vh - 250px);
    margin: 0 auto;
    padding: 150px 0 72px;
    min-width: 0;
}

.contacto-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, .38fr) minmax(320px, .62fr);
    gap: 20px;
    padding: clamp(18px, 3vw, 26px);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(13, 12, 10, .92), rgba(0, 0, 0, .76));
    border: 1px solid rgba(197, 160, 89, .36);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
    min-width: 0;
}

.contacto-watermark {
    position: absolute;
    right: -42px;
    bottom: -54px;
    width: min(340px, 42vw);
    aspect-ratio: 1;
    background: url('../img/logos/en_uso/logo_1.png') center/contain no-repeat;
    opacity: .045;
    pointer-events: none;
}

.contacto-info-card,
.contacto-form-card {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(197, 160, 89, .32);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    padding: clamp(20px, 3vw, 28px);
    min-width: 0;
}

.contacto-form-card {
    background: rgba(10, 9, 8, .9);
}

.contacto-kicker {
    color: var(--oro-gbl-suave);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contacto-info-card h1,
.contacto-form-head h2 {
    margin: 10px 0 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.contacto-info-card h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.contacto-form-head h2 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    margin-bottom: 8px;
}

.contacto-form-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 18px;
}

.contacto-form-head p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.contacto-form-head > span {
    color: var(--oro-gbl-suave);
    border: 1px solid rgba(197, 160, 89, .32);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .74rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.contacto-info-list {
    display: grid;
    gap: 12px;
}

.contacto-info-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, .18);
    padding-bottom: 12px;
}

.contacto-info-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contacto-info-item i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--oro-gbl-suave);
    border: 1px solid rgba(197, 160, 89, .25);
    border-radius: 8px;
    background: rgba(197, 160, 89, .12);
}

.contacto-info-item strong {
    display: block;
    color: var(--oro-gbl-suave);
    margin-bottom: 4px;
}

.contacto-info-item span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contacto-info-item:hover {
    color: #fff;
}

.contacto-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.contacto-form label {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.contacto-form label > span:first-child {
    color: rgba(255, 255, 255, .68);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    border: 1px solid rgba(197, 160, 89, .66);
    background: #f5efe2;
    color: #332a1c;
    border-radius: 8px;
    padding: 12px 13px;
    outline: none;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: #5a4d3a;
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    border-color: var(--oro-gbl-suave);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, .2);
}

.contacto-form textarea {
    min-height: 122px;
    resize: vertical;
}

.contacto-check,
.contacto-message,
.contacto-submit {
    grid-column: 1 / -1;
}

.contacto-check {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    flex-direction: row;
    color: rgba(255, 255, 255, .74);
}

.contacto-check input {
    width: 18px;
    height: 18px;
    padding: 0;
    accent-color: var(--oro-gbl);
}

.contacto-message {
    position: relative;
}

.contacto-message small {
    color: rgba(255, 255, 255, .56);
    justify-self: end;
}

.contacto-submit {
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    background: var(--oro-gbl);
    color: #120e08;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contacto-submit:hover {
    filter: brightness(1.08);
}

.contacto-hp {
    position: absolute;
    left: -10000px;
    width: 1px !important;
    height: 1px;
    opacity: 0;
}

.contacto-flash {
    border: 1px solid rgba(197, 160, 89, .35);
    border-radius: 8px;
    background: rgba(197, 160, 89, .14);
    color: var(--oro-gbl-suave);
    padding: 13px 14px;
    margin-bottom: 16px;
}

.contacto-flash.error {
    border-color: rgba(220, 80, 80, .45);
    background: rgba(120, 20, 20, .28);
    color: #ffd6d6;
}

.servicios-public-page {
    min-height: 100vh;
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.servicios-public-page .fondo-capa {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, .2), #000 90%),
        url('../img/fondos/fondo_index/en_uso/fondo_index2.png');
}

.servicios-public-main {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 150px 0 80px;
    min-width: 0;
}

.servicios-hero {
    position: relative;
    padding: clamp(20px, 4vw, 44px) clamp(4px, 2vw, 16px);
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: 0;
}

.servicios-hero::after {
    content: none;
}

.servicios-kicker {
    position: relative;
    z-index: 1;
    color: var(--oro-gbl-suave);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.servicios-hero h1 {
    position: relative;
    z-index: 1;
    margin: 12px 0 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6.4rem);
    line-height: .95;
}

.servicios-hero p,
.servicios-contexto,
.servicios-detail p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.72;
    text-align: justify;
    text-justify: inter-word;
}

.servicios-hero p {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 0 12px;
    font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.servicios-hero p:last-child {
    margin-bottom: 0;
}

.servicios-format-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 28px 0;
    min-width: 0;
}

.servicios-format-card {
    min-height: 250px;
    padding: clamp(20px, 3vw, 28px);
    background: linear-gradient(145deg, rgba(18, 16, 13, .9), rgba(0, 0, 0, .72));
    border: 1px solid rgba(197, 160, 89, .34);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .36);
    min-width: 0;
}

.servicios-format-card h2 {
    margin: 0 0 14px;
    color: var(--oro-gbl-suave);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.08;
}

.servicios-format-card p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.66;
    font-size: 1.01rem;
    text-align: justify;
    text-justify: inter-word;
}

.servicios-contexto {
    margin: 0 auto 58px;
    max-width: 940px;
    font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.servicios-detail-list {
    display: grid;
    gap: 4.8rem;
    min-width: 0;
}

.servicios-detail {
    scroll-margin-top: calc(var(--public-navbar-height, 91px) + 24px);
    padding: clamp(24px, 4vw, 36px);
    background: linear-gradient(145deg, rgba(18, 16, 13, .9), rgba(0, 0, 0, .72));
    border: 1px solid rgba(197, 160, 89, .34);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .36);
    min-width: 0;
}

.servicios-detail h2 {
    margin: 0 0 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.04;
}

.servicios-detail__copy {
    display: grid;
    gap: 1rem;
}

.servicios-detail p {
    margin: 0;
    font-size: 1.06rem;
}

.servicios-footer {
    margin-top: 0;
}

.nosotros-public-page {
    min-height: 100vh;
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.nosotros-public-page .fondo-capa {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, .2), #000 90%),
        url('../img/fondos/fondo_index/en_uso/fondo_index2.png');
}

.nosotros-public-main {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 150px 0 80px;
    min-width: 0;
}

.nosotros-section {
    scroll-margin-top: calc(var(--public-navbar-height, 91px) + 24px);
    padding: clamp(20px, 4vw, 44px) clamp(4px, 2vw, 16px);
    min-width: 0;
}

.nosotros-section h1,
.nosotros-section h2 {
    margin: 0 0 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 6.4rem);
    line-height: .98;
}

.nosotros-section h2 {
    font-size: clamp(2.7rem, 6.5vw, 5.2rem);
}

.nosotros-copy {
    display: grid;
    gap: 1rem;
    max-width: 960px;
}

.nosotros-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.06rem;
    line-height: 1.72;
    text-align: justify;
    text-justify: inter-word;
}

.nosotros-process {
    margin: 3.2rem 0;
    padding: 0;
}

.nosotros-process img {
    display: block;
    width: 100%;
    border: 1px solid rgba(197, 160, 89, .34);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .46);
}

.nosotros-footer {
    margin-top: 0;
}

.clientes-empty {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .62);
}

.clientes-footer {
    margin-top: 0;
}

.informativos-publicos__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.informativos-publicos__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.05;
}

.informativos-publicos__title i {
    color: var(--oro-gbl);
    margin-right: 10px;
}

.informativos-publicos__tag {
    color: var(--oro-gbl-suave);
    border: 1px solid rgba(197, 160, 89, .35);
    background: rgba(0, 0, 0, .48);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .11em;
    white-space: nowrap;
}

.informativos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.informativo-card {
    min-height: 100%;
    background: linear-gradient(145deg, rgba(13, 12, 10, .92), rgba(0, 0, 0, .74));
    border: 1px solid rgba(197, 160, 89, .36);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .36);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.informativo-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, .06);
    border: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}

.informativo-card__media img,
.informativo-card__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.informativo-card__media--image {
    cursor: zoom-in;
}

.informativo-card__media--video {
    background: #000;
    cursor: auto;
    position: relative;
}

.informativo-card__media--video video {
    background: #000;
    cursor: auto;
    object-fit: contain;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.informativo-card__body {
    padding: 18px;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
}

.informativo-card__date {
    color: var(--oro-gbl-suave);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.informativo-card h4 {
    margin: 0;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.informativo-card__text {
    color: rgba(255, 255, 255, .74);
    font-size: .94rem;
    line-height: 1.58;
    overflow-wrap: anywhere;
}

.informativo-card__text p:last-child {
    margin-bottom: 0;
}

.informativo-card__link {
    margin-top: auto;
    color: #120e08;
    background: var(--oro-gbl);
    border-radius: 8px;
    padding: 10px 13px;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    width: fit-content;
    max-width: 100%;
}

.informativo-card__link:hover {
    color: #120e08;
    filter: brightness(1.08);
}

.informativo-lightbox .modal-content {
    background: rgba(0, 0, 0, .94);
    border: 1px solid rgba(197, 160, 89, .55);
    border-radius: 8px;
}

.informativo-lightbox img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    background: #000;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1060;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    background: #22c55e;
    color: #061208;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .22);
}

.whatsapp-float i {
    font-size: 1.45rem;
}

.whatsapp-float:hover {
    color: #061208;
    filter: brightness(1.08);
}

.public-footer {
    background: linear-gradient(180deg, rgba(0,0,0,.92), #050403);
    border-top: 1px solid rgba(197, 160, 89, .34);
    color: rgba(255,255,255,.78);
    padding: 44px 5% 88px;
}

.public-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, .7fr) minmax(240px, 1fr);
    gap: 34px;
    min-width: 0;
}

.public-footer__brand img {
    width: 160px;
    height: auto;
    display: block;
    margin-bottom: 14px;
}

.public-footer__brand p {
    margin: 0;
    color: var(--oro-gbl-suave);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
}

.public-footer h4 {
    color: var(--oro-gbl-suave);
    font-family: 'Playfair Display', serif;
    margin: 0 0 14px;
    font-size: 1.25rem;
}

.public-footer__links,
.public-footer__contact {
    display: grid;
    align-content: start;
    gap: 9px;
}

.public-footer a,
.public-footer__contact span {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow-wrap: anywhere;
}

.public-footer a:hover {
    color: var(--oro-gbl-suave);
}

.public-footer i {
    color: var(--oro-gbl);
    width: 18px;
}

.public-footer__bottom {
    max-width: 1180px;
    margin: 32px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(197, 160, 89, .2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255,255,255,.48);
    font-size: .86rem;
}

@media (max-width: 991px) {
    :root {
        --public-navbar-height: 145px;
    }

    .navbar-container-custom {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-custom-container {
        margin-top: 15px;
        width: 100%;
    }

    .nav-custom-container .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 4px;
    }

    .nav-link-gbl {
        padding: 10px 8px;
        font-size: .75rem;
    }

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

    .clientes-public-main {
        padding-top: 190px;
    }

    .contacto-public-main {
        padding-top: 190px;
    }

    .servicios-public-main {
        padding-top: 190px;
    }

    .nosotros-public-main {
        padding-top: 190px;
    }

    .servicios-format-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacto-shell {
        grid-template-columns: 1fr;
    }

    .clientes-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clientes-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .public-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    :root {
        --public-navbar-height: 128px;
    }

    .navbar-container-custom {
        padding: 0 12px;
    }

    .navbar-brand img {
        height: 48px;
    }

    .nav-item-gbl {
        margin: 0 2px;
    }

    .nav-link-gbl {
        font-size: .68rem;
        letter-spacing: .7px;
        padding: 6px 5px;
    }

    .informativos-publicos__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .informativos-publicos__tag {
        white-space: normal;
    }

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

    .clientes-public-main {
        width: min(100% - 24px, 1180px);
        padding-top: 160px;
    }

    .contacto-public-main {
        width: min(100% - 24px, 1180px);
        padding-top: 160px;
    }

    .servicios-public-main {
        width: min(100% - 24px, 1180px);
        padding-top: 160px;
    }

    .nosotros-public-main {
        width: min(100% - 24px, 1180px);
        padding-top: 160px;
    }

    .nosotros-process {
        margin: 2.4rem 0;
    }

    .nosotros-section {
        padding-inline: 0;
    }

    .nosotros-copy p {
        text-align: left;
    }

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

    .servicios-format-card {
        min-height: 0;
    }

    .servicios-contexto {
        text-align: left;
        margin-bottom: 42px;
    }

    .servicios-detail-list {
        gap: 3.6rem;
    }

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

    .contacto-form-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .contacto-form-head > span {
        white-space: normal;
    }

    .clientes-logo-grid,
    .clientes-review-grid {
        grid-template-columns: 1fr;
    }

    .cliente-logo-card {
        min-height: 112px;
    }

    .clientes-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .clientes-section-head span,
    .cliente-review-card__head span {
        white-space: normal;
    }

    .cliente-review-card__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .informativo-card__body {
        padding: 16px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 52px;
        width: 52px;
        padding: 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .public-footer {
        padding: 34px 18px 84px;
    }

    .public-footer__inner {
        grid-template-columns: 1fr;
    }

    .public-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-footer a,
    .public-footer__contact span {
        align-items: flex-start;
    }
}
