/*primary color*/
.bg-cream {
    background-color: #FFF2E1;
}

/*font*/
body {
    font-family: 'Poppins', sans-serif;
}

.bg-yellow-500 {
    background-color: #F48C06;
}
.text-yellow-500 {
    color: #F48C06;
}
.floating { 
    animation-name: floating; 
    animation-duration: 2s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
} 
.floating-4 { 
    animation-name: floating; 
    animation-duration: 4s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating-4 { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
}
.text-darken {
    color: #2F327D;
}


/* HACEMOS DE TUS SUEÑOS */

@font-face {
    font-family: 'EXO-BOLD';
    src: url('../fonts/EXO-BOLD.TTF') format('truetype');
    font-weight: normal; 
    font-style: normal;
}

.font-exoBold {
    font-family: 'EXO-BOLD', sans-serif;

}


/* UNA REALIDAD */
@font-face {
    font-family: 'EXO-EXTRABOLD';
    src: url('../fonts/EXO-EXTRABOLD.TTF') format('truetype');
    font-weight: bolder; 
    font-style: normal;
}

.font-extraBold {
    font-family: 'EXO-EXTRABOLD', sans-serif;

}

/* letra normal */

@font-face {
    font-family: 'EXO-REGULAR';
    src: url('../fonts/EXO-REGULAR.TTF') format('truetype');
    font-weight: bolder; 
    font-style: normal;
}

.font-regular {
    font-family: 'EXO-REGULAR', sans-serif;
}


/* pequeña */
@font-face {
    font-family: 'EXO-LIGHT';
    src: url('../fonts/EXO-LIGHT.TTF') format('truetype');
    font-weight: bolder; 
    font-style: normal;
}

.font-light {
    font-family: 'EXO-LIGHT', sans-serif;
}

/* mediana */
@font-face {
    font-family: 'EXO-MEDIUM';
    src: url('../fonts/EXO-MEDIUM.TTF') format('truetype');
    font-weight: bolder; 
    font-style: normal;
}

.font-medium {
    font-family: 'EXO-MEDIUM', sans-serif;
}

/* italic negrita */
@font-face {
    font-family: 'EXO-BOLDITALIC';
    src: url('../fonts/EXO-BOLDITALIC.TTF') format('truetype');
    font-weight: bolder; 
    font-style: normal;
}

.font-boldItalic {
    font-family: 'EXO-BOLDITALIC', sans-serif;
}

/* italic */
@font-face {
    font-family: 'EXO-ITALIC';
    src: url('../fonts/EXO-ITALIC.TTF') format('truetype');
    font-weight: bolder; 
    font-style: normal;
}

.font-italic {
    font-family: 'EXO-ITALIC', sans-serif;
}

/* italic extra negrita  */
@font-face {
    font-family: 'EXO-EXTRABOLDITALIC';
    src: url('../fonts/EXO-EXTRABOLDITALIC.TTF') format('truetype');
    font-weight: bolder; 
    font-style: normal;
}

.font-extraItalic {
    font-family: 'EXO-EXTRABOLDITALIC', sans-serif;
}


.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.3s ease;
  font-family: 'EXO-MEDIUM', sans-serif;
  width: 100%; /* Asegúrate de que el contenedor interno ocupe el ancho completo */

}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .carousel-item {
    min-width: 50%;
    padding: 0px 10px;
  }
  .carousel-inner {
    padding: 0;
  }
}
.carousel-item img {
  display: block;
  width: 100%; /* Asegura que la imagen ocupe el ancho completo del contenedor */
  object-fit: cover; /* Mantén las proporciones de la imagen sin deformarla */
}

.carousel-item-content {
  background-color: #8b38bf;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carousel-item-content:hover {
  transform: scale(1.05);
}

.carousel-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.carousel-item h1 {
  color: black;
  text-align: center;
  font-family: 'EXO-EXTRABOLDITALIC', sans-serif;
  margin-bottom: 18px;
}

.carousel-item p {
  color: white;
  font-family: 'EXO-BOLDITALIC', sans-serif;
  font-size: 18px;
  text-align: center;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 25px;
  transition: color 0.3s ease;
}

.carousel-control:hover {
  color: #fef6d9;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}
