/* Estilos específicos para la página de contacto */

.contact-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 161, 155, 0.6) 100%), url('/api/placeholder/1920/600');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.contact-hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--plata);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contenedor principal */
.contact-container {
    display: flex;
    gap: 50px;
}

/* Información de contacto */
.contact-info {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 161, 155, 0.1);
    border-radius: 50%;
    margin-right: 20px;
}

.info-icon svg {
    color: var(--verde);
}

.info-content h3 {
    color: var(--blanco);
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.info-content p {
    color: var(--plata);
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.info-content a {
    color: var(--plata);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--verde);
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    color: var(--blanco);
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 161, 155, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--verde);
}

.social-icons svg {
    color: var(--plata);
    transition: color 0.3s ease;
}

.social-icons a:hover svg {
    color: var(--negro);
}

/* Formulario de contacto */
.contact-form-container {
    flex: 1.5;
}

.contact-form-container p {
    color: var(--plata);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 0 0 calc(50% - 10px);
}

.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--blanco);
    font-size: 16px;
    font-weight: 500;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--blanco);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde);
    background-color: rgba(255, 255, 255, 0.08);
}

.captcha-group {
    margin-top: 10px;
}

.submit-btn {
    background-color: var(--verde);
    color: var(--negro);
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #00d1c7;
    transform: translateY(-3px);
}

/* Mapa de ubicación */
.location-map {
    width: 100%;
    height: 450px;
    margin-bottom: 0;
}

.location-map iframe {
    display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 40px;
    }
    
    .contact-hero p {
        font-size: 18px;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
    
    .contact-content {
        padding: 60px 5%;
    }
    
    .contact-info {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: auto;
        padding: 80px 0;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-icon {
        margin: 0 0 15px 0;
    }
    
    .location-map {
        height: 350px;
    }
}