/* Estilos del brackground , primera seccion*/
html {
    scroll-behavior: smooth;
}

.container-background {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url('../images/images_contactanos/background_image.jpg');
    width: 100%;
    height: 650px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.textos-hero {#cedc00
    height: 500px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textos-hero h1 {
    font-size: 60px;
}

.textos-hero p {
    font-size: 25px;
    margin-bottom: 20px;
}

.btn-arrow {
    height: 70px;
    width: 70px;
    position: absolute;
    bottom: 0; /* Ajusta este valor para cambiar la posición vertical del botón */
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    color: #fff;
    background-color: #cedc00; /* color verde de Bootstrap */
    border: none;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-arrow:hover {
    background-color: #A1AA20; /* color verde oscuro al pasar el ratón */
}

.btn-arrow img {
    height: 40px;
    width: 40px;
}

.card-personalizado {
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: white;
}

.form-control:focus {
    border-color: #cedc00 !important;
    box-shadow: 0 0 0 0.25rem rgba(161, 170, 32, 0.25) !important; /
}

button.btn-primary {
    background-color: #cedc00;
    border-color: #cedc00;
    font-size: 20px;

}

button.btn-primary:hover {
    background-color: #A1AA20;
    border-color: #A1AA20;

}

button.btn-primary:active,
button.btn-primary:focus,
button.btn-primary.focus
{
    background-color: #cedc00 !important;
    border-color: #cedc00 !important;
}


.container-forms{
    background-image: url("../images/images_contactanos/background_vector.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/*Ajustes responsivos del tamaño de la letra*/
@media (max-width: 768px) {
    .textos-hero h1 {
        font-size: 2rem;
    }

    .textos-hero p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .textos-hero h1 {
        font-size: 2.5rem;
    }

    .textos-hero p {
        font-size: 1.25rem;
    }
}

@media (min-width: 993px) {
    .textos-hero h1 {
        font-size: 3rem;
    }

    .textos-hero p {
        font-size: 1.5rem;
    }
}
