/* Hero Inicio Styles */

/* Container Full Width Reset */
.hero-inicio-container-wrap {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Row & Layout */
.hero-inicio-row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: block;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Column Inner Positioning */
.hero-inicio-row .col-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    width: 100%;
}

/* Background Image & Overlays */
.col-img-bg-wrap,
.col-bg-overlay-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.col-img-bg-wrap .inner-wrap,
.col-img-bg {
    width: 100%;
    height: 100%;
}

.col-img-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-inicio-overlay {
    background-color: #0e2f77;
    opacity: 0.85; /* Increased opacity for better text readability */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply; /* Better blending if supported */
}

.hero-inicio-right-col-overlay {
    background-color: #f1ad3e;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Content Wrapper */
.hero-inicio-row .wrapper {
    position: relative;
    z-index: 2; /* Above background */
    padding: 6% 10%; /* Responsive padding */
    width: 100%;
    box-sizing: border-box;
}

/* Left Column Specifics */
.hero-inicio-left-col {
    color: #ffffff;
    min-height: 600px; /* Ensure substantial height for hero */
    position: relative;
    width: 66.666%; /* Explicit width for flex layout */
    flex: 0 0 66.666%;
}

/* Right Column Specifics */
.hero-inicio-right-col {
    width: 33.333%;
    flex: 0 0 33.333%;
    position: relative;
}

/* Typography & Elements */
.hero-inicio-divider-75 {
    height: 75px;
    width: 100%;
    display: block;
}

.hero-inicio-text-light {
    color: #eef2f9;
    margin-bottom: 15px;
}

.hero-inicio-text-light p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
}

.hero-inicio-btn-socio {
    color: #0e2f77 !important; /* Dark blue text */
    background-color: #ffffff !important;
    visibility: visible;
    display: inline-block;
    padding: 15px 40px;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 5px; /* Matches theme buttons usually */
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.hero-inicio-btn-socio:hover {
    background-color: transparent !important;
    color: #fff !important;
}

/* Right Column Links */
.hero-inicio-title-groups {
    color: #0e2f77;
    margin-bottom: 25px;
}

.hero-inicio-title-groups h2 {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
}

.hero-inicio-divider-border {
    margin: 25px 0;
    height: 3px;
    background-color: #0e2f77;
    width: 100%;
    opacity: 0.2;
}

.hero-inicio-link-item {
    margin-bottom: 12px;
    position: relative;
}

.hero-inicio-link-item h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.hero-inicio-link-item a.link-text {
    text-decoration: none;
    color: #0e2f77;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(14, 47, 119, 0.15);
    transition: padding-left 0.2s ease;
}

.hero-inicio-link-item a.link-text:hover {
    padding-left: 8px;
    border-bottom-color: rgba(14, 47, 119, 0.5);
}

.hero-inicio-inner-row-padding {
    padding-top: 25px;
}

.hero-inicio-mb-10 {
    margin-bottom: 10px;
}

/* Sub-columns in Right Side */
.hero-inicio-sub-col {
    width: 50%;
    float: left; /* Fallback */
    padding-right: 15px;
    box-sizing: border-box;
}
.hero-inicio-sub-col:last-child {
    padding-right: 0;
    padding-left: 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-inicio-row {
        flex-direction: column;
    }
    .hero-inicio-left-col, 
    .hero-inicio-right-col {
        width: 100% !important;
        flex: 0 0 100%;
    }
    .hero-inicio-left-col {
        min-height: 450px;
    }
    .hero-inicio-row .wrapper {
        padding: 40px 30px;
    }
    .hero-inicio-sub-col {
        width: 100%;
        padding: 0 !important;
        margin-bottom: 20px;
    }
}


.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-top: var(--bs-gutter-y);
}
