/* ===================================================================
   ARCHIVO: contacto.css
   CONTIENE: Estilos exclusivos para la página de Contacto
   =================================================================== */
body, h1, h2, h3, h4, h5, h6, p, a, li, button, .btn {
  font-family: 'Gotham', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f7f9fc;
}

/* --- 1. Hero Banner --- */
.contact-hero {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #003366, #005BA8), url('img/contact-bg.webp'); /* Opcional: una imagen de fondo sutil */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    color: white;
}
.contact-hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- 2. Tarjetas de Acción de Contacto --- */
.contact-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 44, 92, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 44, 92, 0.15);
    border-color: #c9d8e8;
}
.contact-card p {
    flex-grow: 1; /* Empuja el botón hacia abajo */
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #555;
}
.contact-card .btn {
    font-weight: 600;
    padding: 0.8rem 1.5rem;
}

/* --- 3. Modal y Formulario --- */
.modal-body {
    padding: 0;
}
.iframe-container {
    position: relative;
    width: 100%;
    height: 75vh; /* Altura adaptable a la ventana */
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 4. Redes Sociales --- */
.social-icons .social-icon {
    font-size: 1.8rem;
    color: #005BA8;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
}
.social-icons .social-icon:hover {
    color: #003366;
    transform: scale(1.2);
}

/* --- 5. Navegación --- */
.navbar .nav-link {
  transition: color 0.3s ease, background-color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #FFD700 !important; /* Amarillo institucional */
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar .nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #FFD700; /* Indicador visual */
}