*{
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: antialiased;
    }
      /* Variables de color */
      :root {
        --primary: #25b681;
        --primary-color: #25b681;
        --secondary-color: #2f2c28;
        --accent-color: #daa620;
        --dark-color: #0D0202;
        --dark: #0D0202;
        --light-color: #F0DBD0;
      }

      /* Reset y configuración global */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Lato", sans-serif;
        color: var(--light-color);
        background-color: var(--dark-color);
        overflow-x: hidden;
      }
      h1,
      h2,
      h3,
      h4 {
        font-family: "Abhaya Libre", serif;
      }

      /* Loader */
      #loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color:var(--dark-color);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      #loader .spinner {
        border: 8px solid var(--secondary-color);
        border-top: 8px solid #543C32;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      
      nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;

      }
      .logo {
        font-size: 1.5rem;
        font-weight: bold;
      }
      /* Logo con imagen */
      .logo img {
        max-height: 50px;
        max-height: 70px;
      }
      .menu {
        list-style: none;
        display: flex;
        gap: 1rem;
      }
      .menu li a {
        text-decoration: none;
        color: var(--light-color);
        transition: color 0.3s;
        font-size: 1.3rem;
      }
      .menu li a:hover {
        color: var(--accent-color);
      }
      .social a {
        margin-left: 1rem;
        color: var(--light-color);
        font-size: 1.2rem;
        transition: color 0.3s;
        text-decoration: none;
      }
      .social a i{font-size:1.5rem;}
      .social a:hover {
        color: var(--accent-color);
      }

      /* Secciones con efecto parallax */
      section {
        padding: 100px 2rem 60px;
        text-align: center;
        position: relative;
      }
      .parallax {
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        color: var(--light-color);
      }
      
      section h2{
        font-size: 3.2em;
      }

      .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


.frase{ font-size:33px;color:#E9B093;font-family: "Roboto Serif", serif;     padding: 0px 0 50px; }


 /* Contenedor flexible */
    .video-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; /* Centra ítems en cada fila */
      gap: 1rem;
    }

    /* Cada ítem */
    .video-item {
      flex: 0 0 calc(33.333% - 1rem); /* 3 columnas */
      text-align: center;
      cursor: pointer;
    }

    .video-item img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      transition: transform .2s;
    }

    .video-item img:hover {
      transform: scale(1.05);
    }

    .video-title {
      margin-top: .5rem;
      font-weight: bold;
    }

    .video-duration {
      margin-top: .25rem;
      color: #666;
      font-size: .9rem;
    }

    /* Opcional: responsivo muy básico */
    @media (max-width: 600px) {
      .video-item {
        flex: 0 0 calc(50% - 1rem); /* 2 columnas en móvil */
      }
    }



/* SLIDE */
/* Contenedor del slider */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  /*  height: 100vh; Ocupa toda la altura de la ventana */
  aspect-ratio: 2 / 1;

}

/* Cada slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Slide activo */
.slide.active {
  opacity: 1;
}

/* Contenido dentro del slide */
.content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
}

/* Flechas de navegación */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.arrow.prev {
  left: 10px;
}

.arrow.next {
  right: 10px;
}

/* Bullets de navegación */
.bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.bullet.active {
  background: rgba(255, 255, 255, 1);
}










/* Sección Hero */
      #hero {
        background-color: var(--dark-color);
        padding: 150px 2rem 100px;
        margin: 0;
/*        margin-top: 70px; /* espacio para menú fijo */*/
        background-size: cover;
        background-position: center;
      }
      #hero p {
        font-size: 2.2rem;
        margin-bottom: 1rem;
      }
      #hero h1 {
        font-size: 4.5rem;
        margin-bottom: 1rem;
        color: var(--secondary-color);
      }
      #hero h1 b {
        font-size: 5.5rem;
        margin-bottom: 0;
        color: var(--primary-color);
      }
.voztitle{    margin: 50px 0 0;}

      .our{
        position: absolute;
        bottom: 0;
        right: auto;
        left: auto;
        background: var(--primary-color);
        display: inline-block;
        padding: 10px 50px;
        margin-left: -90px;
        border-radius: 10px 10px 0 0;
      }

      .plattforms h2{color: #543C32; font-size: 26px;}
      .plattforms{
        margin: 0;
        padding: 20px 0;
        background: white;
        background: linear-gradient(123deg, #F7ECDC, #E6D8C3);
      }
      .plattforms .container a{
        text-align: center;
        box-sizing: border-box;
        width: calc(20% - 10px);
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .plattforms .container a img{    max-height: 54px;}
      .plattforms .container{
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px;
          padding: 20px;
      }

      /* Efecto animado al hacer scroll */
      .animate {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      }
      .animate.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Layout de columnas */
      .columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding: 2rem;
      }

      /* Listados de servicios */
      .service-list {
        text-align: center;
        list-style: none;
        padding: 0;
      }
      .service-list li {
        margin-bottom: 0.5rem;
      }

      /* Galerías usando PhotoSwipe (estructura de <figure>) */
      .gallery {
        margin-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        gap: 4%;
        padding: 0;
      }
      .gallery figure {
        margin: 0;
        cursor: pointer;
        flex: 0 1 calc(33.33% - 10px);
        flex: 0 1 calc(22%);
      }
      .gallery figure img {
        width: 100%;
        display: block;
        border-radius: 12px;
      }
      .gallery figure figcaption {
        background: rgba(0, 0, 0, 0.6);
        color: var(--light-color);
        font-size: 0.8rem;
        padding: 0.3rem;
        text-align: center;
        opacity: 0.4;
        transition: opacity 0.3s;
      }
      .gallery figure:hover figcaption {
        opacity: 1;
      }


      .gallery figure figcaption {
        opacity: .9;
        font-size: 1rem;
      }
      .gallery figure:hover figcaption{ background:var(--primary-color); }


/*      iconos colors*/
.fa-facebook-f{color: #1554FF;}
.fa-instagram{ color: #FF386D;}
.fa-tiktok{ color: #fff;}
.fa-youtube{ color: #FF0004;}

      /* Footer */
      footer {
        background-color: var(--dark-color);
        color: var(--light-color);
        padding: 2rem;
      }
      .footer-top {
        text-align: center;
        margin-bottom: 2rem;
      }
      .footer-top p {
        margin: 0.3rem 0;
      }
      .footer-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 1rem;
      }
      .footer-bottom .company-desc {
        text-align: left;
      }
      .footer-bottom .company-img {
        min-height: 150px;
      }
      .footer-social {
        text-align: center;
      }
      .footer-social a {
        margin: 0 0.5rem;
        font-size: 1.5rem;
        text-decoration: none;
        color: var(--light-color);
        transition: color 0.3s;
      }
      .footer-social a:hover {
        color: var(--accent-color);
      }
      
      footer h1{color:white; font-size: 4.5rem;} 
      footer h1 a{color:var(--accent-color); text-decoration: none;}
      

      footer img.data{
        object-fit: cover;
        height: auto;
        width: 100%;
        aspect-ratio: 2 / 2;
        object-position: bottom;
        border-radius: 20px;
        outline: 2px solid rgba(255, 255, 255, .3);
        outline-offset: -2px;
      }

.mapx{
    position: relative;
    border:1px solid #EBEAE2;
/*  max-width: 500px;*/
    margin:30px auto 0;
    width: 100%; /* O cualquier valor especÃ­fico */
    aspect-ratio: 16 / 9; /* RelaciÃ³n de aspecto, por ejemplo, 16:9 */
    cursor:pointer;
    border-radius: 20px;
    overflow: hidden;
    background: #F0F1E7;
}

.custom-marker {
    position: absolute;
    width: 94px; /* Asegurar suficiente espacio */
    height: 94px;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Para que no bloquee interacciones en el mapa */
    overflow: visible; /* Evita el recorte */
}

#map{
/*  max-width: 500px;*/
    margin: 0 auto;
    width: 100%; /* O cualquier valor especÃ­fico */
    aspect-ratio: 16 / 9; /* RelaciÃ³n de aspecto, por ejemplo, 16:9 */
    cursor:pointer;
}

.location{color:#fff;padding: 5px 10px;}
.location h3{margin:8px 0 4px;}
.location p{margin:0;}



.gm-style-cc, .gmnoprint{display: none;}
.gm-style img[alt="Google"]{ opacity:0; }
.gm-style-cc, .gmnoprint a, .gm-svpc {
    opacity: 0.3 !important; /* Reduce la visibilidad */
    pointer-events: none !important; /* Evita que sean interactivos */
}



.nube{
    height: auto;
    margin: 0 auto;
    width: 100%; /* O cualquier valor especÃ­fico */
    aspect-ratio: 16 / 9; /* RelaciÃ³n de aspecto, por ejemplo, 16:9 */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor:pointer;
}
.name{
    position: absolute;
    font-size: 18px;
    color: #8E8E8E;
    font-weight: 800;
    z-index: 1;
    text-align: center;
    width: 100%;
    bottom: 20%;
    font-family: sans-serif;
}


.clouds{
    background-image: url(assets/cloud2.png);
    background-size: 397px 107px;
    background-repeat: repeat-x;
    background-position:0 10px;
    animation: movecloudlft 20s linear infinite;
}

.cloud{
    background-image: url(assets/cloud.png);
    background-size: 70% 80%;
    background-repeat: repeat-x;
    animation: movecloudrgt 20s linear infinite;
}


@keyframes movecloudlft {
    0% { background-position:0 -20px; }
    100% { background-position:397px -20px;}
}
@keyframes movecloudrgt {
    0% { background-position:0 230%; }
    100% { background-position: -400% 230%;}
}




.abouthead{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 1rem;}

#values{
    padding: 30px 2rem 50px;
    background-color:#F7F4C7;
    color:var(--primary-color);
}

#values .columns{ padding:1rem; }
#values .columns li, #values p{color: var(--dark-color);}

.infoabout h1, .infoabout p{text-align: left;}
#hero .infoabout h1{color: var(--primary-color);}

.aboutus #hero{
    padding: 90px 2rem 70px;
}




/* Contenedor principal con Grid en escritorio */
    .containervideo {
      display: grid;
      grid-template-columns: 3fr 1fr; /* 2 partes a la izquierda, 1 a la derecha */
      gap: 1rem;
      width: 80%;
      max-width: 1200px;
      margin: 2rem auto; /* Centra el contenedor */
      height: 600px; /* Ajusta la altura a tu preferencia */
    }


/* Iframe principal */
    .main-video {
      background-color: #ccc; /* Solo para referencia, puedes quitarlo */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Ajusta el iframe a todo el espacio disponible */
    .main-video iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Contenedor de miniaturas a la derecha */
    .thumbnails {
      display: flex;
      flex-direction: column;
      justify-content: space-between; /* Para distribuir verticalmente */
      gap: 20px;
    }

    /* Cada miniatura */
    .thumbnail {
      width: 100%;
      position: relative;
      cursor: pointer;
      overflow: hidden; /* Para recortar la imagen si es más grande */
    }

    .thumbnail img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Efecto sencillo al hacer hover */
    .thumbnail:hover {
      opacity: 0.8;
    }

    /* --- Versión móvil --- */
    @media (max-width: 768px) {
      .container {
        /* Deja de usar grid en móviles para apilar en columna */
        display: flex;
        width: 90%; /* Un poco más ancho en móviles, ajusta a tu gusto */
        height: auto; /* Permite que crezca */
      }

      /* El iframe queda arriba */
      .main-video {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
      }

      /* Miniaturas abajo en 3 columnas */
      .thumbnails {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        flex-direction: unset; /* quita la dirección de columna previa */
        justify-content: unset;
      }

      .plattforms .container a{width: calc(30% - 10px);}
      .biography .container, 
      .music-section .container{flex-direction: column;}

      .gallery img {
        flex: 0 1 calc(50% - 10px);
      }
      .slide img{    width: 28%;}
      .plattforms h2{padding: 0 30px;}
      .frase{font-size: 23px;}
      footer h1{font-size: 1.6rem;}
      .slider .arrow{display: none;}
    }

    @media (max-width: 454px) {
      .plattforms .container a{width: calc(50% - 10px); transform: scale(.8);}
    }








      /* Media Queries */
      @media (max-width: 768px) {
        
        .menu {
          flex-direction: column;
          margin: 1rem 0;
        }
        .gallery {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-bottom {
          grid-template-columns: 1fr;
        }
      }



    /*ESTILOS MOBILE  */
    @media (max-width: 768px) {
    /* Ajuste general para evitar desbordamientos */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Menú hamburguesa */
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--dark-color);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-top: 2px solid var(--primary-color);
    }

    .menu li {
        padding: 10px 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu.active {
        display: flex;
    }

    /* Ajuste de header */
    header {
        padding: 10px 15px;

    }

    /* Ajuste de secciones */
    section {
        padding: 60px 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    #hero {
        padding: 120px 1rem 60px;
    }

    #hero h1 {
        font-size: 2.8rem;
    }

    #hero h1 b {
        font-size: 3.5rem;
    }

    /* Ajuste de columnas */
    .columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }


    .abouthead{    grid-template-columns: 1fr;}
    .abouthead .foto img{width: 100%}

    /* Galería responsiva */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .gallery figure figcaption {
        font-size: 1rem;
    }

    /* Footer */
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .company-desc {
        text-align: center;
    }

    .company-img {
        margin: 0 auto;
    }

    /* Mapas */
    .mapx {
        width: 90%;
        aspect-ratio: 4 / 3;
    }

    /* Botones y enlaces */
    .footer-social a {
        font-size: 1.2rem;
        margin: 5px;
    }

    /* Evitar desbordamiento en textos largos */
    p, li {
        word-wrap: break-word;
    }
}


nav {
  position: relative;
}


/* Estilos para el menú hamburguesa */
.menu-toggle {
    display: none; /* Oculto en escritorio */
    cursor: pointer;
    font-size: 2rem;
    color: var(--light-color);
    background: none;
    border: none;
}


.overlayslide{height: 300px;
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, .4), transparent);
    width: 100%;
    z-index: 1;
}












    
/* Top Bar */
.top-bar {
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.9em;
}
.top-bar a{color: white; text-decoration: none;}
/* Encabezado */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background:var(--dark-color);
/*  background: #69483b;*/

    margin-bottom: -115px;
    z-index: 111;
    position: relative;
    background: transparent;
}
.namebrand{
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
}
.logo h1 {
  margin: 0;
  font-size: 1.8em;
}

.logo p {
  margin: 0;
  font-size: 0.9em;
}

/* Navegación */
nav {
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 20px;
}
.nav-links li a{color: var(--light-color); text-decoration: none;}

/* Estilos para el botón hamburguesa (móvil) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
      background: var(--light-color);
  margin-bottom: 4px;
  border-radius: 5px;
}

/* Secciones principales */
section {
  padding: 20px;
  margin: 20px 0;
}

/* Sección de Eventos */
.events .event-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.events .event {
  flex: 1 1 200px;
  background: #e2e2e2;
  padding: 15px;
  text-align: center;
  border-radius: 4px;
}

.logocamilo{margin: 80px auto 0;}
/* Sección de Música e Inspiración */
.media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
}

.media {
  flex: 1 1 200px;
  text-align: left;
}

.media img {
  display: block;
  margin: 0 auto 10px;
  width: 100%;
      border-radius: 12px;
}

.media a{ text-decoration:none; }
.media span{
    display: block;
    text-align: left;
    color: var(--light-color);
    margin-bottom: 21px;
}
.xxx{    width: 24px;
    position: relative;
    top: 3px;}

.media button, .media a.button {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
      background: var(--accent-color);
    
    font-weight: bold;
}
.brandinfo{
  font-family: "Roboto Serif", serif; 
  color:var(--light-color);
  font-size: 15px;
  padding: 40px 0 10px;
}
.aboutme{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 20px;
}

/* Sección Biográfica */
.biography .btn {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 3px;
}
.biography p{margin-bottom: 12px;}

/* Pie de página */
footer {
  background:#0D0202;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 10px;
}

footer nav ul li {
  margin: 0 10px;
}

.prefooter nav{
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    margin-bottom: 10px;
}
.prefooter nav a{color: var(--light-color); text-decoration: none;}













@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
         padding: 0 15px 15px;
         position: static;
         justify-content: right;
         width: 100%;

    }
    
    .menu-toggle {
        display: block; /* Se muestra en móviles */
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top:106px;
        right: 0;
        background: var(--dark-color);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-top: 2px solid var(--primary-color);
        transition: all 0.3s ease-in-out;
    }

    .menu.active {
        display: flex;
        gap: 0;
        padding: 0;
    }

    .menu li {
        padding:22px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}






/* Estilos Responsivos */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: flex-start;
    position: relative;
  }
  .nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 10px 0;
  }
  .hamburger {
    display: flex;
    align-self: flex-start;
    padding: 25px 0 10px;
  }
  .social{
        position: absolute;
        bottom: -5px;
        right: 0;
        left: 0;
        text-align: right;
        padding: 10px 64px 10px 10px;
  }
  .events .event-cards,
  .media-links {
    flex-direction: column;
  }
}
