@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
  background-color: rgb(161, 97, 113);
}
.navbar {
    background-color: rgb(158,39,69);
}
.hero-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 56px); /* Ajusta esto si tu navbar tiene una altura diferente */
    overflow: hidden;
  }
  
  .hero {
    background-color: #f8f9fa; /* Puedes cambiar esto por el color que prefieras */
  }
  
  .hero img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
  }
  
  .fade-in {
    animation: fadeIn 2s;
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @media (max-width: 768px) {
    .hero img {
      max-height: 60vh;
    }
  }
.card {
    transition: transform 0.3s ease-in-out;
}
.card:hover {
    transform: scale(1.05);
}
.fade-in {
    animation: fadeIn 1s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/*  hero carrusel */
#heroCarousel {
    height: calc(100vh - 56px); /* Ajusta esto si tu navbar tiene una altura diferente */
  }
  
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item {
    height: 100%;
  }
  
  #heroCarousel .carousel-item img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    #heroCarousel {
      height: calc(100vh - 56px);
    }
  }

/*   icono whatsapp*/

  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }

  .whatsapp-float:hover {
    text-decoration: none;
    color: #25d366;
    background-color: #fff;
  }

  .fa-whatsapp {
    margin-top: 16px;
  }


  /*  notice */

  .news-card {
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
.news-card:hover {
    transform: translateY(-10px);
}
.news-image {
    transition: transform 0.3s ease-in-out;
}
.news-card:hover .news-image {
    transform: scale(1.1);
}
.news-text {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}
.news-card:hover .news-text {
    transform: translateY(0);
}

/* botones primarios*/


.btn-custom {
  background-color: transparent;
  color: rgb(158,39,69);
  border: 2px solid rgb(158,39,69);
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: rgb(158,39,69);
  color: white;
}

/* sucursales */

.sucursal-img {
  transition: transform 0.3s ease-in-out;
}
.sucursal-img:hover {
  transform: scale(1.05);
}
.animated-text {
  animation: fadeIn 2s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* boto claro*/

.boton {
  background-color: #ffffff;
  color: rgb(158,39,69);
  border: 2px solid #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.boton:hover {
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
}


/* actividades sin intercalar 

.activity-img {
  transition: transform 0.3s ease-in-out;
}
.activity-img:hover {
  transform: scale(1.05);
}
.animated-text {
  animation: fadeInUp 1.5s;
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
  }
  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}*/

/* actividades intercaladas*/

.activity-img {
  transition: transform 0.3s ease-in-out;
}
.activity-img:hover {
  transform: scale(1.05);
}
.animated-text {
  animation: fadeInUp 1.5s;
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
  }
  to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
  }
}

/* equipo*/

.news-img {
  transition: transform 0.3s ease-in-out;
}
.news-img:hover {
  transform: scale(1.05);
}
.animated-text {
  animation: fadeInUp 1.5s;
}
.sidebar-button {
  margin-bottom: 10px;
  width: 100%;
}
.main-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}