/* Tipografía y colores generales */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f0e3;
    color: #4a3f35;
}

/* Navbar */
.navbar {
    background-color: #7a5532;
}

.navbar-brand, .nav-link {
    color: #fff !important;
}

/* Botones */
.btn-primary {
    background-color: #7a5532;
    border: none;
}

.btn-primary:hover {
    background-color: #5c4127;
}

/* Contenedor principal de formularios */
.formulario-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

/* Títulos */
h2 {
    color: #7a5532;
}
.banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}


.banner-responsive {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.banner-responsive img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(122, 85, 50, 0.6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.banner-texto h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Tamaño de fuente menor en celular */
@media (max-width: 767px) {
    .banner-texto h1 {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }
}

