
body {
    background: url("/imagenes/paginas/contacto/bg.jpg") center center / cover
        no-repeat fixed;
    color: #fff;
    position: relative;
    z-index: -2;
    min-height: 100dvh;
    height: 100%;
}


body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}


#contacto {
    position: relative;
    z-index: 0;
    color: #fff;
    padding-top: 12%;
}

#contacto h2,
#contacto h3 {
    color: var(--naranja);
}

#contacto .color-dorado {
    color: var(--naranja);
}

#contacto .form-control {
    background: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    transition: border-color 0.3s ease;
    font-weight: 300;
}

#contacto textarea.form-control {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    background: transparent;
    color: #fff;
    padding: 0.75rem 1rem;
    resize: vertical;
    transition: all 0.3s ease;

}

#contacto textarea.form-control:focus {
    border-color: #cda434;
    box-shadow: 0 0 0 0.2rem rgba(205, 164, 52, 0.25);
}

#contacto .form-control:focus {
    border-color: var(--naranja);
    box-shadow: none;
}

#contacto .form-check-input {
    background-color: transparent;
    border: 1px solid var(--naranja);
}

#contacto .form-check-input:checked {
    background-color: var(--naranja);
    border-color: var(--naranja);
}

#contacto .boton-dorado {
    background-color: var(--naranja);
    color: #000;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#contacto .boton-dorado:hover {
    background-color: #b8922e;
    color: #fff;
}

#contacto .boton-outline-dorado {
    border: 2px solid var(--naranja);
    color: var(--naranja);
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#contacto .boton-outline-dorado:hover {
    background-color: var(--naranja);
    color: #000;
}

#contacto .accordion-button {
    background: transparent !important;
    color: #fff !important;
    border: none;
    box-shadow: none;
}

#contacto .accordion-button::after {
    filter: invert(1);
}

#contacto a {
    color: #fff;
    transition: color 0.3s ease;
}

#contacto a:hover {
    color: var(--naranja);
}


@media (max-width: 768px) {
    #contacto{
        padding-top: 250px !important;
    }
}
