@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --celeste: #658dc9;
    --gris: #e1e1e1;
    --gris-oscuro: #555554;
  }

*{
    font-family: "Montserrat", sans-serif;
}
.hero-section {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    position: relative;
    background-image: url('../../img/fondo.jpg'); /* corregido */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    height: 500px;
    max-width: auto;
  }

  .small{
    font-size: 0.8em !important
  }
  .hero-background > .text-white {
    max-width: 440px;
  }

  .hero-section {
    text-align: left;
  }
  
  /* Estilo general del ícono en círculo */
  .icon-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--celeste); 
    color: white;
    font-size: 14px;
  }
  
  
  /* Ícono para TURNO ONLIN */
  .icon-blue {
    background-color: var(--celeste); 
    color: white;
    
  }
  
  /* Ícono para TURNO WHATSAPP) */
  .icon-green {
    background-color: #25D366; /* verde whatsapp */
    color: white;
  }
  .bi-chevron-right{
    width: 30px !important;
    height: 20px !important;
  }
  /* TURNO ONLINE: fondo blanco, texto azul, hover al revés */
  .btn-turno-online {
    background-color: white;
    color: #0d6efd;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-turno-online:hover {
    background-color: #0d6efd;
    color: white;
  }
  
  .btn-turno-online:hover .icon-blue {
    background-color: white;
    color: #0d6efd;
  }
  
  /* TURNO WHATSAPP: fondo blanco, texto negro */
  .btn-turno-wpp {
    background-color: white;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-turno-wpp:hover {
    background-color: #25D366;
    color: white;
  }
  
  .btn-turno-wpp:hover .icon-green {
    background-color: white;
    color: #25D366;
  }
  .nav-item{
    font-size: 0.8rem !important;
  }
  
  @media (max-width: 991px) {
    .hero-section {
      background-image: url('../../img/fondo-tablet.jpg');
      background-position: center;
    }
  }
  
  /* Celular (hasta 575px) */
  @media (max-width: 575px) {
    .hero-section {
      background-image: url('../../img/fondo-mobile.jpg');
      background-position: center;
    }
  }
  
  .bg-primary{
    background-color: var(--celeste) !important;
  }

  .bg-grey{
    background-color: var(--gris);
  }

  .carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0); /* Vuelve el ícono negro */
  width: 2.5rem; /* Más ancho */
  height: 2.5rem; /* Más alto */
}


.fs-7{
    font-size: 0.8rem;
}

.fw-300{
    font-weight: 300;
}

.carousel-img {
    width: 400px;
    height: auto;
    object-fit: cover;
  }

  .dark-grey{
    color: var(--gris-oscuro);
  }

  .pt-7{
    padding-top: 8rem;
  }

  .fs-8{
    font-size: 0.625rem;
    color: #777777 !important;
  }
