
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

@font-face {
  font-family: 'rollingStright';
  src: 
       url('/fonts/RollingStright.ttf') format('truetype'),   
       url('/fonts/RollingStright.ttf') format('opentype'); 
       
  font-weight: normal;
  font-style: normal
}

/*  RESET ALL --------------------------------------------- */
body,h1,h2,h3,h4,h5,h6 {
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: white;
}

body{
  background-color: black;
}

p{
  line-height: 1rem;
  font-weight: 50;
  padding-left: 1rem;
  padding-right: 1rem;
  
}
/* GENERAL STYLES ----------------------------------------- */

.tituloGrande{
  font-family: 'Inter';
  font-size: 2rem;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-top: 1rem; 
  margin-bottom: 1rem;     
  line-height: 2rem;
}

.titulo{
  font-family: 'Inter';
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  text-align: center;
  line-height: 2rem;
  margin: 0 auto;
}

.subtitulo{
  font-family: 'Inter';
  font-size: .8rem;
  color: white;
  text-align: center;
}

.subtitulo2{
  font-family: 'IBM Plex Mono';
  font-size: 1.1rem;
  color: white;
  text-align: center;
  text-decoration: none;
}

.vinculo{
  font-family: 'Nunito Sans';
  font-weight: 500;
  font-size: 1.2rem;
  color: white;  
  text-decoration: none;
}

.descarga{
  text-decoration-line: underline;
  text-underline-offset: .5rem;
}

.headersTexto{
  font-family: 'Nunito Sans', SemiBold;
  color: white;
}

p {
  font-family: 'Nunito Sans', light;
  text-align: center;
  color: white;
  font-size: .80rem;
}
.texto{
  font-family: 'Nunito Sans', light;
  text-align: center;
}

.decorados{
  font-family: 'rollingStright';
  font-size: 3.5rem;
  color: white;
  line-height: 2.2rem;
  text-align: center;
  margin: 0 auto;
  max-width: 500px;
}

.titulosDiv{
  font-family: 'Nunito Sans';
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-align: center;
  line-height: 0%;
}

.topFade{
  position: absolute; 
  top: 0;
  width: 100%;
}
.bottomFade{
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* MENU OPTIONS ----------------------------------------- */

.header {
  position: relative; /* Allow absolute positioning of children */
  overflow: auto; /* Allow scrolling if content exceeds viewport height */
  z-index: 10; /* Ensure header is on top of video */
  
}


#navbar {
  display: flex; /* Use flexbox for better alignment */
  justify-content: space-between; /* Distribute items evenly */
  align-items: center; /* Vertically center items */
  width: 100%; /* Make the navbar take up full width */
  padding-left: 2rem;
  padding-right: 2rem;
  height: 2.5rem;
}


#navbar a:hover {
  background-color: #ddd; /* Change background color on hover */
}

#navbar a.active {
color: white; /* Change text color for active link */
}

#navbar {
  overflow: hidden;
  background-color: #00000059;
}

#navbar a {
  text-decoration: none;
  font-size: 17px;
  color: white;
}

#navbar a:hover {
  background-color: #00000059;
  color: rgb(78, 78, 78);
}

#navbar a.active {
  color: white;
}

.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}

/* DRAWER OPTIONS ----------------------------------------- */
.menu-button {
  position: fixed;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  z-index: 10; /* Ensure button is on top */
}

#topMenuButton {
  top: -2px;
  right: 10px; 
}

#bottomMenuButton {
  bottom: 10px;
  right: 10px;  /* Align bottom button to the right */
  font-size: 2.5rem;
}

.drawer {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9; /* Ensure drawer is below the button */
  top: 0;
  right: 0; /* Position the drawer on the right */
  /* background-color: rgba(0, 0, 0, 0.356); */
  overflow-x: hidden;
  /* transition: 0.5s; */
  padding-top: 60px; 
}

.drawer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  text-align: right; /* Align list items to the right */
}

.drawer li {
  padding: 8px 32px 8px 8px; /* Adjust padding to be larger on the left */
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.drawer li:hover {
  color: #f1f1f1;
}

.drawer.open {
  width: 30%;
}
/* ACCORDION  ---------------------------------*/
.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.4s;
}

.accordionLink{
  color: white;
  text-decoration: none;
  font-family: 'IBM Plex Mono';
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.3rem;
  
}

.accordion:after {
  content: '\002B';
  font-weight: bold;
  margin-left: 5px;
}

.active:after {
  content: " \2212";
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  /* transition: max-height 0.2s ease-out; */
}

button{
  background-color: black;
  color: white;
  font-size: 2rem;
}

hr{
  width: 250px;
}


/* Carrousel  */

.site-container {
  max-width: 800px;
  margin: 3em auto;
  padding: 0 2em;
}

.demo-title {
  text-align: center;
  margin-bottom: 2em;
}

.carousel+.carousel {
  margin-top: 4em;
}

:root {
  --carousel-height: 350px;
  --carousel-radius: 0.5em;
  --carousel-nav-btn-dim: 3em;
  --carousel-page-nav-btn-dim: 0.5em;
  --carousel-caption-padding: 2em;
  --carousel-caption-color: #fff;
  --carousel-caption-bg: linear-gradient(
    to bottom,
    transparent,
    hsl(0 0 0 / 65%) 80%
  );
  --carousel-inner-spacing: 2em;
  --carousel-prev-next-btn-bg: #fff;
  --carousel-prev-next-btn-color: #333;
  --carousel-pagination-margin: 1em;
  --carousel-pagination-gap: 0.75em;
  --carousel-pagination-btn-bg: #aaa;
  --carousel-pagination-btn-active-bg: #333;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font: 1em/160% sans-serif;
}

img,
video,
iframe {
  max-width: 100%;
}

.carousel-inner {
  overflow: hidden;
  position: relative;
  min-height: var(--carousel-height);
  border-radius: var(--carousel-radius);
  height: 50vh;
  margin-bottom: -2rem;
}

.carousel-title {
  margin-top: 0;
  margin-bottom: 0.5em;
}

.carousel-title + .carousel-description {
  color: #888;
  margin-top: 0;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  /* transition: transform 0.5s cubic-bezier(0.42, 0, 0.58, 1); */
}

.slide-content {
  position: relative;
  z-index: 5000;
  height: 100%;
}

.slide-caption {
  width: 100%;
  position: absolute;
  padding: var(--carousel-caption-padding);
  left: 0;
  bottom: 0;
  color: var(--carousel-caption-color);
  background-image: var(--carousel-caption-bg);
}

.slide-caption a {
  color: currentColor;
}

.slide-caption h3,
.slide-caption p {
  margin: 0;
}

.slide-caption p {
  font-size: 75%;
  opacity: 0.6;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  /* width: var(--carousel-nav-btn-dim); */
  height: var(--carousel-nav-btn-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  font-weight: lighter;
  /* background-color: var(--carousel-prev-next-btn-bg); */
}

.carousel-btn--prev-next {
  position: absolute;
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  /* transition: transform 0.1s ease-in-out; */
}

.carousel-btn--prev-next:hover {
  transform: translateY(-50%) scale(1.2);
}

.carousel-btn--prev {
  left: var(--carousel-inner-spacing);
  font-size: 1.5rem;
}

.carousel-btn--next {
  right: var(--carousel-inner-spacing);
}

.carousel-pagination {
  margin-top: var(--carousel-pagination-margin);
  display: flex;
  gap: var(--carousel-pagination-gap);
  justify-content: center;
}

.carousel-pagination .carousel-btn {
  background-color: var(--carousel-pagination-btn-bg);
  height: var(--carousel-page-nav-btn-dim);
  width: var(--carousel-page-nav-btn-dim);
  border-radius: 50%;
  color: transparent;
  transition: transform 0.25s, background-color 0.25s ease-in-out;
}

.carousel-pagination .carousel-btn--active {
  transform: scale(1.5);
  background-color: var(--carousel-pagination-btn-active-bg);
}



/*  FOOTER OPTIONS ----------------------------------------- */

.footer{
  width: 100%;;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;

}



/* REGLAS TABLET -------------------------------------------- */

@media only screen and (min-width: 480px) {
  .espacioDesktop{
    display:hidden;
  }

  hr{
    width: 350px;
  }

}


/* REGLAS DESKTOP -------------------------------------------- */
@media only screen and (min-width: 767px) {
  p{
    line-height: 1.9rem;
    font-size: 1.2rem;
    font-weight: 50;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* #navbar {
    padding-left: 6rem;
    padding-right: 6rem;
  } */

  hr{
    width: 500px;
  }

  .footer{
    width: 100%;;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-left: 6rem;
    padding-right: 6rem;
  
  }

  .decorados{
    font-family: 'rollingStright';
    font-size: 5rem;
    color: white;
    line-height: 2.2rem;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
  }

  .espacioDesktop{
    padding: 1rem;;
  }

  .carousel-inner{
    height: 65vh;
  }

  .slide{
    height: 65vh;;
  }
}

/* REGLAS LARGE DESKTOP -------------------------------------------- */
@media only screen and (min-width: 2000px) {

}