:root {
    --header-bg: #0043a9;
    --text-color: #ffffff;
    --light-blue-bg: #b0c4d1;
    /* Interpreted 'bocd1' as #b0c4d1 */
    --font-family: 'Roboto', sans-serif;
    --nav-hover: rgba(255, 255, 255, 0.1);
    --btn-radius: 8px;
    /* Semi-square */
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: #f4f6f9;
}

header {
    background-color: var(--header-bg);
    color: var(--text-color);
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    margin: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.logo-img {
    height: 48px;
    object-fit: contain;
}

/* Segmented Control for Personas/Empresas */
.segment-control {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    /* Matching the semi-square look */
    padding: 3px;
    margin-left: 20px;
    margin-right: auto;
}

.segment-btn {
    background: none;
    border: none;
    color: #fff;
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    /* Inner semi-square */
    transition: all 0.2s ease;
}

.segment-btn.active {
    background-color: var(--light-blue-bg);
    color: var(--header-bg);
    font-weight: 500;
}

/* Nav Menu */
nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--btn-radius);
    transition: background-color 0.2s;
}

.nav-item:hover {
    background-color: var(--nav-hover);
}

/* Chevron Down - Line Style */
.chevron-down {
    width: 8px;
    height: 8px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: inline-block;
    margin-bottom: 2px;
}

/* Ingresar Button */
.btn-ingresar {
    color: var(--header-bg);
    background-color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--btn-radius);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-left: 30px;
    transition: opacity 0.2s;
}

.btn-ingresar:hover {
    opacity: 0.9;
}

.btn-ingresar .chevron-down {
    border-color: var(--header-bg);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    nav .nav-item {
        font-size: 13px;
        gap: 4px;
    }
}

@media (max-width: 900px) {
    header {
        flex-wrap: nowrap;
        /* Prevent wrapping so items stay in one line */
        height: auto;
        padding: 15px 20px;
    }

    .logo-container {
        order: 1;
        margin-right: auto;
        /* Ensure logo doesn't take more space than needed */
        flex-shrink: 1;
    }

    .logo-img {
        height: 24px;
        /* Reduced from 32px */
        width: auto;
        /* Ensure aspect ratio is maintained */
        max-width: 120px;
        /* Safety constraint */
    }

    .btn-ingresar {
        display: flex;
        /* Always visible */
        order: 2;
        margin-left: 0;
        padding: 8px 16px;
        font-size: 14px;
    }

    .hamburger-menu {
        display: flex;
        order: 3;
        margin-left: 15px;
    }

    /* Hide items by default on mobile */
    .segment-control,
    nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 20px;
    }

    /* Show items when menu is open */
    header.nav-open .segment-control,
    header.nav-open nav {
        display: flex;
    }

    header.nav-open nav {
        flex-direction: column;
        margin-bottom: 20px;
        gap: 10px;
    }

    header.nav-open .segment-control {
        justify-content: center;
        margin-bottom: 15px;
    }

    header.nav-open .nav-item {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        justify-content: space-between;
    }

    header.nav-open .nav-item:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
}

/* === MEGA MENU STYLES === */
.nav-item-wrapper {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Ensure header allows positioning context */
header {
    position: relative;
    transition: border-radius 0.3s;
}

/* Open menu styling */
.submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    cursor: default;
    transition: all 0.25s ease-out;
    transform: translateY(-10px);
    box-sizing: border-box;
    text-align: left;
}

.nav-item-wrapper:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-title {
    color: #2c2a29;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: var(--font-family);
}

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

.col-title {
    color: #5e6d77;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0;
}

.submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu-list li {
    margin-bottom: 12px;
}

.submenu-list a {
    color: #2c2a29;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.submenu-list a:hover {
    color: #0043a9;
}

.submenu-list a .arrow {
    opacity: 0;
    margin-left: 5px;
    font-size: 18px;
    line-height: 1;
    transition: opacity 0.2s, transform 0.2s;
    color: #0043a9;
}

.submenu-list a:hover .arrow {
    opacity: 1;
    transform: translateX(3px);
}

.badge-new {
    background-color: #81f39e;
    color: #083a15;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    display: inline-block;
}

.mt-4 {
    margin-top: 30px;
}

/* Mobile Override for Mega Menu */
@media (max-width: 900px) {
    .nav-item-wrapper {
        width: 100%;
        flex-direction: column;
    }

    .submenu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        display: none;
        /* Hidden by default in mobile accordion logic */
        color: #fff;
    }

    .nav-item-wrapper:hover .submenu {
        transform: none;
    }

    /* We would need JS to toggle display in mobile, for now just hiding or simple showing */
    header.nav-open .nav-item-wrapper .submenu {
        display: block;
        margin-top: 10px;
    }

    .submenu-title {
        display: none;
    }

    .submenu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .col-title {
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
    }

    .submenu-list a {
        color: #fff;
        font-size: 14px;
        padding: 5px 0;
    }

    .submenu-list a:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .submenu-list a .arrow {
        color: #fff;
        opacity: 1;
    }
}

.badge-personas {
    background-color: #dbeaff;
    color: #1e4695;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

/* === INGRESAR DROPDOWN STYLES === */
.ingresar-wrapper {
    position: relative;
    margin-left: 30px;
}

/* Remove margin from button itself as it is now on wrapper */
.btn-ingresar {
    margin-left: 0;
}

.ingresar-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    /* Align to right of button */
    width: 240px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-out;
    z-index: 1000;
}

.ingresar-wrapper:hover .ingresar-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Triangle/Arrow pointing up (optional, typical for dropdowns) */
.ingresar-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 30px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.ingresar-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #0043a9;
    /* Changed to Blue */
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.2s;
}

.ingresar-item:hover {
    background-color: #f4f6f9;
}

.ingresar-item .icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0043a9;
    /* Match text color */
}

.ingresar-item .icon svg {
    width: 20px;
    height: 20px;
}

.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 4px 20px;
}

/* Mobile styles for Ingresar dropdown */
@media (max-width: 900px) {
    .ingresar-wrapper {
        order: 2;
        margin-left: 0;
        position: static;
        /* Let it break out or handle differently if needed */
    }

    /* On mobile, usually we might want click to toggle, 
       but for hover consistency via CSS in this simplified setup: */
    .ingresar-menu {
        position: fixed;
        /* Or absolute relative to screen */
        top: 70px;
        /* Adjust based on header height */
        right: 20px;
        left: 20px;
        width: auto;
        transform: none;
        display: none;
    }

    .ingresar-wrapper:hover .ingresar-menu,
    .ingresar-wrapper:active .ingresar-menu,
    .ingresar-wrapper:focus-within .ingresar-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* === HERO SLIDER STYLES === */
.hero-slider {
    margin: 0 20px 20px 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* Gradient similar to the provided screenshot: Blue to Deep Purple/Blue */
    background: linear-gradient(90deg, #0043a9 0%, #002e7a 50%, #001f60 100%);
    color: #fff;
    min-height: 536px;
    /* Reduced height as requested */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 536px;
    /* Reduced height as requested */
}

.slide {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: flex;
    opacity: 1;
    z-index: 1;
}

.slide-content {
    max-width: 500px;
    /* Limit width for readability */
    z-index: 2;
    position: relative;
    margin-left: 60px;
    /* Reduced from padding logic, ensuring separation from edge */
    /* Reduced from padding logic, ensuring separation from edge */
}

.btn-conoce-mas {
    background-color: #fff;
    color: #0043a9;
    /* Main blue */
    border: 1px solid #0043a9;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 20px;
}

.btn-conoce-mas:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ... existing styles ... */

.slide-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    z-index: 0;
    /* Removed mask to let image show fully as requested */
}

.slide-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.link-slide {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
}

.link-slide:hover {
    text-decoration: underline;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 900px) {
    .hero-slider {
        margin: 10px;
        min-height: auto;
    }

    .slides-container {
        height: 380px;
        /* Fixed height to force horizontal aspect */
        min-height: 0;
        position: relative;
    }

    .slide {
        display: none;
        /* Default hidden */
        padding: 0;
        position: absolute;
        /* Revert to absolute to sit inside container */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .slide.active {
        display: flex;
        /* Or block, but flex helps consistency */
        flex-direction: column;
        justify-content: flex-start;
    }

    .slide-content {
        position: relative;
        z-index: 2;
        max-width: 90%;
        margin: 0;
        padding: 40px 20px;
        text-align: left;
        color: #fff;
    }

    .slide-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .slide-desc {
        font-size: 15px;
        line-height: 1.4;
    }

    .slide-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-mask-image: none;
        mask-image: none;
        border-radius: 12px;
        /* Keep consistent with desktop if needed, or 0 if full bleed */
        overflow: hidden;
        z-index: 0;
    }

    .btn-conoce-mas {
        width: 100%;
    }
}

/* === PROMO WIDE SECTION === */
.promo-wide-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.promo-card-horizontal {
    display: flex;
    background-color: #f7f9fc;
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    align-items: stretch;
    /* Ensure children stretch to full height */
}

.card-image {
    width: 50%;
    /* No fixed height, relies on flex stretch from parent */
    position: relative;
    overflow: hidden;
    display: flex;
    /* Ensure img child can stretch if needed */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content {
    width: 50%;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card-content h2 {
    color: #000;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: var(--font-family);
}

.card-content p {
    color: #5e6d77;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.btn-promo-outline {
    background: transparent;
    border: 1px solid #0b5fff;
    /* Nuevo azul solicitado */
    color: #0b5fff;
    padding: 12px 30px;
    border-radius: 8px;
    /* Menos redondeado */
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-promo-outline:hover {
    background-color: #0b5fff;
    color: #fff;
    box-shadow: 0 5px 15px rgba(11, 95, 255, 0.2);
}

/* === FLOATING HELP BUTTON === */
.float-help-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fdd835;
    color: #2c2a29;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font-family);
}

.float-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.float-help-btn i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .promo-card-horizontal {
        flex-direction: column;
    }

    .card-image,
    .card-content {
        width: 100%;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 30px;
        align-items: center;
        text-align: center;
    }

    .float-help-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* === CUSTOM PROMO STYLE "LIBRE INVERSIÓN" === */
.promo-card-custom-blue {
    display: flex;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Slight shadow */
    border: 1px solid #eef1f6;
}

.custom-card-left {
    width: 45%;
    background-color: #0043a9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    /* Updated padding */
}

.image-wrapper-rounded {
    width: 358px;
    /* Corrected dimensions */
    height: 372px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.image-wrapper-rounded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dots decoration */
.dots-decoration {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.dots-decoration span {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.custom-card-right {
    width: 55%;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.label-small {
    font-size: 11px;
    font-weight: 700;
    color: #9aa5b1;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* === LATAM PASS WHITE THEME === */
.dark-theme-latam {
    background-color: #fff;
    /* Changed to white */
    color: #2c2a29;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef1f6;
}

.dark-theme-latam .card-content h2 {
    color: #2c2a29;
}

.dark-theme-latam .card-content p,
.dark-theme-latam .card-content ul {
    color: #5e6d77;
}

.latam-list {
    margin: 0 0 30px 0;
    padding-left: 20px;
    color: #5e6d77;
}

.latam-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.btn-promo-solid-blue {
    background-color: #0b5fff;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-promo-solid-blue:hover {
    background-color: #0043a9;
}

/* Mobile Responsive For New Promos */
@media (max-width: 900px) {
    .promo-card-custom-blue {
        flex-direction: column;
        min-height: auto;
    }

    .custom-card-left {
        width: 100%;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .image-wrapper-rounded {
        width: 100%;
        max-width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .custom-card-right {
        width: 100%;
        padding: 40px 30px;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    .dark-theme-latam {
        flex-direction: column-reverse;
    }

    .dark-theme-latam .card-image {
        width: 100%;
        height: 250px;
    }

    .dark-theme-latam .card-content {
        width: 100%;
        padding: 40px 30px;
        align-items: flex-start;
        text-align: left;
    }
}



.card-content {
    padding: 30px;
    align-items: center;
    text-align: center;
}

.float-help-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 13px;
}

/* Variant for Blue Theme (CDT) */
.promo-card-horizontal.blue-theme {
    background-color: #dbeaff;
    /* Light Blue background */
}

.mb-large {
    margin-bottom: 80px;
}

/* === FOOTER STYLES === */
.main-footer {
    background-color: #0033a0;
    /* Primary Blue Base */
    color: #fff;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}

/* App Banner */
.footer-app-banner-wrapper {
    max-width: 1140px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-app-banner {
    background: linear-gradient(100deg, #0b5fff 0%, #0043a9 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
    gap: 30px;
}

.app-icon-container {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-icon-container img {
    width: 40px;
    height: auto;
}

.app-banner-text {
    flex: 1;
    min-width: 250px;
}

.app-banner-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
}

.app-banner-text p {
    font-size: 15px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
    color: #eef1f6;
}

.app-store-buttons {
    display: flex;
    gap: 15px;
}

.store-btn {
    transition: transform 0.2s;
    display: block;
}

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

.store-btn img {
    height: 48px;
    width: auto;
    display: block;
}

/* Footer Links */
.footer-links-container {
    max-width: 1140px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #dbeaff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    line-height: 1.4;
    display: block;
}

.footer-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-dropdown button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    margin-top: 20px;
    transition: background 0.2s;
}

.footer-dropdown button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Bottom Row */
.footer-bottom-row {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px 100px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.social-icons {
    display: flex;
    gap: 25px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.regulatory-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vigilado-badge {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
}

.vigilado-badge span {
    border: 1px solid white;
    padding: 2px 4px;
    font-size: 9px;
    margin-top: -2px;
    display: inline-block;
}

.aval-logo-footer {
    height: 32px;
    width: auto;
    opacity: 0.9;
}

/* Big Logo Watermark */
.footer-big-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0px;
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
    margin-top: -60px;
    position: relative;
    z-index: 0;
}

.footer-big-logo img {
    width: 90%;
    max-width: 1000px;
    height: auto;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-app-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .app-icon-container {
        margin: 0 auto;
    }

    .app-banner-text {
        margin: 0;
    }

    .app-store-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 0;
    }

    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        margin: 0;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding-bottom: 60px;
    }

    .regulatory-info {
        flex-direction: column;
        gap: 20px;
    }

    .vigilado-badge {
        flex-direction: column;
        border-left: none;
        padding-left: 0;
    }

    .footer-big-logo img {
        width: 100%;
    }
}