/* =========================================
   1. VARIABLES & FONTS
   ========================================= */
:root {
    --color-1: #b230ff;
    --color-2: #0066FF;
    --color-3: #00CD00;

    --black: #000000;
    --white: #FFFFFF;
    --gray-1: #666666;
    --gray-2: #9A9A9A;
    --gray-3: #CDCDCD;
    --gray-4: #333333;

    /* Fuentes y Tracking */
    /* Base anterior: 30px (P1) -> Nueva Base: 20px (Factor 20/30 = 0.6666) */
    --fs-h1: 67px;
    /* 100 * 0.6666 */
    --track-h1: -0.05em;
    --lh-h1: 0.98;
    /* 98px / 100px */

    --fs-h2: 47px;
    /* 70 * 0.6666 */
    --track-h2: -0.025em;
    --lh-h2: 1.4;
    /* 98px / 70px */

    --fs-h3: 28px;
    /* 42 * 0.6666 */
    --track-h3: -0.025em;
    --lh-h3: 1.71;
    /* 72px / 42px */

    --fs-btn: 32px;
    /* 48 * 0.6666 */
    --track-btn: -0.025em;
    --lh-btn: normal;
    /* auto */

    --fs-p1: 20px;
    /* 30 * 0.6666 */
    --track-p1: normal;
    --lh-p1: normal;
    /* auto */

    --fs-p2: 17px;
    /* 25 * 0.6666 */
    --track-p2: normal;
    --lh-p2: 1.32;
    /* 33px / 25px */

    --fs-p3: 13px;
    /* 19 * 0.6666 */
    --track-p3: normal;
    --lh-p3: normal;

    --navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../../fonts/PlusJakartaSans/PlusJakartaSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

/* =========================================
   2. GLOBAL STYLES
   ========================================= */

/* Body & Resets */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--black);
    font-size: var(--fs-p1);
    font-weight: 400;
    line-height: var(--lh-p1);
    letter-spacing: var(--track-p1);
}

/* Typography Utilities */
h1,
.fs-h1 {
    font-size: var(--fs-h1);
    letter-spacing: var(--track-h1);
    line-height: var(--lh-h1);
}

h2,
.fs-h2 {
    font-size: var(--fs-h2);
    letter-spacing: var(--track-h2);
    line-height: var(--lh-h2);
}

h3,
.fs-h3 {
    font-size: var(--fs-h3);
    letter-spacing: var(--track-h3);
    line-height: var(--lh-h3);
}

p,
.fs-p1 {
    font-size: var(--fs-p1);
    letter-spacing: var(--track-p1);
    line-height: var(--lh-p1);
}

.fs-p2 {
    font-size: var(--fs-p2);
    letter-spacing: var(--track-p2);
    line-height: var(--lh-p2);
}

.fs-p3 {
    font-size: var(--fs-p3);
    letter-spacing: var(--track-p3);
    line-height: var(--lh-p3);
}

.line-height-1 {
    line-height: 1;
}

.fw-extrabold {
    font-weight: 800 !important;
}

/* Colors Utilities (Generic) */
.text-color-1 {
    color: var(--color-1) !important;
}

.text-color-2 {
    color: var(--color-2) !important;
}

.text-color-3 {
    color: var(--color-3) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-gray-1 {
    color: var(--gray-1) !important;
}

.text-gray-2 {
    color: var(--gray-2) !important;
}

.text-gray-3 {
    color: var(--gray-3) !important;
}

.text-gray-4 {
    color: #777777 !important;
}

.text-shadow-black {
    text-shadow: 0 0 5px #000;
}

.box-gradient-1 {
    background: var(--color-3);
    background: linear-gradient(90deg, var(--color-3) 0%, var(--color-2) 50%, var(--color-1) 85%);
    padding: 0.5rem;
    width: fit-content;
}

.box-gradient-2 {
    background: var(--white);
    background: linear-gradient(to bottom, var(--white), var(--gray-2));
}

.text-gradient-1 {
    background: linear-gradient(90deg, var(--color-3) 0%, var(--color-2) 50%, var(--color-1) 85%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border-gradient-1 {
    position: relative;
    background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 50%, var(--color-3) 85%);
    border-radius: 30px;
    padding: 8px;
}

a:not(.btn):not(.nav-link) {
    color: var(--color-1);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

a:not(.btn):not(.nav-link):not(.navbar-brand):hover,
a:not(.btn):not(.nav-link):not(.navbar-brand):active,
a:not(.btn):not(.nav-link):not(.navbar-brand):focus {
    opacity: 0.7;
    outline: none;
}

/* Extra large text utilities for desktop, shrinking for mobile */

.bg-gradient-rounded-inner {
    background-color: var(--white);
    border-radius: 27px;
    /* Must be slightly smaller than the outer border-radius */
    height: 100%;
}

.bg-color-1 {
    background-color: var(--color-1);
}

.bg-color-2 {
    background-color: var(--color-2);
}

.bg-color-3 {
    background-color: var(--color-3);
}

.bg-black {
    background-color: var(--black);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray-1 {
    background-color: var(--gray-1);
}

.bg-gray-2 {
    background-color: var(--gray-2);
}

.bg-gray-3 {
    background-color: var(--gray-3);
}

.bg-gray-4 {
    background-color: var(--gray-4);
}

.list-check-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Buttons */
.btn {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-navbar {
    background-color: var(--color-1);
    color: var(--white);
    font-weight: 600;
    width: 190px;
}

.btn-navbar:hover,
.btn-navbar:focus,
.btn-navbar:active {
    opacity: 0.85;
    transform: translateY(-2px);
}

.btn-navbar.bg-white:hover,
.btn-navbar.bg-white:focus,
.btn-navbar.bg-white:active {
    background-color: var(--white) !important;
}

.btn-navbar:hover,
.btn-navbar:focus,
.btn-navbar:active {
    background-color: var(--color-1) !important;
}

.btn-hero-cta:hover,
.btn-hero-cta:focus,
.btn-hero-cta:active {
    background-color: var(--color-2) !important;
    opacity: 0.85;
    transform: translateY(-2px);
}

/* List Separated */
.list-separated {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}



/* Common Layout Utils */
.section-padding {
    padding: 40px 0;
}

.rounded-box-white {
    background-color: var(--white);
    border-radius: 30px;
    padding: 60px 40px;
}

.list-separated .list-inline-item:not(:last-child)::after {
    content: "|";
    margin-left: 1rem;
    margin-right: 0.5rem;
    color: var(--black);
    opacity: 0.5;
}

.img-icos {
    height: 65px;
    object-fit: contain;
}

/* =========================================
   3. SECTIONS (Ordered by home.php)
   ========================================= */

/* Navbar */
.navbar {
    background-color: var(--black);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 70px;
}

.nav-link {
    color: var(--white);
    margin-right: 15px;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:active {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.navbar-toggler-icon {
    background-image: var(--navbar-toggler-icon-bg);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width) var(--color-1);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    /* Adjust height based on needs, previously was aspect-ratio */
    color: var(--white);
    /* padding: 80px 0; */
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Dark overlay to improve text readability */
    z-index: 1;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.btn-hero-cta {
    background: var(--color-2);
    border-radius: 50px;
    color: var(--white);
    font-size: var(--fs-btn);
    font-weight: 800;
    line-height: var(--lh-btn);
    margin-top: 50px;
    padding: 0.5em 1em;
    width: 90%;
}

/* Impact Section Background */
.bg-impact-section {
    background-image: url('../../images/backgrounds/bg_2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Problemas (Features) */
.feature-card {
    background: var(--white);
    border: 5px solid var(--gray-3);
    border-radius: 50px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s;
}

.feature-card-header {
    align-items: center;
    display: flex;
    height: auto;
    max-height: 150px;
    margin-bottom: 20px;
    justify-content: center;
}

.feature-card-header h2 {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.feature-card:hover,
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bg-purple-bar {
    background-color: var(--black);
    color: white;
    padding: 35px 0;
    text-align: center;
}

/* Module Carousel */
.scrolling-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scroll-snap-type: x mandatory;
}

.scrolling-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.scrolling-wrapper>[class*="col-"] {
    white-space: normal;
    display: inline-block;
    float: none;
    vertical-align: top;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.module-carousel-wrapper {
    position: relative;
}

.carousel-control-prev-custom,
.carousel-control-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.carousel-control-prev-custom {
    left: 10px;
}

.carousel-control-next-custom {
    right: 10px;
}

.carousel-control-prev-custom i,
.carousel-control-next-custom i {
    font-size: 18px;
    color: var(--color-1);
    transition: color 0.3s ease;
}

.carousel-control-prev-custom:hover i,
.carousel-control-next-custom:hover i {
    color: var(--white);
}

.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
    background: var(--color-1);
}

.carousel-control-prev-custom:hover img,
.carousel-control-next-custom:hover img {
    filter: brightness(0) invert(1);
}

.carousel-control-prev-custom.disabled,
.carousel-control-next-custom.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.module-carousel-card {
    border-radius: 15px;
    border: 0;
    box-shadow: var(--bs-box-shadow-sm) !important;
    height: 100%;
    min-width: 280px;
    overflow: hidden;
    transition: transform 0.3s ease;
    white-space: normal;
}

.module-carousel-card:hover {
    transform: translateY(-5px);
}

.module-carousel-card .module-title {
    background: linear-gradient(90deg, var(--color-3) 0%, var(--color-2) 50%, var(--color-1) 85%);
    color: var(--white);
    display: inline-block;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 15px;
    padding: 8px 16px;
}

.module-header-strip {
    border-radius: 50px;
    color: var(--white);
    margin: -25px 0px 15px 0px;
    height: 50px;
    text-align: center;
}

.module-header-strip span {
    line-height: normal;
}

.module-carousel-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.module-carousel-card h3,
.module-carousel-card p,
.module-carousel-card .module-title {
    margin-bottom: 0 !important;
}

.module-carousel-card h3 {
    font-size: var(--fs-h3);
    font-weight: 800;
    line-height: 1;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.module-carousel-card p:nth-child(3) {
    min-height: 50px;
}

.module-carousel-card p {
    font-size: var(--fs-p2);
}

.module-carousel-card .card-text {
    text-align: left;
}

.module-carousel-card .card-footer {
    align-items: center;
    background-color: var(--white);
    border: 0;
    display: flex;
    font-size: var(--fs-p2);
    font-weight: 800;
    justify-content: space-between;
    padding: 1rem;
    width: 100%;
}

.module-card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.module-meta-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 0.5rem;
}

.methodology-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

/* Methodology Section */
.methodology-section {
    background-image: url('../../images/backgrounds/bg_5.webp');
    background-color: var(--black);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 120px 60px;
    border-radius: 1.5rem;
    color: var(--white);
}

/* Mentors Section */
.mentor-img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}

.mentor-logo {
    width: 250px;
    height: auto;
    object-fit: contain;
    max-width: 100%;
}

.mentor_name {
    font-size: var(--fs-h3);
    font-weight: 800;
    margin: 0;
}

.mentor_cargo {
    color: var(--gray-1);
    flex-direction: column;
    font-size: var(--fs-p3);
    line-height: 1;
    margin-bottom: 5px;
    height: 100%;
}

.mentor_emp {
    color: var(--color-1);
    font-size: var(--fs-p3);
    line-height: 1;
    position: relative;
    padding-bottom: 10px;
}

/* Finalizar Programa */
.program-card {
    background: var(--black);
    border-radius: 50px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s;
}

/* Requirements & Areas Section */
.bg-requirements {
    position: relative;
    background-color: var(--black);
}

/* Programas Section */
.bg-program-card {
    background-color: var(--color-1);
}

.program-card {
    transition: transform 0.3s ease;
    color: var(--white);
    border-radius: 2rem !important;
}

.program-card-img-container {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
    margin-bottom: -1.5rem !important;
    margin-top: auto;
}

.program-card-title {
    min-height: 2.5em;
}

.program-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.program-card:hover {
    transform: translateY(-5px);
}

/* Footer Section */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.logo-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
}

.footer-logo {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.footer-logo-title {
    color: var(--white);
    font-size: var(--fs-p2);
    display: block;
}

.footer-logos {
    margin-bottom: 2rem;
}

.footer-logos .footer-label {
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-logos .logo-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logos .footer-logo-img {
    height: 70px;
    /* Tamaño de los logos (se puede achicar o agrandar aquí) */
    width: auto;
    object-fit: contain;
}

/* =========================================
   5. FAQ PAGE STYLES
   ========================================= */

.accordion {
    --bs-accordion-border-color: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    display: none !important;
}

.accordion-item {
    background: none;
    border: none;
}

.accordion-item .accordion-header {
    border: none;
    border-radius: 50px;
    background-color: var(--gray-3) !important;
    position: relative;
    z-index: 999;
}

.accordion-item .accordion-collapse {
    background-color: var(--white);
    border-radius: 25px;
    margin-top: -4%;
    padding-top: 4%;
    position: relative;
}

.accordion-item .accordion-header .accordion-button {
    background: none;
    color: var(--black);
    font-size: var(--fs-p1);
    font-weight: var(--fw-bold);
}

.modal-dialog-scrollable .modal-content {
    border-color: var(--gray-1);
    box-shadow: 0 0 0.3rem var(--gray-1);
}

.card-estado {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent !important;
}

.card-estado:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.card-estado.active {
    border-color: var(--color-1) !important;
    background-color: #f8f9fa !important;
}

.card-estado .total {
    font-size: 2rem;
    font-weight: 800;
}

.sortable {
    cursor: pointer;
    white-space: nowrap;
}

.sortable:hover {
    background-color: rgba(0, 0, 0, .05);
}

.sortable i {
    font-size: 0.8em;
}

.table-admin th {
    white-space: nowrap;
    font-size: .85rem;
}

.table-admin td {
    font-size: .85rem;
    vertical-align: middle;
}

.badge-estado {
    font-size: .75rem;
}

/* =========================================
   6. MEDIA QUERIES
   ========================================= */

/* Dispositivos Móviles y Tablets Pequeñas (De 0px a 768px de ancho) */
@media (max-width: 768px) {
    :root {
        --fs-h1: 42px;
        --fs-h2: 32px;
        --fs-h3: 22px;
        --fs-btn: 24px;
        --fs-p1: 18px;
        --fs-p2: 16px;
        --fs-p3: 14px;
    }

    body {
        font-size: var(--fs-p1);
    }

    .btn-hero-cta {
        font-size: 22px;
    }

    .module-carousel-card h3 {
        min-height: 45px;
    }

    .module-carousel-card p:nth-child(3) {
        min-height: 30px;
    }

    /* Methodology Section (Mobile) */
    .methodology-section {
        padding: 30px;
        background-size: cover;
    }

    /* Problemas Section (Mobile) */
    .rounded-box-white h2 {
        font-size: var(--fs-h1);
    }

    .feature-card p:first-child {
        font-size: var(--fs-h2);
        line-height: 1.2;
    }

    /* Mobile Carousel for Programas */
    .mobile-carousel-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin-right: -0.75rem;
        /* Align with container padding somewhat */
    }

    .mobile-carousel-row::-webkit-scrollbar {
        height: 0px;
        /* Hide scrollbar or style it */
        background: transparent;
    }

    .module-carousel-card .card-footer {
        font-size: 0.8rem;
    }

    .carousel-control-prev-custom,
    .carousel-control-next-custom {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev-custom {
        left: 5px;
    }

    .carousel-control-next-custom {
        right: 5px;
    }

    .carousel-control-prev-custom i,
    .carousel-control-next-custom i {
        font-size: 14px;
    }

    .img-icos {
        height: 45px;
    }

    .mentor-img {
        height: 100%;
    }

    /* Footer Mobile */
    .footer-logos [class*="col-"] {
        text-align: center !important;
    }

    .footer-logos .footer-label {
        text-align: center;
    }

    .footer-logos .logo-group {
        justify-content: center;
        gap: 20px;
    }

    .footer-logos .footer-logo-img {
        height: 50px;
        /* Logos más pequeños en móvil */
    }
}

/* Tablets en Vertical e inferior (De 0px a 991px de ancho) */
@media (max-width: 991px) {

    /* Footer Section (Mobile Wrapper) */
    .footer-logos-container .footer-logo-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .footer-logo-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    /* Navbar Mobile Adjustments */
    .navbar-brand img {
        height: 35px;
    }
}

/* Tablets en Horizontal, Laptops y Escritorios (Desde 768px en adelante) */
@media (min-width: 768px) {
    .list-separated {
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }

    .list-separated li:not(:last-child)::after {
        content: "|";
        margin-left: 1rem;
        margin-right: 0.5rem;
        color: inherit;
        opacity: 0.5;
    }
}

/* Laptops y Pantallas Grandes (Desde 992px en adelante) */
@media (min-width: 992px) {

    /* Hero Section */
    .btn-hero-cta {
        width: auto;
    }

    /* Footer Section (Desktop Grid) */
    .col-custom-1 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }

    .col-custom-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-custom-3 {
        flex: 0 0 37.5%;
        max-width: 37.5%;
    }
}