/* contacto.css - Estilos específicos para la página de contacto */

.contacto {
    flex: 1;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contacto-title {
    font-size: 36px;
    margin-top: 1rem;
    margin-bottom: 10px;
    text-align: center;
}

.contacto-subtitle {
    font-size: 2rem;
    color: #aaa;
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.contacto-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: left;
}

.contacto-form,
.contacto-info {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.contacto-form label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    color: #fff;
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #1e90ff;
    border-radius: 8px;
    font-size: 15px;
    background: #000;
    color: #fff;
}

.contacto-form button {
    margin-top: 20px;
    width: 100%;
}

.contacto-info h2 {
    margin-bottom: 15px;
    font-size: 22px;
}

.info-block {
    background: #000;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    margin-bottom: 15px;
}

.info-block strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #1e90ff;
}

.info-block a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.info-block a:hover {
    color: #1e90ff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    background: #1e1e1e;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
    color: #fff;
}

.social-links a:hover {
    background: #1e90ff;
    color: #fff;
}

@media (max-width: 768px) {
    .contacto-grid {
        flex-direction: column;
        align-items: center;
    }
}