body {
    background-color: #E9DDCB;
    font-family: 'EB Garamond', serif; 
    color: #2B1E13; 
}

.titulo {
    font-size: 65px;
    text-align: center;
    color: #47301d;
}

#logo1 {
    padding: 0px;
}

#logo2 {
    margin-top: 5px;
    margin-bottom: 25px;
}

h3 {
    font-family: 'Forum', serif;
    letter-spacing: 0.05em;
}

.w-80 {
    width: 80%;
}

.box-light {
    background-color: #d8c7ad;
    color: #2B1E13;
    border-radius: 20px;
    font-size: 22px;
}

.box-light2 {
    background-color: #2B1E13;
    color: #E9DDCB;
    border-radius: 20px;
}

.gold {
    color: #2B1E13;
}


.btn-custom {
    background: #bea682;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.btn-custom:hover {
    background: #a18c6b;
}

.form-control,
.form-select {
    background-color: #9c704b;
    color: #E9DDCB ;
}

.border-gold, .box-light, .btn-custom, .form-control, .form-select  {
    border: 1px solid #2B1E13;
}


.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(179, 158, 44, 0.25);
}

.form-check-input:checked {
    background-color: #bea682;
    border-color:#4C3826;
}

.divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #2B1E13, transparent);
}

.divider span {
    color: #2B1E13;
    font-size: 12px;
    letter-spacing: 4px;
}

#form:hover {
    zoom: 110%;
}

#map:hover {
    zoom: 110%;
}

#fecha-hora, #lugar {
    font-size: 15px;
}

.turno-size, .lugar-info {
    font-size: 25px;
}

.flecha-abajo {
    font-size: 35px;        
    color: #2B1E13;
    line-height: 1;  
    display: inline-block;
    transform: scaleX(1.4);
    animation: bounce 1.2s infinite ease-in-out;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scaleX(1.4);
        opacity: 1;
    }
    50% {
        transform: translateY(6px) scaleX(1.4);
        opacity: 0.7;
    }
}



@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
    to{
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}