/* Sección de Contacto */
.contacto {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.contacto h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}
.contacto p{
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Formulario de contacto */
.formulario-contenedor {
    max-width: 600px;
    margin: 0 auto 40px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.formulario-contacto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-grupo label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-grupo input, .form-grupo select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-grupo input:focus, .form-grupo select:focus {
    outline: none;
    border-color: #6D1624;
    box-shadow: 0 0 5px rgba(109, 22, 36, 0.5);
}

.btn {
    background-color: #6D1624;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #A31E3C;
}

/* Botón flotante de WhatsApp */
.btn-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.btn-flotante img {
    width: 30px;
    height: 30px;
}

.btn-flotante:hover {
    background-color: #20b358;
}

/* Mapa */
.mapa {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
