/* === Estilos base (heredados de acurruco.css) === */

.logo_header {
    height: 20dvh;
}

.bg-acurruco {
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 30dvh;
}
.bg-acurruco::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30dvh;
    background-image: url("../imgs/back.webp");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
    object-fit: fill;
}
@media (max-width: 768px) {
    .bg-acurruco {
        height: 30dvh;
    }
}

.text-modalidad {
    color: #58abc1;
}

/* === Botón personalizado === */
.btn-acurruco {
    background-color: #F5A25D;
    color: white;
    border: none;
    padding: 0.75em 2em;
    font-size: 1rem;
    border-radius: 9999px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-acurruco:hover {
    background-color: #e68e45;
    transition: background-color 0.3s ease;
}

/* === Formulario === */
.enviar_btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    .logo_pequeño{
        height: 5dvh;}
}

form {
    background-color: #F3F9F9;
    border-radius: 16px;
    padding: 2rem;
}

form label {
    color: #4A2E1D;
    font-weight: 500;
}

form input[type="text"], form input[type="number"],
form input[type="date"], form input[type="time"],
form select, form textarea {
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #58abc1;
    box-shadow: 0 0 0 0.2rem rgba(88, 171, 193, 0.25);
}

#ticket-confirmacion {
    max-width: 400px;
    margin: 0 auto;
}

/* === Footer === */
.footer_contacto {
    background-color: #58abc1;
    position: relative;
    overflow: hidden;
}
.footer_contacto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../imgs/9.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    opacity: 0.07;
    z-index: 0;
}
.footer_contacto .container {
    position: relative;
    z-index: 1;
}

.icono_footer {
    height: 1.8rem;
}
.icono_footer_red {
    height: 2rem;
    transition: transform 0.2s ease;
}
.icono_footer_red:hover {
    transform: scale(1.1);
}

.text_direction {
    text-align: left;
}

@media (max-width: 768px) {
    .footer_contacto .container {
        align-items: center !important;
        text-align: center;
    }

    .footer_contacto .container > div {
        width: 100%;
    }

    .footer_contacto iframe {
        margin: 1rem auto 0;
        display: block;
    }

    .footer_contacto .redes_footer {
        justify-content: space-between !important;
        margin: 0 auto;
        max-width: 200px;
    }

    .text_direction {
        text-align: center;
    }
}
