* {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

/* Ajuste para el body cuando el navbar es fixed */
body {
    padding-top: 160px; /* Altura del navbar (60px de logo + 12px de padding) */
}

.navbar-custom {
    background-color: #E73F40 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
}
        
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: white !important;
}

/* Centrado del título */
.navbar-brand-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Ocultar en móviles */
@media (max-width: 991.98px) {
    .navbar-brand-center {
        display: none !important;
    }
}

.navbar-custom .navbar-toggler-icon {
    filter: brightness(0) invert(1); /* Convierte negro a blanco */
}
        
.navbar-custom .navbar-toggler {
    border-color: white !important;
}
      
/* Ajuste para el logo */
.navbar-brand-logo {
    margin-right: auto; /* Empuja todo a la derecha */
}

/* Definición de fuentes con @font-face */
@font-face {
    font-family: 'Owners';
    src: url('../assets/fonts/Owners_XBlack.otf') format('opentype');
    font-weight: 900; /* XBlack */
    font-style: normal;
    font-display: swap; /* Evita texto invisible durante la carga */
}

@font-face {
    font-family: 'Owners Narrow';
    src: url('../assets/fonts/Owners_Narrow_XBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Basic Sans';
    src: url('../assets/fonts/Basic_Sans_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Basic Sans';
    src: url('../assets/fonts/Basic_Sans_Regular.otf') format('opentype');
    font-weight: 400; /* Regular */
    font-style: normal;
    font-display: swap;
}

/* Jerarquía tipográfica */
h1, h2, h3 {
    font-family: 'Owners', sans-serif;
    font-weight: 900;
    text-transform: uppercase; /* Forzar mayúsculas */
    letter-spacing: 0.03em; /* Mejor legibilidad */
}

h4, h5, h6 {
    font-family: 'Basic Sans', sans-serif;
    font-weight: 900;
}

.sostenidas {
    font-family: 'Owners Narrow', sans-serif;
    font-weight: 900;
    font-variant: small-caps;
    letter-spacing: 0.5px;
}

body, p {
    font-family: 'Basic Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

body {
    background-color: #FAE2D3;
    /* background-color: white; */
    min-height: 100vh; /* Opcional: cubre toda la altura visible */
}

/* Footer con azul #2E446C
.custom-footer {
    background-color: #2E446C !important;
    color: white;
    font-family: 'Basic Sans', sans-serif;
    border-top: 3px solid rgba(255, 255, 255, 0.1); /* Borde más grueso para contraste
}

.custom-footer p {
    font-weight: 400;
    font-size: 0.95rem; /* Un poco más grande para legibilidad */
    /*
    letter-spacing: 0.05em;
    opacity: 0.9; /* Suaviza el blanco para reducir brillo
}

/* Versión móvil */
/*
@media (max-width: 768px) {
    .custom-footer {
        padding: 1.5rem 0 !important;
    }
}*/

/* Estilos para el Hero Section */
.hero-section {
    background-image: url('../img/backgrounds/wall-paper2.jpg'); /* Ruta de tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh; /* 80% del viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: -72px; /* Compensa el padding del body */
    padding-top: 72px; /* Vuelve a agregar el espacio */
}
        
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay oscuro para mejor legibilidad */
}
        
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}
        
.hero-title {
    font-family: 'Owners', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 3.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
        
.hero-subtitle {
    font-family: 'Basic Sans', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
        
.btn-hero {
    background-color: #E73F40;
    border: none;
    padding: 12px 30px;
    font-family: 'Basic Sans', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}
        
.btn-hero:hover {
    background-color: #c53232;
    transform: translateY(-3px);
}
        
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
            
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 56px; /* Altura reducida en móviles */
    }
    
    .hero-section {
        margin-top: -56px;
        padding-top: 56px;
    }
}

/* Estilos para el modal de imágenes completas */
#modalActividades .modal-content {
    background: #000; /* Fondo negro para mejor contraste */
    border: none;
}
    
#modalActividades .modal-body {
    padding: 0;
}
    
#modalActividades img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 70vh; /* Limita la altura máxima */
}
    
#modalActividades .modal-header {
    padding: 1rem 1.5rem;
}

/*
#modalContacto {
    background: linear-gradient(to bottom,#E73F40, #FAE2D3);
}*/

/* PDF */

.main-content {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
}
.pdf-card {
    max-width: 350px;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 0; /* Elimina el padding de la card */
    overflow: hidden; /* Asegura que la imagen no sobresalga */
    background-color: transparent; /* Fondo transparente para la card */
}
.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.pdf-card img {
    width: 100%;
    max-width: 350px; /* Tamaño máximo reducido */
    height: auto;
    cursor: pointer;
    display: block; /* Elimina espacio inferior de imágenes inline */
    margin: 0 auto; /* Centra la imagen horizontalmente */
}
/* Elimina cualquier padding del contenedor del enlace */
.pdf-card a {
    display: block;
    padding: 0;
    margin: 0;
}

/* Sección de la copla
#copla {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    background-color: #F9F8ED;
}
        
.container-copla {
    max-width: 450px;
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
        
#h4-copla {
    margin-bottom: 25px;
    font-size: 1.8em;
}
        
#p-copla {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1em;
}

.official-link {
    font-family: 'Basic Sans', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* color: #E73F40; */
    /*
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.official-link:hover {
    color: #c53232;
    text-decoration: underline;
}*/

/* Carrusel de infografías - Múltiples imágenes */
.infographic-carousel {
    padding: 3rem 0;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    background: #F9F8ED;
}
        
.carousel-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
}
        
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
        
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
        
.carousel-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
}
        
.carousel-img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /*height: 300px;*/
    width: 100%;
    object-fit: cover;
}
        
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}
        
.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
        
.carousel-control.prev {
    left: 15px;
}
        
.carousel-control.next {
    right: 15px;
}
        
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
        
.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
        
.carousel-indicator.active {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 50%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
            
    .carousel-slide {
        flex: 0 0 100%;
    }
}

/* ESTILOS PARA CENTRAR COLUMNAS (programa y video) */
/* 
.centered-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
        
.pdf-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}
        
.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
        
.pdf-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
        
.pdf-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}
        
.pdf-card:hover img {
    transform: scale(1.05);
}
        
.video-container {
    background: #fff;
    border-radius: 12px;
    padding: 0px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
        
.video-placeholder {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    /*padding-top: 56.25%;*/ /* Relación de aspecto 16:9 */
    /*
    width: 100%;
    max-width: 280px;
}
        
.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
        
/* RESPONSIVE */
/*
@media (max-width: 767.98px) {
    .video-container {
        margin-top: 30px;
    }
}*/

/* Estilos para la nueva sección de video */
.video-full-section {
    width: 100%;
    background-color: #000;
    padding: 60px 40px; /* Más padding lateral */
    margin: 40px 0;
}
        
.video-container-full {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
        
.video-full {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
        
/* Asegurar que los controles sean completamente visibles */
.video-full::-webkit-media-controls {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}
        
.video-full::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    visibility: visible;
}
        
.video-full::-webkit-media-controls-play-button {
    display: flex;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
        
.video-full::-webkit-media-controls-fullscreen-button {
    display: flex;
    opacity: 1;
}
        
.video-full::-webkit-media-controls-timeline {
    display: flex;
    opacity: 1;
}
        
.video-full::-webkit-media-controls-volume-slider {
    display: flex;
    opacity: 1;
}
        
.video-full::-webkit-media-controls-current-time-display,
.video-full::-webkit-media-controls-time-remaining-display {
    display: flex;
    opacity: 1;
    color: white;
}
        
/* Mejorar la apariencia de los controles en otros navegadores */
.video-full::-moz-range-track {
    background-color: rgba(255, 255, 255, 0.5);
}
        
.video-full::-ms-fill-lower {
    background-color: rgba(255, 255, 255, 0.5);
}
        
/* Responsividad para dispositivos móviles */
@media (max-width: 992px) {
    .video-full-section {
        padding: 50px 30px;
    }
}
        
@media (max-width: 768px) {
    .video-full-section {
        padding: 40px 20px;
    }
}
        
@media (max-width: 576px) {
    .video-full-section {
        padding: 30px 15px;
    }                        
}

/* FOOTER CON DOS COLUMNAS - COPLAS A LA IZQUIERDA, INFO A LA DERECHA */
.custom-footer {
    background-color: #2E446C;
    color: white;
    padding: 40px 0 20px;
}
        
.footer-coplas {
    padding-right: 30px;
}
        
.footer-info {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
        
.footer-copla-text {
    font-style: italic;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}
        
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: bold;
    /* color: #ffcc80; */
    color:#F9F2B4;
}
        
.official-link {
    /* color: #ffcc80; */
    color:#F9F2B4;
    text-decoration: none;
}
        
.official-link:hover {
    /* color: #ffb74d; */
    color:#F9F2B4;
    text-decoration: underline;
}
        
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
}
        
/* Responsividad para el footer */
@media (max-width: 768px) {
    .footer-coplas, 
    .footer-info {
        padding: 0 15px;
        border-left: none;
        text-align: center;
    }
            
    .footer-info {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: none;
    }
            
    .footer-copla-text {
        text-align: center;
    }
}

/* NUEVA SECCIÓN: DOS COLUMNAS DEBAJO DEL VIDEO */
.quotes-section {
    padding: 60px 40px;
    background-color: #f9f8ed;
}
        
.quote-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2E446C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
        
.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
        
.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}
        
.quote-icon {
    color: #1a237e;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
        
.pdf-image-container {
    text-align: center;
    padding: 20px;
}
        
.pdf-image {
    max-width: 75%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
        
.pdf-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
        
.pdf-download-text {
    margin-top: 15px;
    font-weight: 600;
    color: #2E446C;
    font-size: 1.1rem;
}
        
/* Responsividad para dispositivos móviles */
@media (max-width: 992px) {            
    .quotes-section {
        padding: 50px 30px;
        }
    }
        
@media (max-width: 768px) {
    .quotes-section {
        padding: 40px 20px;
    }
            
    .quote-text {
        font-size: 1rem;
    }
}
        
@media (max-width: 576px) {            
    .quotes-section {
        padding: 30px 15px;
    }                    
}