a {
	color:inherit;
	text-decoration:none;
	font-weight:bold;
}

/* HEADER */

header {
    margin:0;
}

header.sticky {
    position:sticky;
    top:0;
    z-index:100;
}

header .header-container {
    flex-direction: row;
    display: flex;
    width:1200px;
}

header #branding {
    height: var(--header-height-front);
    flex: 1 0 auto;   /* ocupa el espacio disponible */
}

header nav {
    height: var(--header-height-front);
}

header nav ul {
    color:var(--color-5);
    height: var(--header-height-front);
    margin:0;
    list-style: none;
    display:flex;
    justify-content: flex-start;
    align-items: center;
}

header .logo {
    height: 100%;
    position: relative;
    padding: 1rem;;
}

header .logo img {
    height:100%;
}

header nav ul a {
    color:inherit;
    text-transform: uppercase;
    padding:0 10px;
    font-size:.9rem;
    font-weight:600;
    opacity: 1;
}

header nav ul a:hover {
    opacity:.8;
}

header nav.mobile .lang-button {
    color:white;
}

header nav.mobile {
    display: flex;
}

header nav .hamburger {
    padding:10px;
    cursor: pointer;
}

header nav .hamburger svg {
    fill:white;
    width:100%;
    height:100%;
}

h1, h2, h3, h4, h5 {
    margin: 1.25rem 0;
}

.mobile-menu {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:white;
    z-index:9999;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.35s ease-out;
    will-change: transform;
}

.mobile-menu.open {
    transform: translateX(0);
    transition: transform 0.35s ease-out;
    will-change: transform;
}

header nav .mobile-menu  ul {
    color: black;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding:2rem;
    height:100vh;
}

header nav .mobile-menu  ul li a {
    padding:1rem;
    display: inline-block;
    width:100vw;
}


header nav .mobile-menu  ul li a:hover {
    background-color: #f3f3f3;
    border-radius: 5px;;
}

header nav .mobile-menu  ul .close {
    align-self: end;
}

header nav .mobile-menu  ul .close-button {
    font-weight: bold;
    cursor:pointer;
    border-radius: 50%;
    display: flex;
    width:40px;
    height:40px;
    justify-content: center;
    align-items: center;
}

header nav .mobile-menu  ul .close-button:hover {
    background-color: #f3f3f3;
}

#home {
	min-height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#inscripciones {
	text-transform:uppercase;
	font-size:1.5em;
	font-weight: 300;
}

#inscripciones li {
	margin-bottom:10px;
}

.bi {
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    fill: currentcolor;
}
/* FOOTER */

footer.ovo {
    position: relative;
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 2rem;
    border-top: 2px solid #c0c0c0;
	min-height: var(--footer-height-front);
}

.ovo-social img:hover {
	opacity:1;
}

footer.ovo .footer-container {
    width:1200px;
    margin:0 auto;
}

footer .ovo-social {
    justify-content: flex-start;
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
}

footer .ovo-social img {
    max-width:30px;
    margin-right:1rem;
	opacity:.8;
}

footer .site-logo img {
    max-height:150px;
}

.main-image.format-banner {
	aspect-ratio: 3040 / 1020;
}

.page {
    position:relative;
}

.page .main-image {
    margin-bottom: 2rem;
}

.page-container {
    width:1200px;
    margin:0 auto;
}

/* OVO EMBED */

.ovo-embed-responsive {
    position: relative;
    width: 300px;
    padding-bottom: 56.25%;
    padding-bottom: 200px;
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
}

.ovo-embed-responsive iframe {
    position: absolute;
    width: 300px;
    left: 0;
    top: 0;
    height: 200px;
}

.ovo-embed-responsive iframe,
.ovo-spotify-embed {
    position: relative;
    width: 300px;
    left: 0;
    top: 0;
    min-height: 200px;
}

.ovo-spacer {
    height: 40px;
}

.main-image.hero {
    margin-inline: calc(var(--main-padding) * -1);
    margin-top: calc(var(--main-padding) * -1);
    width:100vw;
}

.main-image.hero img {
    width:100vw;
    max-width: 100vw;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.schedule-table th {
    background: #f5f5f5;
    font-weight: bold;
}

.day-card {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 12px;
	margin-bottom: 12px;
}

.day-card h3 {
	margin: 0 0 8px;
}

.slot {
	background: #f7f7f7;
	border-left: 4px solid #333;
	padding: 8px;
	margin-bottom: 6px;
	border-radius: 4px;
}

.slot .time {
	font-weight: bold;
	margin-bottom: 2px;
}

.slot .name {
	font-size: 14px;
}

@media (max-width: 1400px) {
	footer .logos {
		margin-bottom:0;
	}
	
	footer .logo img {
		height: 65px;
	}
}

@media (max-width: 1200px) {
	footer .logo img {
		height: 60px;
	}
}

@media (max-width: 991px) {

}

@media (max-width: 767px)  {	
	footer .logos {
		justify-content:center;
	}
	
	footer .logo {
		max-height:50px;
		flex-basis: 0;
	}
	
	footer .logo img {
		height: 12vw;
	}
}

@media (max-width: 576px)  {
}

/* Móvil pequeño (hasta 480px) */
@media (max-width: 480px) {
  /* estilos aquí */
}

/* Móviles normales (481px a 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  /* estilos aquí */
}

/* Tablets (768px a 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* estilos aquí */
}

/* Laptops (1025px a 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  /* estilos aquí */
}

/* Escritorios grandes (1201px en adelante) */
@media (min-width: 1201px) {
  /* estilos aquí */
}
