@charset "utf-8";
/* ===== Reset básico ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: "Calibri", "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Contenedor general ===== */

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}



/* Escritorio */
.hero {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    
    height: 244px;
    background-image: url("imagenes/cabecera_navigalia.jpg");
    background-size: cover;
    background-position: center center;
    aspect-ratio: 21 / 9;
}

/* Móvil / tablet */
@media (max-width: 960px) {
    .hero {
        height: auto;
        aspect-ratio: auto;
        background-image: url("imagenes/cabecera-movil.jpg") !important;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top center;

        padding-top: 0;
        padding-bottom: 41.7%;   /* 450 / 1080 → 41.7% */
      
        overflow: hidden;
    }
}









.hero-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
}

.hero-title {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* ===== Breadcrumb / menú ===== */

.breadcrumb-bar {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-color: #fafafa;
}

.breadcrumb-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    color: #666;
}

.breadcrumb-site {
    opacity: 0.9;
}

.breadcrumb-path a {
    text-decoration: none;
    color: #b3004b; 
}

.breadcrumb-path a:hover,
.breadcrumb-path a:focus-visible {
    text-decoration: underline;
}

/* ===== Contenido ===== */

.site-main {
    background-color: #fff;
}

.page-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #345088; /* #b3004bcolor del título Navigalia */
}

/* Layout 2 columnas */

.two-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.col {
    flex: 1 1 0;
}

/* Columna imagen */

.col-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
  /*  aspect-ratio: 4 / 3;*/
    background: #e5e5e5;
    border: 1px dashed #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #777;
}

/* Columna texto */

.col-text {
    font-size: 0.97rem;
}

.section-title {
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.col-text p {
    margin-bottom: 0.75rem;
}

.col-text ul {
    margin: 0.5rem 0 0 1.2rem;
}

.col-text li {
    margin-bottom: 0.4rem;
}

/* ===== Pie ===== */

.site-footer {
    border-top: 1px solid #eee;
    background-color: #fafafa;
    padding: 1.5rem 0;
}

.footer-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* ===== Responsive ===== */

@media (min-width: 768px) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .two-column {
        flex-direction: row; /*  2 columnas */
        align-items: flex-start;
    }
	
	
}
/* CSS Document */


/* FOOTER SOCIAL */
.social-footer {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    background: #fff;
}

.social-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.social-footer .icon {
    width: 42px;
    height: 42px;
    background: #e6e6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.3s, transform 0.2s;
}

.social-footer .icon svg {
    width: 20px;
    height: 20px;
    fill: #555;
    transition: fill 0.3s;
}

/* ------- HOVERS PERSONALIZADOS -------- */
.icon.facebook:hover {
    background: #3b5998;
}
.icon.facebook:hover svg {
    fill: white;
}

.icon.twitter:hover {
    background: #1DA1F2;
}
.icon.twitter:hover svg {
    fill: white;
}

.icon.linkedin:hover {
    background: #0077B5;
}
.icon.linkedin:hover svg {
    fill: white;
}

.icon.whatsapp:hover {
    background: #25D366;
}
.icon.whatsapp:hover svg {
    fill: white;
}

.icon.twitter:hover {
    background: #000;
}
.icon.twitter:hover svg {
    fill: #fff;
}
.icon.youtube:hover {
    background: #FF0000;
}
.icon.youtube:hover svg {
    fill: white;
}
.icon.tiktok:hover {
    background: #010101; /* negro TikTok */
}

.icon.tiktok:hover svg {
    fill: #fff;
}

.icon.instagram:hover {
    background: #E4405F; /* Color de Instagram */
}

.icon.instagram:hover svg {
    fill: #fff;
}



/* Animación suave */
.social-footer .icon:hover {
    transform: translateY(-3px);
}

.video-section {
    padding: 2rem 0;
}

/* Wrapper responsivo 16:9 */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 56.25%; /* 16:9 → 9/16 = 0.5625 */
    background: #000;    /* fondo negro mientras carga */
    overflow: hidden;
	
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
	
}

/* ===== LOGOS BAJO EL VÍDEO ===== */

.logos-section {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.logo-item {
    flex: 0 1 320px;   /* se adaptan: 4–5 por fila en grande, menos en pantallas pequeñas */
    text-align: center;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    /* filter: grayscale(80%);
    opacity: 0.8;*/
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}
.btn-entradas-container {
    text-align: center;
    margin-top: 2rem;
}

/* Colores sacados del póster */
.btn-entradas {
    background-color: #cfa61e; /* Amarillo Navigalia */
    color: #345088;            /* Azul  tipo horarios */
    padding: 0.9rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    border: 2px solid #E9C22A;
}

/* Hover */
.btn-entradas:hover {
    background-color: transparent;
    color: #345088;
    border-color: #cfa61e;
}
.col-image {
    display: flex;
    flex-direction: column; /* fuerza que imagen y botón vayan en columna */
    align-items: center;    /* centrado horizontal */
}
