#main {
    margin-top: 50px;
}

#contactForm {
    width: 100%;
}

#buttonSubmit {
    width: 100%;
    padding: 15px 0;
    margin-top: 50px;
}

.section .info {
    background-color: var(--bg-color);
    padding: 10px;
    border-radius: 8px;
}

.section .info .item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section .info .item p {
    margin: 0;
}

.section .contact .list {
    list-style: none;
    font-size: 15px;
    padding: 0;
}

.section .contact .list-item {
    --padding-item: 5px;
    padding: var(--padding-item) 0;
}

.section .contact .link {
    text-decoration: none;
    color: var(--footer-link-color) !important;
    transition: .2s ease-in-out color;
    padding: var(--padding-item) 0;
}

.section .contact .link:hover {
    color: var(--primary-color) !important;
}

.section .contact .link.instagram:hover {
    color: var(--color-instagram) !important;
}

.section .contact .link.facebook:hover {
    color: var(--color-facebook) !important;
}

.section .contact .link.phone:hover {
    color: var(--color-phone) !important;
}

.section .contact .link.whatsapp:hover {
    color: var(--color-whatsapp) !important;
}

.section .contact .link.email:hover {
    color: var(--color-email) !important;
}

@media (max-width: 800px) {

    .container {
        flex-direction: column !important;
    }

}

/* ==================================================
   CABECERA - CONTACTO
================================================== */

#header {
    position: relative;
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-top: 78px;
    background-color: #454565;
    box-shadow: 0 0 10px 5px var(--font-color);
}

#header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

#header .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
    color: var(--header-font-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}
/* ==================================================
   RESERVA DE CITA
================================================== */

.booking-container {
    flex: 0 0 45%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.booking-title {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 100%;
    text-align: center !important;
    padding: 0;
    box-sizing: border-box;
}

.booking-description {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px;
}

.booking-button {
    padding: 15px 40px;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    font-weight: bold;
}

@media (max-width: 800px) {
    .booking-container {
        flex: 1 1 auto;
        width: 100%;
        box-sizing: border-box;
    }
}
