#section-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.banner-background{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.hero-content-wrapper {
    position: relative;
    align-content: center;
    z-index: 2;
}


.title-column{
    font-size: 45px !important;
}


.info-boxes {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.info-boxes:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    height: 90px;
    width: 1px;
    background: #fff;
    z-index: 1;
}


.heading-number-box {
    background: var(--primary-color);
    color: #fff;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 34px;
    margin-right: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.text-heading {
    flex: 1;
}

.text-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.1;
    color: #fff;
    max-width: 600px;
}

.text-heading b{
    color: #fff;
    font-family: 'Gotham-medium'
}

@media (max-width: 1165px) {
    #section-hero {
        padding-top: 260px !important;
        padding-bottom: 120px !important;
        padding-bottom: 80px;
        min-height: auto;
        height: auto;
        display: block;
    }

    .banner-background {
        background-attachment: scroll; 
    }
    
    .title-column {
        text-align: center;
        margin-bottom: 40px;
    }

    .info-boxes {
        margin-bottom: 40px;
        align-items: flex-start;
    }

    .heading-number-box {
        min-width: 50px;
        height: 50px;
        font-size: 24px;
        margin-right: 20px;
    }

    .info-boxes:not(:last-child)::after {
        left: 25px;
        top: 50px;
        height: 110px;
    }

    .text-heading p{
        margin: 0;
        padding: 0;
    }
    
    .abs-centered {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
        left: 0 !important;
        padding: 40px 0;
    }
}

@media (max-width: 991px) {
    
    #section-hero {
        padding-top: 200px !important;
    }
    .title-column {
        text-align: center !important;
        margin-bottom: 40px;
        display: block;
        width: 100%;
    }

    .col-lg-7 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text-heading p {
        max-width: 100%;
        text-align: left;
    }
    
    .info-boxes {
        width: 100%;
        max-width: 650px;
    }
}


/** performance characteristics section **/

.performance-characteristics{
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.characteristics-heading {
    text-align: center;
    background: #000;
    margin: 20px auto 90px;
    border-radius: 30px;
    color: #fff;
    padding: 10px;
    max-width: 550px;
}

.characteristics-heading h1{
    font-size: 23px !important;
    font-weight: lighter;
}

.image-icons {
    background: var(--primary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    flex-shrink: 1;
    padding: 18px;
    align-items: center;
    align-content: center;
    margin-left: 30px;
}


.performance-row {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    height: auto; 
}

.characteristics-cards {
    box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.08);
    background: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 30px;
    width: 100%;
    transition: transform 0.3s ease;
    max-width: 1100px;
}


.col {
    flex: 1;
}

.titles-cards {
    margin-top: 0;
    font-size: 1.5rem;
    font-family: "Gotham-medium";
    letter-spacing: -1px;
}

.description-cards {
    margin-bottom: 0;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 1.0;
}

.contact-title{
    background: #000;
    border-radius: 20px;
    max-width: 200px;
    color: #fff;
    margin: 0 auto;
    padding: 7px;
    font-weight: lighter;
}

.footer-settings{
    max-width: 1900px !important;
}

.subfooter-line {
    border-top: solid 1px rgba(0, 0, 0, 0.394)
}



@media (max-width: 991px) {
    .title-column { margin-bottom: 50px; text-align: center; }
    .timeline-container::before { left: 44px; }
}

@media (max-width: 991px) {
    .characteristics-heading {
        margin-bottom: 50px;
        width: 90%;
    }

    .characteristics-cards {
        flex-direction: column; /* Apila icono sobre texto */
        text-align: center;
    }

    .col-2 {
        width: 100%; /* El contenedor del icono ocupa todo el ancho */
        max-width: 100%;
        flex: 0 0 30%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .image-icons {
        width: 70px; /* Un poco más pequeño en móvil */
        height: 70px;
    }

    .col h2 {
        font-size: 1.25rem;
    }

    .col p {
        font-size: 14px;
        line-height: 1.6;
    }
}