.contact-container {
    padding: 2rem 0;
    background-color: #f9f5e9;
}

.contact-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #5c3a21;
    margin-bottom: 2rem;
}

/* Grid de contacto */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Sección de información */
.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #5c3a21;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e8c07d;
    padding-bottom: 0.5rem;
}

.contact-info p {
    color: #5c3a21;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Mapa */
.map-container {
    margin: 1.5rem 0;
    border: 1px solid #e8c07d;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Detalles de visita */
.visit-details h4 {
    font-size: 1.2rem;
    color: #5c3a21;
    margin: 1.5rem 0 0.5rem;
}

.visit-details p {
    margin: 0.5rem 0;
    color: #5c3a21;
}

.visit-details i {
    color: #e8c07d;
    margin-right: 0.5rem;
}

/* Formulario de reserva */
.reservation-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reservation-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.reservation-form h3 {
    font-size: 1.5rem;
    color: #5c3a21;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e8c07d;
    padding-bottom: 0.5rem;
}

.reservation-form p {
    color: #5c3a21;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Estilos del formulario */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5c3a21;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e8c07d;
    border-radius: 4px;
    font-size: 1rem;
    color: #5c3a21;
    background-color: #f9f5e9;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Botón de enviar */
.btn-submit {
    background-color: #e8c07d;
    color: #5c3a21;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #d4a657;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info h3, .reservation-form h3 {
        font-size: 1.3rem;
    }
}