@import url(/assets/css/variaveis.css);

.carousel-section {
    margin-top: -100px !important;
    width: 87%;
    margin: auto;
    padding: 3vh 0vh;
  }
  
  .box-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(72, 78, 85, 0.6);
    box-shadow: 0 1px 1px rgba(72, 78, 85, 0.6);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  .card-title {
    color: var(--color01);
    font-size: 1.4rem;
    font-weight: bold;
  }

  .card-body2 {
    background-color: var(--color05);
    overflow: hidden;
    margin: auto;
    margin-top: 5px;
    border-radius: 0px 0px 30px 30px
  }

  .card-img-top {
    margin: 0 !important;
  }
  
  .box-shadow:hover {
    -webkit-box-shadow: 0 5px 40px rgba(72, 78, 85, 0.6);
    box-shadow: 0 5px 40px rgba(72, 78, 85, 0.6);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  
  .card {
    border-radius: 25px;
    width: 18rem;
    margin: auto;
    border: 1px solid rgb(117, 117, 117);
  }
  
  .card a {
    color: var(--color01) !important;
  }
  
  .card img {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
  }
  
  .card svg {
    position: absolute;
    top: 19rem;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    filter: drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.2));
  }
  
  .card:hover svg {
    filter: drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.4));
  }
  
  .pins {
    position: absolute;
    top: 20rem;
    align-items: end;
    justify-content: end;
    display: flex;
    flex-wrap: nowrap;
    width: 95%;
  }
  
  .pin {
    margin-left: 0.3rem;
    border-radius: 100%;
    transition: all 0.6s ease-in-out;
    color: white;
    background-color: var(--color02);
  }
  
  .i-fire {
    font-size: 1.3rem;
    padding: 0.6rem 0.7rem;
    background-color: rgb(255, 111, 0);
  }
  
  .i-test {
    font-size: 1.3rem;
    padding: 0.5rem 0.75rem;
  }
  
  .i-reserva {
    font-size: 1.5rem;
    padding: 0.5rem;
    background-color: var(--color01);
  }
  
  .i-close {
    font-size: 1.2rem;
    padding: 0.6rem 0.7rem;
    background-color: rgb(220, 20, 20);
  }
  
  .i-open {
    font-size: 1.1rem;
    padding: 0.6rem;
    background-color: var(--color07);
  }
  
  .card:hover i {
    transform: rotate(-10deg);
  }
  
  @media screen and (max-width: 321px) {
    .card {
      width: 14rem;
      margin: auto;
    }
  
    .carousel-section {
      margin: 0;
    }
  }
  
  @media screen and (max-width: 426px) {
    .carousel-section {
      width: 100%;
    }
  
    .card {
      margin: auto;
    }
  }
  
  @media screen and (max-width: 1025px) {
    .carousel-section {
      width: 100% !important;
      padding: 0 !important;
      margin: auto !important;
    }
  
    .card {
      margin: auto;
    }
  
    .card .slick-slide {
      margin: 0;
    }
  }