/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/unge12.jpg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 8rem 0;
    margin-top: 60px; /* Para compensar el header fixed */
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}


/* Estilos para la nueva sección de contacto */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f0f5 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.3rem;
    color: #000c18;
    margin-bottom: 1rem;
}

.subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-self: start;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18048d;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #000c18;
}

.method-details p {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #18048d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.contact-link:hover {
    color: #0c025a;
    text-decoration: underline;
}

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #000c18;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #18048d;
    box-shadow: 0 0 0 3px rgba(24, 4, 141, 0.1);
    outline: none;
}

.form-group select {
    appearance: none;
    background-image: url("../img/2fondo.jpg");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.submit-btn {
    background: #18048d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    background: #0c025a;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-method {
        flex-direction: column;
        gap: 1rem;
    }
}
/* 1234 */
/* Estilos para elementos adicionales */
.booking-card, 
.faq-contact, 
.chat-widget, 
.newsletter-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Acordeón FAQ */
.accordion-item {
    border-bottom: 1px solid #eee;
}
.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

/* Chat Widget */
.chat-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.badge {
    background: #4CAF50;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
}
.chat-btn {
    background: #18048d;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    width: 100%;
    margin-top: 1rem;
}

/* Newsletter */
.newsletter-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.newsletter-card li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}