@font-face {
    font-family: "Avenir Light";
    src: url("../fonts/Avenir-Light.woff2") format("woff2"),
        url("../fonts/Avenir-Light.woff") format("woff"),
        url("../fonts/Avenir-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Avenir Light";
    src: url("../fonts/avenir-next-bold.woff2") format("woff2"),
        url("../fonts/avenir-next-bold.woff") format("woff"),
        url("../fonts/avenir-next-bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

html,
body {
    height: 100%;
    margin: 0;
    background-color: #fff;
    font-family: "Avenir Light", sans-serif;
}

/* Centrar todo en la pantalla */
.full-height {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.logo-text {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.logo-img {
    max-height: 160px;
    height: 160px;
    width: 160px;
    display: block;
    margin: 0 auto;
}

/* nuevos estilos aqui */

.title-section {
    text-align: center;
    font-size: 30px;
    color: #009ba5;
    font-weight: 500;
    padding-bottom: 20px;
    line-height: normal;

}

.title-text {
    text-align: center;
    font-size: 2rem;
    color: #009ba5;
    /* font-weight: 600; */

}

.title-question {
    text-align: center;
    font-size: 2.5rem;
    color: #009ba5;
    font-weight: 900;
    padding-bottom: 20px;
}

.custom-list li {
    font-size: 30px;
    color: #009ba5;
    font-weight: 500;
    list-style-type: square;
}

p {
    font-size: 20px;
}

h2 {
    text-align: center;
    font-size: 2rem;
    color: #009ba5;
    font-weight: 500;
    padding-bottom: 20px;
    line-height: normal;
}

.info-banner {
    background-color: #009ba5;
    /* mismo color que "SOLAR MÉXICO" */
    color: white;
    /* padding: 12px 20px; */
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 10;
    position: relative;
}

.info-values {
    background-color: #009ba5;
}

.text-align-right {
    justify-items: right;
    padding-right: 10%;

}

.text-align-left {
    justify-items: left;
    padding-left: 10%;
}

.text-valores {
    justify-items: center;
    align-content: center;
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
}

.text-contact {
    font-size: 3rem;
    color: #009ba5;
    font-weight: 600;
    gap: 1;
}

h1 {
    font-size: 4rem;
    color: #009ba5;
    font-weight: 800;
}

.text-section-end {
    font-size: 2rem;
    color: #009ba5;
}

.btn-cotizacion {
    display: inline-block;
    padding: 12px 24px;
    background-color: #009ba5;
    /* Azul inicial */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cotizacion:hover {
    color: #fff;
    transform: scale(1.05);
    /* Efecto de agrandar un poco */
}


@media (max-width: 992px) {
    .contact-form {
        flex-direction: column;
    }

    .form-right .form-group textarea {
        height: 300px;
        /* Ajuste para pantallas pequeñas */
    }

    .form-left,
    .form-right {
        width: 100%;
    }

    .logo-text {
        max-width: 350px;
    }

    .logo-img {
        width: 140px;
        height: 140px;
        max-height: 140px;
    }
}

@media (max-width: 768px) {
    .info-banner {
        font-size: 1.1rem;
        padding: 10px 16px;
    }

    .logo-img {
        width: 120px;
        height: 120px;
        max-height: 120px;
    }

    .logo-text {
        max-width: 300px;
    }

    .title-section {
        font-size: 20px;
    }

    .title-question {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .form-submit button {
        width: 100%;
    }

    .info-banner {
        font-size: 1.5rem;
        padding: 8px 12px;
    }

    .full-height {
        height: 20%;
    }

    .logo-img {
        width: 80px;
        height: 80px;
        max-height: 80px;
    }

    .logo-text {
        max-width: 200px;
    }

    .title-section {
        font-size: 15px;
        text-align: center;
    }

    .title-question {
        font-size: 20px;
    }

    .custom-list li {
        font-size: 1.3rem;
    }

    .custom-list p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .title-text {
        font-size: 1.3rem;
    }

    .text-align-right {
        justify-items: center;
        text-align: center;
        padding: 0%;
    }

    .text-align-left {
        justify-items: center;
        text-align: center;
        padding: 0%;
    }

    .text-valores {
        /* position: absolute; */
        top: 167%;
    }

    .img-fluid {
        padding: 0% !important;
    }

    .info-values .row {
        display: flex;
        flex-direction: column !important;
        /* Fuerza que todas las filas sean verticales */
    }

    .info-values .col-md-6,
    .info-values .col {
        max-width: 100% !important;
        /* Cada columna ocupa toda la fila */
        text-align: center !important;
        /* Centra el contenido en móviles */
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 20px;
        /* Espacio entre bloques */
    }

    .info-values img {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 auto;
        /* Centra las imágenes */
        max-width: 80%;
        /* Ajusta tamaño si quieres */
    }

    .text-md-end,
    .text-md-start {
        text-align: center !important;
        /* Ignora alineaciones de escritorio */
    }
}