@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900&display=swap');

/* ==========================================
   REGLA PARA FORZAR EL SCROLL (NO BORRAR)
   ========================================== */
html, body { overflow-y: scroll !important; height: auto !important; }

/* ==========================================
   VARIABLES GLOBALES (Colores del Logo IMC)
   ========================================== */
:root {
    --color-teal-dark: #0a5666;         
    --color-teal-vibrant: #12a8bc;      
    --color-nav-bg: #3c1460;            
    
    /* COLORES SACADOS DEL LOGO IMC */
    --color-azul-imc: #0056b3;          
    --color-rojo-imc: #e60000;          
    --color-amarillo-imc: #ffcc00;
    --color-rojo-grad: linear-gradient(90deg, #e60000, #ff4d4d); 

    --color-footer-bg: #12051e;         
    --color-verses-bg: #220b38;         
    --color-activities-bg: #351654;     
    --color-diagonal-bg: #1c092e;
    --color-input-border: #7b38a8;      
    --color-btn-green: #5cb85c;
    
    /* FONDO DE LOS FORMULARIOS (EL VERDE/TURQUESA) */
    --color-bg-form: #0a5666;

    /* COLORES DEL FOOTER RENOVADO Y CONTACTO PRO */
    --color-gold: #C9A84C;
    --color-text-muted: #b0a0c9;
}

body {
    font-family: 'Nunito', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* ==========================================
   HEADER Y TOP BAR 
   ========================================== */
.top-bar-container, .top-bar {
    background-color: var(--color-teal-dark); 
    display: flex;
    align-items: center;
    padding: 8px 20px 8px 250px; 
    color: #ffffff;
    font-size: 0.85rem;
    border-bottom: none !important; 
    position: relative;
    z-index: 20;
}

.top-bar i { color: var(--color-rojo-imc); margin-right: 6px; font-size: 1rem; }
.social-icons a { color: #ffffff; margin-left: 15px; text-decoration: none; font-size: 1rem; transition: color 0.3s; }
.social-icons a:hover { color: var(--color-rojo-imc); }

.top-bar-info { flex-grow: 1; text-align: center; color: #ffffff; }

/* ==========================================
   LOGO SECTION (Fondo suave)
   ========================================== */
.logo-section {
    position: relative;
    color: white;
    text-align: center;
    padding: 10px 0; 
    min-height: 85px; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 35;
    background-color: var(--color-teal-vibrant);
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 12%, rgba(255,255,255,0) 35%),
        url('img/fondo-ondas-imc.png'); 
    background-repeat: no-repeat, repeat-x;
    background-position: left center, center right;
    background-size: auto, auto 100%;
}

/* LOGO COMPLETO, GIGANTE Y FLOTANTE HACIA ARRIBA */
.logo-section img.logo-img, .logo-section img { 
    position: absolute !important; 
    left: 20px !important; 
    top: -35px !important; 
    height: 140px !important; 
    width: auto !important;
    z-index: 100 !important; 
    background: transparent !important; 
    border: none !important;
    border-radius: 0 !important; 
    padding: 0 !important; 
    box-shadow: none !important;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.6)) !important; 
    object-fit: contain !important;
    clip-path: none !important;
}

/* ==========================================
   ECUALIZADOR FLOTANTE SIN FONDO NEGRO
   ========================================== */
.equalizer-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 5 !important;
    background-color: transparent; 
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: none; 
    border: none; 
}

.eq-titulo {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 2.5rem;
    font-style: italic;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    color: #808080; 
    filter: drop-shadow(0 1px 1px rgba(255,255,255,0.8)); 
}

/* AQUÍ SE RESPETA TU CÓDIGO COMENTADO DEL ECUALIZADOR */
/*
.equalizer {
    display: flex;
    align-items: flex-end;
    height: 40px;
    gap: 3px;
}

.equalizer .bar {
    width: 10px;
    height: 100%;
    background: linear-gradient(to top, var(--color-azul-imc) 0%, var(--color-amarillo-imc) 60%, var(--color-rojo-imc) 100%);
    position: relative;
    animation: ecualizar-led 0.6s infinite ease-in-out alternate;
    transform-origin: bottom; 
}

.equalizer .bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        transparent 0px,
        transparent 4px,
        var(--color-teal-vibrant) 4px, 
        var(--color-teal-vibrant) 6px
    );
    z-index: 2;
}

.equalizer .bar:nth-child(1) { animation-delay: 0.1s; }
.equalizer .bar:nth-child(2) { animation-delay: 0.4s; }
.equalizer .bar:nth-child(3) { animation-delay: 0.2s; }
.equalizer .bar:nth-child(4) { animation-delay: 0.5s; }
.equalizer .bar:nth-child(5) { animation-delay: 0.3s; }
.equalizer .bar:nth-child(6) { animation-delay: 0.6s; }
.equalizer .bar:nth-child(7) { animation-delay: 0.15s; }

@keyframes ecualizar-led {
    0% { transform: scaleY(0.1); opacity: 0.4; }
    100% { transform: scaleY(1); opacity: 1; }
}
*/

/* AQUÍ SE RESPETA TU CÓDIGO COMENTADO DE LA DIAGONAL (Corte de la mujer) */
/* ==========================================
   EL ENVOLTORIO DIAGONAL (El corte de la mujer)
   ========================================== 
.diagonal-wrapper { position: relative; width: 100%; overflow: hidden; background-color: var(--color-nav-bg); }
.diagonal-overlay {
    position: absolute; top: 0; right: 0; width: 45%; height: 100%;
    background-size: cover; background-position: center left;
    z-index: 10; clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%); pointer-events: none; 
}
.diagonal-overlay::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(53, 22, 84, 0.6) 0%, rgba(10, 86, 102, 0.4) 100%);
    mix-blend-mode: multiply; z-index: 11;
}
*/

/* ==========================================
   NAVEGACIÓN Y BOTÓN PÍLDORA (Azul y Rojo)
   ========================================== */
.navbar { 
    background-color: var(--color-nav-bg); padding: 10px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.4); position: relative; z-index: 5; 
}
.navbar-nav { width: 100%; justify-content: center; }
.navbar-nav .nav-item { margin: 0 6px; }

.navbar-nav .nav-link {
    color: #ffffff !important; padding: 8px 25px !important; font-weight: 700;
    border-radius: 50px !important; border: 2px solid transparent; transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-item.show .nav-link, .navbar-nav .nav-link.active {
    background-color: var(--color-azul-imc) !important;
    border: 2px solid var(--color-rojo-imc) !important; 
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.5); transform: translateY(-2px);
}

.custom-dropdown { background-color: var(--color-nav-bg); border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; padding: 15px 0; box-shadow: 0 10px 25px rgba(0,0,0,0.5); margin-top: 15px !important; }
.custom-dropdown .dropdown-item { color: #ffffff; font-weight: 600; padding: 10px 25px; font-size: 0.95rem; transition: background-color 0.2s; }
.custom-dropdown .dropdown-item:hover, .custom-dropdown .dropdown-item:focus { background-color: rgba(255, 255, 255, 0.1); color: var(--color-rojo-imc); }

/* ==========================================
   ESTILOS PÁGINA: INICIO
   ========================================== */
.hero { position: relative; height: 500px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; z-index: 1; }

.versiculos-wrapper-nuevo {
    position: relative;
    margin-top: -5vw; 
    z-index: 2;
}

.versiculos-linea-roja {
    position: absolute;
    top: 0; left: 0; right: 0; height: 20vw; 
    background-color: var(--color-rojo-imc); 
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.versiculos-section { 
    position: relative;
    background-color: var(--color-verses-bg); 
    color: white; 
    padding: 80px 0 60px; 
    margin-top: 12px; 
    clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}

.versiculo-box { text-align: center; padding: 20px; }
.versiculo-box i { font-size: 2rem; margin-bottom: 15px; color: var(--color-rojo-imc); } 
.versiculo-box h4 { font-weight: 700; margin-bottom: 15px; font-size: 1.1rem; }
.versiculo-box p { font-size: 0.9rem; line-height: 1.6; color: #d0c0e0; }

.youtube-section { background: linear-gradient(180deg, #1c092e 0%, #0a5666 100%); color: white; padding: 60px 0; text-align: center; margin-top: -1px; }
.youtube-section h2 { font-weight: 700; font-size: 2.5rem; margin-bottom: 5px; }
.youtube-section p { font-size: 0.85rem; color: #b0a0c9; margin-bottom: 40px; }
.video-container { max-width: 800px; margin: 0 auto; border: 5px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.salmo25-banner { position: relative; padding: 100px 0; background-image: url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; color: white; text-align: center; }
.salmo25-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(34, 11, 56, 0.75); }
.salmo25-banner .content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.salmo25-banner h3 { font-size: 1.8rem; font-weight: 600; line-height: 1.4; margin-bottom: 20px; }

.actividades-section { background-color: var(--color-activities-bg); padding: 60px 0; text-align: center; }
.actividades-section h2 { color: white; font-weight: bold; margin-bottom: 10px; }
.btn-morada { background: var(--color-rojo-grad); color: white; border: none; padding: 10px 30px; font-weight: bold; border-radius: 50px; margin-bottom: 40px; text-transform: uppercase; font-size: 0.9rem; transition: transform 0.3s; box-shadow: 0 4px 10px rgba(230, 0, 0, 0.4); }
.btn-morada:hover { transform: scale(1.05); }
.actividad-card { background: transparent; border: none; color: white; margin-bottom: 30px; }
.actividad-card img { border-radius: 8px; margin-bottom: 15px; border: 3px solid rgba(255,255,255,0.1); height: 200px; object-fit: cover; width: 100%; transition: transform 0.3s; }
.actividad-card:hover img { transform: scale(1.03); border-color: var(--color-azul-imc); }
.actividad-card h5 { font-weight: bold; margin-bottom: 5px; }
.actividad-card p { font-size: 0.75rem; color: #d0c0e0; letter-spacing: 1px; text-transform: uppercase; }

.salmo23-section { position: relative; padding: 80px 0; background-size: cover; background-position: center; color: white; text-align: center; background-color: var(--color-teal-dark); }
.salmo23-section .container { position: relative; z-index: 1; }
.salmo23-section h4 { font-weight: bold; margin-bottom: 20px; color: var(--color-azul-imc); font-size: 2rem;}
.salmo23-section p { font-style: italic; line-height: 1.8; max-width: 900px; margin: 0 auto; font-size: 1.1rem; }

/* ==========================================
   ESTILOS PARA NUEVA SECCIÓN DE VIDEOS Y VERSÍCULO (INICIO)
   ========================================== */
.hero-bible { position: relative; width: 100%; overflow: hidden; background-color: #000; }
.hero-bible img { width: 100%; max-height: 450px; object-fit: cover; opacity: 0.8; }

.verse-section { background-color: var(--color-nav-bg); color: #ffffff; padding: 60px 0; text-align: center; }
.verse-section h3 { font-size: 2rem; font-weight: 800; color: #ffffff; margin-bottom: 15px; }
.verse-section p { font-size: 1.2rem; color: var(--color-amarillo-imc); font-style: italic; font-weight: 600; }

.videos-grid-section { background-color: var(--color-nav-bg); padding-bottom: 80px; color: #ffffff; }
.video-column h4 { color: #ffffff; text-align: center; margin-bottom: 20px; font-weight: 700; font-size: 1.5rem; text-transform: uppercase; }
.video-wrapper { border: 3px solid rgba(255, 255, 255, 0.1); border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 10px 25px rgba(0,0,0,0.6); }

/* ==========================================
   ESTILOS PÁGINA: PRÉDICAS Y VIDEOS
   ========================================== */
.hero-predicas-wrapper { position: relative; width: 100%; overflow: hidden; }
.hero-predicas { height: 400px; background-image: url('img/predicas.png'); background-size: cover; background-position: center; position: relative; }
.seccion-videos { background-color: var(--color-nav-bg); padding: 60px 0 100px; position: relative; }
.seccion-videos::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 10px; background-color: var(--color-rojo-imc); z-index: 10; }
.titulo-predicas { text-align: center; font-size: 3rem; font-weight: 800; color: #ffffff; text-transform: uppercase; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); margin-bottom: 50px; }
.video-card { border: 3px solid rgba(255, 255, 255, 0.1); border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 10px 25px rgba(0,0,0,0.5); margin-bottom: 30px; transition: transform 0.3s ease, border-color 0.3s ease; }
.video-card:hover { transform: translateY(-5px); border-color: var(--color-rojo-imc); }

/* ==========================================
   ESTILOS PÁGINA: DEVOCIONALES (FONDO Y ACORDEÓN)
   ========================================== */
.hero-devocionales { position: relative; height: 450px; background-size: cover; background-position: center top; width: 100%; }
.content-section { position: relative; background: transparent; margin-top: -4vw; z-index: 2; }
.content-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 20vw; background-color: var(--color-rojo-imc); clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0% 100%); z-index: 1; }
.content-section::after { content: ''; position: absolute; top: 12px; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, var(--color-nav-bg) 0%, #11031c 100%); clip-path: polygon(0 5vw, 100% 0, 100% 100%, 0% 100%); z-index: 2; }
.diagonal-divider { display: none; }
.content-container { position: relative; z-index: 5; padding-top: 6vw; padding-bottom: 80px; }
.header-title { text-align: center; margin-bottom: 50px; }
.header-title h2 { font-size: 3rem; font-weight: 800; color: #ffffff; text-transform: uppercase; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); margin-bottom: 5px; }
.header-title p { font-size: 1.2rem; color: var(--color-amarillo-imc); font-style: italic; font-weight: 600; }
.accordion-item { background-color: rgba(0, 0, 0, 0.3) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; margin-bottom: 15px; border-radius: 10px !important; overflow: hidden; }
.accordion-button { background-color: transparent !important; color: #ffffff !important; font-size: 1.1rem; font-weight: 700; padding: 20px 25px; box-shadow: none !important; }
.accordion-button:not(.collapsed) { background-color: var(--color-azul-imc) !important; color: #ffffff !important; }
.accordion-button::after { filter: brightness(0) invert(1); }
.accordion-body { background-color: transparent !important; color: #d0c0e0; padding: 25px; line-height: 1.7; font-size: 1.05rem; }
.accordion-body strong { display: block; color: var(--color-amarillo-imc); font-size: 1.2rem; margin-bottom: 20px; font-style: italic; }
.accordion-body h5 { color: #ffffff; font-weight: 800; margin-top: 25px; margin-bottom: 10px; }
.accordion-body ol { margin-bottom: 25px; padding-left: 20px; }
.accordion-body li { margin-bottom: 10px; }
.ora-section { background-color: rgba(0, 0, 0, 0.3); padding: 20px; border-left: 5px solid var(--color-rojo-imc); border-radius: 0 8px 8px 0; margin-top: 30px; }
.ora-section h5 { color: var(--color-rojo-imc); margin-top: 0; font-size: 1.3rem; }
.ora-section p { margin-bottom: 0; color: #ffffff; font-style: italic; }

/* ==========================================
   ESTILOS OTRAS PÁGINAS (CONSEJERÍA, ORACIÓN)
   ========================================== */
.hero-consejeria, .hero-oracion, .hero-suscripcion { position: relative; height: 500px; background-size: cover; background-position: center left; display: flex; align-items: center; justify-content: center; width: 100%; }
.hero-title-bg { position: relative; z-index: 2; color: rgba(255, 255, 255, 0.9); font-size: 4rem; font-weight: 800; letter-spacing: 5px; margin-left: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); }

.seccion-formulario { background-color: var(--color-bg-form); padding: 60px 0 100px 0; color: white; }
.form-title { text-align: center; font-weight: 700; font-size: 2.5rem; margin-bottom: 30px; color: #ffffff; }
.custom-input { background-color: rgba(0,0,0,0.15) !important; border: 1px solid var(--color-input-border) !important; color: #ffffff !important; border-radius: 8px; padding: 12px 15px; margin-bottom: 15px; }
.custom-input::placeholder { color: #a684c9; }
.custom-input:focus { box-shadow: 0 0 10px rgba(0, 86, 179, 0.5); border-color: var(--color-azul-imc) !important; }

.btn-enviar { background: var(--color-rojo-grad); color: #ffffff; font-weight: bold; border-radius: 50px; padding: 12px 50px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; border:none; box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4); }
.btn-enviar:hover { transform: translateY(-2px); filter: brightness(1.1); }

.info-card { background-color: #ffffff; border-radius: 20px; padding: 40px; text-align: center; color: #333333; box-shadow: 0 15px 35px rgba(0,0,0,0.3); height: 100%; border-top: 5px solid var(--color-azul-imc); }
.info-card-title { color: var(--color-azul-imc); font-weight: bold; font-size: 1.8rem; margin-bottom: 20px; }
.info-card p { font-size: 0.95rem; color: #555555; margin-bottom: 25px; line-height: 1.6; }
.btn-naranja { background-color: var(--color-rojo-imc); color: #ffffff; width: 100%; border: none; padding: 12px; font-weight: 600; font-size: 0.9rem; margin-bottom: 20px; border-radius: 8px; transition: background-color 0.3s; }
.btn-verde { background-color: var(--color-btn-green); color: #ffffff; width: 100%; border: none; padding: 12px; font-weight: bold; font-size: 0.95rem; margin-bottom: 20px; border-radius: 8px; }
.horario-text { color: var(--color-azul-imc); font-weight: bold; margin-top: 10px; font-size: 1.1rem; }
.whatsapp-icon { color: #25D366; font-size: 3.5rem; margin-top: 10px; transition: transform 0.3s; display: inline-block; }
.whatsapp-icon:hover { transform: scale(1.1); }

/* ==========================================
   ESTILOS PÁGINA: QUIÉNES SOMOS
   ========================================== */
.hero-quienes { height: 400px; background-image: url('img/salmo23_1.png'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; }
.hero-quienes h2 { color: white; font-size: 4rem; font-weight: 800; text-transform: uppercase; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); position: relative; z-index: 2; }
.seccion-contenido { background-color: var(--color-nav-bg); padding: 60px 0 100px; color: white; position: relative; }
.seccion-contenido::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 10px; background-color: var(--color-rojo-imc); z-index: 10; }
.intro-text { font-size: 1.15rem; line-height: 1.8; text-align: center; margin-bottom: 40px; color: #d0c0e0; }
.intro-text strong { color: var(--color-amarillo-imc); }

.custom-accordion .accordion-item { background-color: rgba(0, 0, 0, 0.3) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; margin-bottom: 15px; border-radius: 10px !important; overflow: hidden; }
.custom-accordion .accordion-button { background-color: transparent !important; color: #ffffff !important; font-size: 1.1rem; font-weight: 700; padding: 20px 25px; box-shadow: none !important; }
.custom-accordion .accordion-button:not(.collapsed) { background-color: var(--color-azul-imc) !important; color: #ffffff !important; }
.custom-accordion .accordion-button::after { filter: brightness(0) invert(1); }
.custom-accordion .accordion-body { background-color: transparent !important; color: #d0c0e0; padding: 25px; line-height: 1.7; font-size: 1.05rem; white-space: pre-line; }

/* ==========================================
   ¡CORRECCIÓN! ESTILOS DE DONACIONES (TODO EN MODO OSCURO)
   ========================================== */
.hero-donaciones {
    padding: 80px 0 60px 0;
    background-color: var(--color-nav-bg); /* Mismo morado elegante del resto */
    color: white;
}
.donaciones-text-area h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff; /* Texto blanco en vez de oscuro */
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.donaciones-text-area p {
    font-size: 1.1rem;
    color: #d0c0e0; /* Texto secundario clarito */
    line-height: 1.7;
}
.donaciones-img img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.4)); /* Sombra más fuerte para fondo oscuro */
}

/* El fondo del formulario ahora es Turquesa/Verde oscuro */
.seccion-formulario-black {
    background-color: var(--color-bg-form); 
    padding: 60px 0 100px 0;
    color: white;
}
.form-title-black {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff; /* Título blanco */
    margin-bottom: 30px;
    text-align: center;
}

#formDonaciones {
    background-color: transparent; /* Le quito la tarjeta blanca que le puse antes */
    padding: 0;
    border-radius: 0;
    box-shadow: none; 
}

/* Los inputs de donaciones ahora son oscuros, igual que en consejería/oración */
.custom-input-black {
    background-color: rgba(0,0,0,0.15) !important;
    border: 1px solid var(--color-input-border) !important; 
    color: #ffffff !important;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s;
}
.custom-input-black::placeholder {
    color: #a684c9;
}
.custom-input-black:focus {
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.5);
    border-color: var(--color-azul-imc) !important;
    background-color: rgba(0,0,0,0.25) !important;
}

.terminos-text-black {
    color: #d0c0e0; /* Color clarito */
    font-size: 0.9rem;
}

.btn-enviar-black {
    background: var(--color-rojo-grad); 
    color: #ffffff;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    padding: 12px 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
}
.btn-enviar-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.4);
    color: #ffffff;
}

/* ==========================================
   DISEÑO PROFESIONAL "CONTÁCTANOS" 
   ========================================== */
.hero-contacto { position: relative; height: 350px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; width: 100%; }
.seccion-contacto-pro { background-color: #0d4f5c; }
.badge-text { color: #f6c965; font-weight: 800; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }
.text-yellow { color: #f6c965; }
.divider-yellow { width: 50px; height: 3px; background-color: #f6c965; }

.info-box-pro { background-color: #155e6d; border-left: 4px solid #f6c965; border-radius: 8px; padding: 20px; margin-bottom: 20px; display: flex; align-items: center; gap: 20px; }
.icon-circle { width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; font-size: 1.2rem; flex-shrink: 0; }
.bg-cyan { background-color: #008b98; }
.bg-purple { background-color: #6b2182; }
.bg-orange { background-color: #e85d04; }

.info-text h6 { color: #f6c965; font-size: 0.8rem; font-weight: 800; margin-bottom: 5px; letter-spacing: 1px; text-transform: uppercase;}
.info-text p { color: white; margin-bottom: 0; font-weight: 600; font-size: 1rem; line-height: 1.4; }

.social-circles a { width: 45px; height: 45px; background-color: #176575; color: white; display: inline-flex; justify-content: center; align-items: center; border-radius: 50%; margin-right: 10px; text-decoration: none; transition: 0.3s; }
.social-circles a:hover { background-color: #f6c965; color: #0d4f5c; }

.form-card-pro { background-color: #145968; border-top: 4px solid #f6c965; border-radius: 15px; padding: 40px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
.form-label-pro { color: white; font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 8px; }
.custom-input-pro { background-color: #206d7d !important; border: 1px solid #368292 !important; color: white !important; border-radius: 6px; padding: 12px 15px; font-size: 0.95rem; }
.custom-input-pro::placeholder { color: #8cb6bf; }
.custom-input-pro:focus { border-color: #f6c965 !important; box-shadow: none; outline: none; }

.btn-pro-submit { background-color: #f6c965; color: #000; font-weight: 800; font-size: 1rem; letter-spacing: 1px; padding: 15px; border-radius: 6px; border: none; transition: 0.3s; }
.btn-pro-submit:hover { background-color: #e5b64c; transform: translateY(-2px); }

/* ==========================================
   FOOTER GLOBAL RENOVADO
   ========================================== */
footer.footer-global { background-color: var(--color-footer-bg); color: white; padding: 70px 0 0 0; border-top: 4px solid var(--color-gold); font-family: 'Raleway', sans-serif; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--color-gold); margin-bottom: 15px; }
.footer-description { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.6; }

.social-links { margin-top: 20px; }
.social-links a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); color: var(--color-gold); border-radius: 50%; margin-right: 10px; transition: 0.3s; text-decoration: none; }
.social-links a:hover { background: var(--color-gold); color: var(--color-footer-bg); transform: translateY(-3px); }

.footer-contact-box h4, .footer-map h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-contact-box h4::after, .footer-map h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--color-gold); }

.contact-list { list-style: none; padding: 0; }
.contact-list li { margin-bottom: 15px; color: var(--color-text-muted); display: flex; align-items: flex-start; }
.contact-list i { color: var(--color-gold); margin-right: 15px; margin-top: 5px; }
.contact-list span { font-size: 0.85rem; opacity: 0.7; }

.map-container { filter: grayscale(0.5) contrast(1.2); transition: 0.3s; }
.map-container:hover { filter: grayscale(0); }

.copyright { background-color: #0a0212; padding: 20px 0; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: #888; }

/* AJUSTES PARA TELÉFONOS MÓVILES */
@media (max-width: 992px) {
    .diagonal-overlay { display: none; }
    .top-bar-container, .top-bar { padding-left: 20px; justify-content: center; flex-direction: column; text-align: center; }
    .logo-section { flex-direction: column; background: var(--color-teal-dark); min-height: auto; padding-top: 60px; background-image: none !important;}
    .logo-section img.logo-img, .logo-section img { position: relative !important; top: 0 !important; left: 0 !important; transform: none; margin-bottom: 10px; height: 110px !important; width: auto !important; }
    .equalizer-container { position: relative !important; top: 0 !important; left: 0 !important; transform: none !important; margin-top: 15px; margin-bottom: 15px; width: 90%; justify-content: center; flex-wrap: wrap; } 
    .eq-titulo { font-size: 1.8rem; text-align: center; color: #333 !important; }
    .contacto-titulo { position: static; text-align: center; margin-bottom: 30px; }
    .versiculos-wrapper-nuevo { margin-top: 0; }
}