:root {
    --color-primary: #020202;
    --color-secondary: #d5811a;
    --color-accent: #92733c;
    --color-light-gold: #ebde9c;
    --color-soft-gold: #d9be6c;
    --color-medium-gold: #7f6e46;
    --color-white: #ffffff;
    --color-text: #020202;
    --color-muted: #f5f5f5;
}

html {
    font-size: 16px;
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.main-header {
    background-color: var(--color-primary);
}

.navbar {
    min-height: 92px;
    padding: 0.7rem 0;
}

    .navbar .container {
        max-width: 1520px;
        display: flex;
        align-items: center;
    }

.navbar-brand {
    margin-right: 2rem;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 0;
}

.logo-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: clamp(210px, 22vw, 330px);
    height: clamp(58px, 7vw, 90px);
}

.brand-logo,
.logo-normal,
.logo-hover {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.logo-normal,
.logo-hover {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .25s ease;
}

.logo-normal {
    opacity: 1;
}

.logo-hover {
    opacity: 0;
}

.logo-container:hover .logo-normal {
    opacity: 0;
}

.logo-container:hover .logo-hover {
    opacity: 1;
}

.navbar-collapse {
    justify-content: center;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--color-white);
    font-weight: 700;
    font-size: clamp(0.86rem, 0.9vw, 1rem);
    padding: 0.75rem 0.85rem;
    white-space: nowrap;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus {
        color: var(--color-secondary);
    }

.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 0.6rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--color-muted);
        color: var(--color-primary);
    }

.nav-contacto {
    background: linear-gradient( 180deg, #b89d52 0%, #9b8446 50%, #7d6a39 100% );
    color: #fff !important;
    border-radius: 999px;
    padding: 0.75rem 1.4rem !important;
    margin-left: 0.5rem;
}

    .nav-contacto:hover,
    .nav-contacto:focus {
        background: linear-gradient( 180deg, #c6a85b 0%, #ae9250 50%, #8a7540 100% );
        color: #fff !important;
    }

main {
    flex: 1;
    width: 100%;
}

.main-footer {
    display: none;
}

/* HERO */

.hero-section {
    position: relative;
    min-height: calc(100vh - 92px);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

    .hero-slide.active {
        opacity: 1;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1520px;
    padding-left: 3rem;
    padding-right: 3rem;
}

.hero-text {
    max-width: 720px;
    margin-left: 0;
}

    .hero-text h1 {
        color: var(--color-white);
        font-size: clamp(3rem, 5vw, 5.2rem);
        font-weight: 800;
        line-height: 1.12;
        margin-bottom: 2rem;
    }

    .hero-text p {
        color: var(--color-white);
        font-size: clamp(1rem, 1.45vw, 1.5rem);
        line-height: 1.5;
        margin-bottom: 2.3rem;
        max-width: 760px;
    }

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
    padding: 18px 44px;
    border-radius: 999px;
    font-size: clamp(1rem, 1.2vw, 1.35rem);
    font-weight: 700;
    transition: background-color .3s ease, color .3s ease;
}

    .hero-btn i {
        font-size: 2rem;
        line-height: 1;
    }

    .hero-btn:hover,
    .hero-btn:focus {
        background-color: var(--color-secondary);
        color: var(--color-white);
    }

/* VIDEO MUNDO */

.global-video-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #020202;
}

.global-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .64) 38%, rgba(0, 0, 0, .45) 64%, rgba(0, 0, 0, .72) 100% );
    z-index: 1;
}

.video-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 360px;
    background: linear-gradient( to bottom, rgba(2, 2, 2, 0) 0%, rgba(2, 2, 2, .35) 32%, rgba(20, 18, 10, .76) 62%, rgba(47, 41, 20, 1) 100% );
    z-index: 2;
    pointer-events: none;
}

.global-video-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    margin-left: 100px;
}

    .global-video-content h2 {
        max-width: 840px;
        color: var(--color-white);
        font-size: clamp(3.2rem, 5vw, 5.4rem);
        font-weight: 700;
        line-height: 1.15;
        margin: 0;
        text-shadow: 0 8px 30px rgba(0, 0, 0, .70);
    }

/* FOOTER INSTITUCIONAL */

.global-footer-section {
    position: relative;
    margin-top: -1px;
    background-image: url('/assets/images/Inicio/Rectángulo12.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 6rem 0 3rem;
    color: var(--color-white);
}

    .global-footer-section .container {
        width: 92%;
        max-width: 1700px;
        padding-left: 0;
        padding-right: 0;
    }

.global-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: flex-start;
}

    .global-info h3 {
        color: var(--color-white);
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, .85);
        padding-bottom: 0.7rem;
    }

.global-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.global-legal li {
    margin-bottom: 0.35rem;
}

.global-legal a {
    color: var(--color-white);
    font-size: 2rem;
    text-decoration: none;
    font-weight: 300;
    line-height: 1.8;
}

    .global-legal a:hover {
        color: var(--color-secondary);
    }

.global-support {
    text-align: center;
}

    .global-support h3 {
        text-align: center;
        width: 100%;
    }

.support-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.5rem;
    margin-top: 2rem;
}

    .support-logos img {
        max-height: 105px;
        max-width: 240px;
        object-fit: contain;
    }

.global-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .85);
    margin: 8rem 0 3rem;
}

.global-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.global-brand {
    display: flex;
    align-items: flex-end;
    gap: 0.7rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

    .global-brand img {
        max-height: 50px;
        width: auto;
    }

    .global-brand span {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        color: var(--color-white);
        font-weight: 700;
        font-size: 1.1rem;
        line-height: 1;
        padding-bottom: 0px;
    }

.global-social {
    display: flex;
    gap: 2rem;
}

    .global-social a {
        color: var(--color-white);
        font-size: 3.2rem;
        text-decoration: none;
        line-height: 1;
    }

        .global-social a:hover {
            color: var(--color-secondary);
        }

.global-help {
    text-align: center;
    margin-top: 2rem;
}

    .global-help h3 {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }

    .global-help p {
        margin: 0.45rem 0;
        font-size: 1.8rem;
        font-weight: 700;
    }

/* RESPONSIVE */

@media (max-width: 1399px) {
    .navbar .container {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .navbar-brand {
        margin-left: 0 !important;
        margin-right: 1rem;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
    }

    .hero-text {
        margin-left: 0 !important;
    }

    .hero-content {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .global-video-content {
        margin-left: 0 !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .global-footer-section .container {
        width: 88%;
    }

    .global-info {
        gap: 5rem;
    }

    .global-legal a {
        font-size: 1.6rem;
    }

    .support-logos {
        gap: 3rem;
    }

        .support-logos img {
            max-height: 105px;
            max-width: 220px;
        }
}

@media (min-width: 1400px) {
    .navbar .container {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .navbar-brand {
        margin-left: 0;
    }

    .hero-content {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .hero-text {
        margin-left: 0;
    }

    .global-video-content {
        margin-left: 100px;
    }
}

@media (max-width: 1199px) {
    .navbar {
        min-height: auto;
    }

        .navbar .container {
            padding-left: 1rem;
            padding-right: 1rem;
        }

    .logo-container {
        width: clamp(170px, 20vw, 230px);
        height: 64px;
    }

    .navbar-dark .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.65rem 0.45rem;
    }

    .nav-contacto {
        padding: 0.65rem 1rem !important;
    }

    /*.navbar .container {
        flex-wrap: nowrap;
    }*/

    /* ================================
   FIX RESPONSIVE NAVBAR
================================ */

    .navbar {
        width: 100%;
    }

        .navbar .container {
            width: 100%;
            max-width: 1520px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            overflow: visible;
        }

    .navbar-collapse {
        flex-grow: 1;
    }

    .navbar-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .navbar-dark .navbar-nav .nav-link {
        white-space: nowrap;
    }

    /* Pantallas medianas */
    @media (max-width: 1199px) {

        .navbar .container {
            flex-wrap: wrap;
        }

        .navbar-brand {
            margin-right: 1rem;
        }

        .logo-container {
            width: 210px;
            height: 62px;
        }

        .navbar-collapse {
            width: 100%;
        }

        .navbar-nav {
            flex-direction: column;
            align-items: flex-start !important;
            width: 100%;
            gap: 0;
            padding-top: 1rem;
        }

        .navbar-dark .navbar-nav .nav-link {
            width: 100%;
            font-size: 1rem;
            padding: 0.8rem 0;
        }

        .nav-contacto {
            margin-left: 0;
            margin-top: 0.8rem;
        }
    }

    /* Celular */
    @media (max-width: 575px) {

        .navbar .container {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .logo-container {
            width: 180px;
            height: 54px;
        }

        .navbar-dark .navbar-toggler {
            border-color: rgba(255,255,255,.35);
        }
    }

    .logo-container {
        width: 190px;
        height: 58px;
    }

    .navbar-dark .navbar-nav .nav-link {
        font-size: 0.82rem;
        padding: 0.55rem 0.35rem;
    }

    .nav-contacto {
        padding: 0.6rem 0.9rem !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .navbar .container {
        max-width: 100%;
    }

    .navbar-brand {
        margin-left: 0 !important;
        margin-right: 0;
    }

    .logo-container {
        width: 220px;
        height: 64px;
    }

    .navbar-collapse {
        justify-content: flex-start;
        padding-top: 1rem;
    }

    .navbar-nav {
        align-items: flex-start !important;
        justify-content: flex-start;
        gap: 0;
    }

    .navbar-dark .navbar-nav .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .dropdown-menu {
        width: 100%;
        box-shadow: none;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }

    .nav-contacto {
        margin-left: 0;
        margin-top: 0.5rem;
        display: inline-block;
        width: auto !important;
        padding: 0.75rem 1.4rem !important;
    }

    .hero-section {
        min-height: calc(100vh - 80px);
        padding: 4rem 0;
    }

    .hero-slide {
        background-position: center right;
    }

    .hero-content {
        max-width: 100%;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-text {
        max-width: 100%;
        margin-left: 0 !important;
    }

    .global-video-section,
    .global-video-content {
        min-height: 85vh;
    }

    .global-video-content {
        margin-left: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .global-info {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .global-support {
        text-align: left;
    }

        .global-support h3 {
            text-align: left;
        }

    .support-logos {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .global-footer-row {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .global-social a {
        font-size: 2.4rem;
    }
}

@media (max-width: 575px) {
    .logo-container {
        width: 180px;
        height: 52px;
    }

    .hero-section {
        min-height: 75vh;
    }

    .hero-slide {
        background-position: center right;
    }

    .hero-text h1 {
        font-size: 2.3rem;
        line-height: 1.15;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 14px 24px;
    }

    .global-video-section,
    .global-video-content {
        min-height: 75vh;
    }

        .global-video-content h2 {
            font-size: 2.6rem;
        }

    .global-footer-section {
        padding: 4rem 0 2rem;
    }

    .global-legal a {
        font-size: 1.1rem;
    }

    .support-logos img {
        max-height: 60px;
    }

    .global-brand {
        align-items: flex-start;
        white-space: normal;
    }

        .global-brand span {
            white-space: normal;
            line-height: 1.2;
        }

    .global-help p {
        font-size: 1.1rem;
    }
}

/* ==========================================
   NOSOTROS
========================================== */

.nosotros-hero {
    background: #000;
    padding: 120px 0;
}

    .nosotros-hero .container {
        max-width: 1500px;
    }

.nosotros-subtitle {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.nosotros-hero h1 {
    color: #fff;
    font-size: 5rem;
    font-weight: 800;
    max-width: 1400px;
    line-height: 1.15;
    margin-bottom: 70px;
}

.nosotros-description {
    max-width: 1450px;
}

    .nosotros-description p {
        color: #fff;
        font-size: 2rem;
        line-height: 1.45;
        margin-bottom: 50px;
    }

.mision-vision-section {
    background: linear-gradient( to bottom, #000 0%, #8a7740 50%, #000 100% );
    padding: 120px 0;
}

.mission-block,
.vision-block,
.values-block {
    text-align: center;
    margin-bottom: 110px;
}

    .mission-block h2,
    .vision-block h2,
    .values-block h2 {
        color: #fff;
        font-size: 5rem;
        font-weight: 800;
        margin-bottom: 45px;
    }

    .mission-block p,
    .vision-block p {
        color: #fff;
        font-size: 2rem;
        max-width: 1400px;
        margin: auto;
        line-height: 1.5;
    }

.values-row {
    display: flex;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
}

.value-item {
    color: #fff;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    gap: 18px;
}

    .value-item i {
        font-size: 2.8rem;
    }

.nosotros-quote {
    text-align: center;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    font-size: 3rem;
    max-width: 1500px;
    margin: auto;
}

.value-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
}

.value-content {
    max-width: 1000px;
    text-align: center;
}

    .value-content h3 {
        color: #fff;
        font-size: 4rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .value-content p {
        color: rgba(255,255,255,.9);
        font-size: 1.8rem;
        line-height: 1.6;
    }

.value-arrow {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
    transition: .3s;
}

    .value-arrow:hover {
        color: #c6a85b;
        transform: scale(1.1);
    }

.value-content {
    transition: all .6s ease;
}

.value-enter-right {
    opacity: 0;
    transform: translateX(120px);
}

.value-enter-left {
    opacity: 0;
    transform: translateX(-120px);
}

.value-active {
    opacity: 1;
    transform: translateX(0);
}

.value-exit-left {
    opacity: 0;
    transform: translateX(-120px);
}

.value-exit-right {
    opacity: 0;
    transform: translateX(120px);
}

.page-fade {
    opacity: 0;
    animation: pageFadeIn .8s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-section {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity .9s ease, transform .9s ease;
}

    .fade-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Fondo del menú desplegable */
.dropdown-menu {
    background: rgba(184, 157, 82, 0.78) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
    padding: 12px 0 !important;
}

    /* Opciones */
    .dropdown-menu .dropdown-item {
        color: #ffffff !important;
        font-size: 1rem;
        font-weight: 500;
        padding: 14px 24px;
        transition: all .25s ease;
    }

        /* Hover */
        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:focus {
            background: rgba(255,255,255,.12) !important;
            color: #ffffff !important;
            transform: translateX(0.5px);
            transition: all .25s ease;
        }

        /* Opción seleccionada */
        .dropdown-menu .dropdown-item.active,
        .dropdown-menu .dropdown-item:active {
            background: rgba(0,0,0,.28) !important;
            color: #ffffff !important;
        }

/* ==========================================
   MENU DORADO GARANTE
========================================== */

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .dropdown-toggle.show {
    color: #c6a85b !important;
}

/* Flecha del dropdown */
.navbar-dark .dropdown-toggle::after {
    border-top-color: #c6a85b !important;
}

/* Flecha cuando está abierto */
.navbar-dark .dropdown-toggle.show::after {
    border-top-color: #c6a85b !important;
}

/* Submenú */

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .submenu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 5px;
        display: none;
        min-width: 240px;
    }

    .dropdown-submenu:hover .submenu {
        display: block;
    }

/* ==========================================
   PRODUCTOS TARJETA
========================================== */

.tarjeta-hero {
    position: relative;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('/assets/images/ProductosTarjeta/Componente29–1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

    .tarjeta-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .08);
        z-index: 1;
        pointer-events: none;
    }

.tarjeta-cards-stack {
    position: absolute;
    left: -40px;
    top: 60%;
    width: 850px;
    height: 700px;
    transform: translateY(-50%);
    z-index: 2;
}

.tarjeta-card {
    position: absolute;
    width: 520px;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,.55));
    transition: all .4s ease;
}

.tarjeta-card-top {
    top: 40px;
    left: 40px;
    transform: rotate(-14deg);
}

.tarjeta-card-bottom {
    top: 220px;
    left: 120px;
    transform: rotate(-14deg);
}

.tarjeta-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1700px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.tarjeta-hero-text {
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: 3rem;
}

    .tarjeta-hero-text p {
        font-size: clamp(1.8rem, 2.4vw, 3.1rem);
        font-weight: 300;
        font-style: italic;
        letter-spacing: 5px;
        margin-bottom: 1.2rem;
    }

    .tarjeta-hero-text h1 {
        font-size: clamp(4rem, 5.8vw, 6.6rem);
        font-weight: 800;
        letter-spacing: 8px;
        line-height: 1.25;
        margin-bottom: 2rem;
    }

    .tarjeta-hero-text span {
        display: block;
        font-size: clamp(1.3rem, 1.7vw, 2rem);
        font-weight: 300;
        margin-bottom: 3rem;
    }

.tarjeta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #efe1a3;
    color: #8a6a2e;
    text-decoration: none;
    border-radius: 999px;
    padding: 1.2rem 3.2rem;
    font-size: clamp(1.1rem, 1.5vw, 1.8rem);
    font-weight: 800;
    transition: all .3s ease;
}

    .tarjeta-btn:hover {
        background: #fff;
        color: #000;
        transform: translateY(-3px);
    }

.tarjeta-beneficios {
    background: linear-gradient(to bottom, #9b8846 0%, #000 100%);
    color: #fff;
    padding: 6rem 0 7rem;
}

    .tarjeta-beneficios .container {
        max-width: 1600px;
    }

    .tarjeta-beneficios h2 {
        font-size: clamp(3rem, 5vw, 5.5rem);
        font-weight: 800;
        margin-bottom: 1rem;
    }

.beneficios-subtitle {
    font-size: clamp(1.5rem, 2.2vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 5rem;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    text-align: center;
}

.beneficio-item img {
    height: 130px;
    object-fit: contain;
    margin-bottom: 2rem;
}

.beneficio-item h3 {
    font-size: clamp(1.5rem, 2vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 2rem;
}

.beneficio-item p {
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    font-weight: 300;
    line-height: 1.35;
}

.tarjeta-card-section {
    background: #000;
    color: #fff;
    padding: 5rem 0 8rem;
}

    .tarjeta-card-section .container {
        max-width: 1600px;
    }

.tarjeta-card-img {
    text-align: center;
    margin-bottom: 7rem;
}

    .tarjeta-card-img img {
        width: min(720px, 90%);
        border-radius: 24px;
        filter: drop-shadow(0 0 45px rgba(198,168,91,.45));
    }

.tarjeta-card-text h2 {
    font-size: clamp(2.5rem, 4vw, 4.8rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 1450px;
    margin-bottom: 3rem;
}

.tarjeta-card-text p {
    font-size: clamp(1.3rem, 2vw, 2.2rem);
    font-weight: 300;
    max-width: 1450px;
    margin-bottom: 5rem;
}

.tarjeta-btn-white {
    background: #fff;
    color: #92733c;
    margin-left: 35%;
}
@media (max-width: 991px) {
    .tarjeta-hero {
        min-height: 90vh;
        background-position: center center;
    }

    .tarjeta-cards-stack {
        opacity: .35;
        left: -220px;
        width: 520px;
        transform: translateY(-50%) scale(.8);
    }

    .tarjeta-hero-content {
        justify-content: center;
        padding: 4rem 1rem;
    }

    .tarjeta-hero-text {
        max-width: 100%;
        margin: 0;
    }

        .tarjeta-hero-text h1 {
            font-size: clamp(3rem, 9vw, 5rem);
            letter-spacing: 4px;
        }
}

@media (max-width: 575px) {
    .tarjeta-cards-stack {
        left: -260px;
        transform: translateY(-50%) scale(.65);
    }

    .tarjeta-hero-text p {
        letter-spacing: 2px;
    }

    .tarjeta-hero-text h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

    .tarjeta-btn {
        padding: 1rem 2rem;
    }
}

.navbar .container,
.navbar-container {
    padding-left: 3rem;
    padding-right: 3rem;
}

.navbar-brand img {
    max-width: 100%;
    height: auto;
}

.dropdown-submenu > .dropdown-toggle::after {
    content: "";
    display: inline-block;
    margin-left: .6rem;
    vertical-align: middle;
    border-top: .30em solid transparent;
    border-bottom: .30em solid transparent;
    border-left: .45em solid #e6c76a;
    border-right: 0;
}
.dropdown-submenu > .dropdown-toggle.dropdown-toggle::after {
    transform: none !important;
}

.dropdown-submenu > .dropdown-toggle::before {
    display: none !important;
}

.dropdown-submenu > .dropdown-toggle::after {
    border-top: .30em solid transparent !important;
    border-bottom: .30em solid transparent !important;
    border-left: .45em solid #e6c76a !important;
    border-right: 0 !important;
}

/* ================================
   NAVBAR TABLET / LAPTOP PEQUEÑA
================================ */

@media (min-width: 992px) and (max-width: 1199px) {

    .navbar {
        min-height: 92px;
    }

        .navbar .container {
            flex-wrap: nowrap;
            align-items: center;
            justify-content: space-between;
            padding-left: 2rem;
            padding-right: 2rem;
        }

    .navbar-brand {
        margin-right: 1rem;
    }

    .logo-container {
        width: 190px;
        height: 58px;
    }

    .navbar-collapse {
        width: auto;
        padding-top: 0;
    }

    .navbar-nav {
        flex-direction: row;
        align-items: center !important;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0.15rem;
        padding-top: 0;
    }

    .navbar-dark .navbar-nav .nav-link {
        width: auto;
        font-size: 0.72rem;
        padding: 0.55rem 0.35rem;
        white-space: nowrap;
    }

    .nav-contacto {
        margin-left: 0.35rem;
        margin-top: 0;
        padding: 0.55rem 0.85rem !important;
        font-size: 0.72rem;
    }
}

/* ==========================================
   NOSOTROS - TAMAÑO EQUILIBRADO
========================================== */

.nosotros-subtitle {
    font-size: 1.4rem !important;
}

.nosotros-hero h1 {
    font-size: 3.8rem !important;
    line-height: 1.2;
}

.nosotros-description p {
    font-size: 1.4rem !important;
    line-height: 1.7;
}

.mission-block h2,
.vision-block h2,
.values-block h2 {
    font-size: 2.6rem !important;
}

.mission-block p,
.vision-block p {
    font-size: 1.35rem !important;
    line-height: 1.7;
}

.value-content h3 {
    font-size: 2.2rem !important;
}

.value-content p {
    font-size: 1.3rem !important;
    line-height: 1.7;
}

.nosotros-quote {
    font-size: 1.9rem !important;
    line-height: 1.6;
}

/* ==========================================
   FOOTER - TEXTO MÁS PEQUEÑO
========================================== */

.global-info h3 {
    font-size: 1.3rem !important;
}

.global-legal a {
    font-size: 1.1rem !important;
    line-height: 1.6;
}

.global-brand span {
    font-size: .95rem !important;
}

.global-help h3 {
    font-size: 1.3rem !important;
}

.global-help p {
    font-size: 1rem !important;
}

.global-help h2 {
    font-size: 1rem !important;
    font-weight: 400;
    line-height: 1.6;
}

.global-social a {
    font-size: 2.2rem !important;
}

