@font-face {
  font-family: 'TrashHand';
  src: url('../fonts/TrashHand.TTF') format("truetype");
  font-weight: normal;
  font-style: normal;
}

.overlay-text h1 {
  font-family: "Trashhand", sans-serif;
  font-size: 3rem;
  font-weight: normal;
}

main {
  background-image: url('../img/foto-home.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0;
  color: white;
  width: 100%;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

main>* {
  position: relative;
  z-index: 2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  font-size: 16px;
}

.top-60 {
  padding-top: 60px;
}

.bottom-60 {
  padding-bottom: 60px;
}


/* INÍCIO HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
}

header img {
  width: 200px;
  height: 100px;
}

header>.interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

header nav.menu-desktop a:hover {
  color: #007BFF !important;
  transform: scale(1.05);
}

header nav ul {
  list-style-type: none;
}

header nav ul li a {
  font-size: 1.1rem;
  color: #000;
}

header nav.menu-desktop ul li {
  display: inline-block;
  padding: 0 40px;
}

.interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-desktop ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-desktop a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* ESTILO DO MENU MOBILE */
.btn-abrir-menu {
  display: none;
}

@media screen and (max-width: 1020px) {
  .btn-abrir-menu {
    display: block;
  }

  .menu-desktop {
    display: none;
  }
}

.btn-abrir-menu i {
  color: #000;
  font-size: 40px;
  padding-right: 20px;
}

.menu-mobile {
  background-color: #000;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 0%;
  overflow: hidden;
  transition: .5s;
}

.menu-mobile.abrir-menu {
  width: 70%;
}

.menu-mobile.abrir-menu~.overlay-menu {
  display: block;
}

.menu-mobile .btn-fechar {
  padding: 20px 5%;
}

.menu-mobile .btn-fechar i {
  color: #fff;
  font-size: 30px;
}

.menu-mobile nav ul {
  text-align: right;
}

.menu-mobile nav ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  padding: 20px 8%;
  display: block;
}

.menu-mobile nav ul li a:hover {
  background-color: #007BFF;
  color: #fff;
}

.overlay-menu {
  background-color: #000000df;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  display: none;
}

/* FIM HEADER */


/* INICIO SECTION CARROSSEL */
.section-inicio {
  height: 100vh;
  position: relative;
  overflow-x: hidden;

  & .list {
    width: 70vw;
    height: 100%;
    margin: auto;
    position: relative;

    & .item {
      position: absolute;
      inset: 0;

      & .car-img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 90%;

        & img {
          width: 100%;
          transform: rotate(-10deg);
        }

        &::before {
          content: '';
          position: absolute;
          background-color: #000;
          width: 100%;
          height: 100px;
          top: 100%;
          left: 50px;
          border: 50%;
          filter: blur(50px);
        }
      }

      & .content {
        position: absolute;
        right: 100px;
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: end;
        gap: 20px;

        & .car-information {
          font-weight: bold;
        }

        & h2 {
          font-size: 8em;
          line-height: 1em;
          font-family: "League Gothic", sans-serif;
          color: #fff;
          margin-top: 130px;
        }

        & .description {
          color: #d9d9d9;
          font-size: 12px;
          text-align: right;
          max-width: 400px;
        }

        & .information {
          border-radius: 30px;
          height: 35px;
          width: 120px;
          text-transform: uppercase;
          border: 2px solid #007BFF;
          background-color: #007BFF;
          color: #000;
          cursor: pointer;
          font-weight: bold;
          font-family: "League Gothic", sans-serif;
          z-index: 2;
        }
      }
    }

    /* &::before {
          content: '';
          position: absolute;
          height: 200px;
          width: 100%;
          top: 50%;
          border-top: 1px solid #fff;
      } */
  }

  .arrows {
    width: 70vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25px);
    display: flex;
    justify-content: space-between;
    z-index: 999;

    & button:nth-child(1) {
      & img {
        transform: scale(-1);
      }
    }

    & button {
      top: 60%;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      z-index: 4;

      & img {
        width: 30px;
        margin-top: 4px;
        cursor: pointer;
      }

      &:hover {
        background-color: #007BFF;
      }
    }
  }

  .indicators {
    position: absolute;
    top: 60%;
    margin-left: 50px;
    transform: translateX(-50%);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 15px;
    z-index: 1;
    overflow-x: hidden;

    & .number {
      margin-left: 60px;
      margin-bottom: -30px;
      font-size: 5em;
      font-family: "League Gothic", sans-serif;
    }

    & ul {
      display: flex;
      gap: 10px;

      & li {
        width: 50px;
        height: 5px;
        background-color: #007BFF;
        border-radius: 5px;
        transition: 0.5s;
      }

      & .active {
        background-color: #fff;
      }
    }
  }
}

.section-inicio {
  & .list {
    --calculation: 1;

    & .item {
      transform: translateX(calc(100vw * var(--calculation)));
      transition: 0.5s;
      opacity: 0;

      & .car-img {
        & img {
          transform: rotate(0);
          transition: 0.5s;
          transition-delay: 0.3s;
        }
      }

      & .content {

        & .car-information,
        h2,
        .description,
        .information {
          transform: translateX(calc(200px * var(--calculation)));
          transition: 0.7s;
          transition-delay: 0.3s;
          opacity: 0;
        }

        & h2 {
          transition-delay: 0.5s;
        }

        & .description {
          transition-delay: 0.7s;
        }

        & .information {
          transition-delay: 0.9s;
        }

      }
    }

    & .active {
      transform: translateX(0);
      transition: 0.5s;
      opacity: 1;

      & .car-img {
        & img {
          transform: rotate(-4deg);
        }
      }

      & .content {

        & .car-information,
        h2,
        .description,
        .information {
          transform: translateX(50px);
          opacity: 1;
        }
      }
    }
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px !important;
  }
}

@media (max-width: 768px) {
  .section-inicio {
    width: 100%;
  }

  .section-inicio .list .item .car-img {
    width: 120%;
  }

  .section-inicio .list .item .content .car-information {
    margin-bottom: 10px;
  }

  .section-inicio .list .item .content h2 {
    font-size: 3em;
    margin-top: 80px;
  }

  .section-inicio .list .item .content .description {
    font-size: 12px;
  }

  .section-inicio .list .item .content .information {
    width: 90px;
    height: 30px;
  }

  .section-inicio .arrows button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  header img {
    width: 150px;
  }

  section .list .item .car-img {
    width: 100%;
  }

  section .list .item .content h2 {
    font-size: 2.5em;
  }

  section .list .item .content .description {
    font-size: 10px;
  }

  section .list .item .content .information {
    width: 80px;
    height: 20px;
  }
}

@media (max-width: 425px) {
  .section-inicio .list .item .content .car-information {
    margin-bottom: -150px;
    margin-right: -20px;
  }

  .section-inicio .list .item .content h2 {
    margin-top: 180px;
  }

  .section-inicio .arrows button {
    width: 40px;
    height: 40px;
  }

  .section-inicio .arrows button img {
    width: 20px;
    margin-top: 2px;
    cursor: pointer;
  }

  .section-inicio .indicators {
    top: 45%;
    margin-left: 50px;
    font-size: 0.8em;

  }

  .section-inicio .indicators .number {
    margin-left: 55px;
  }

  .section-inicio .indicators ul li {
    height: 5px;
    width: 40px;
  }

}

/* FIM SECTION CARROSSEL */


/* INICIO SECTION SOBRE */
.section-sobre {
  background-color: #fafafa;
  overflow-x: hidden;
}

.section-sobre p {
  font-size: 11pt;
  font-weight: 500;
  color: #000;
}

.section-sobre h2 {
  font-family: "Trashhand";
  font-size: 3rem;
  text-align: center;
  letter-spacing: -0.9pt;
  color: #000;
  /* padding-bottom: 70px;
  background-image: url(../imagens/detalhe2.svg); */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 55px;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .section-sobre h2 {
    padding-bottom: 50px;
    background-size: auto 35px;
    margin-bottom: 65px;
    font-size: 40pt;
  }
}

@media (max-width: 575px) {
  .section-sobre p {
    padding: 10px;
  }
}

@media (max-width: 558px) {
  .section-sobre h2 {
    padding-bottom: 40px;
    background-size: auto 25px;
    margin-bottom: 50px;
  }
}

/* FIM SECTION SOBRE */


/* INICIO SECTION VIDEO */
.video-canoa {
  position: relative;
  /* margin-left: -1px;
  margin-right: -1px; */
  width: 100%;
  height: 100vh;
}

.video-canoa video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-canoa::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  font-family: "Trashhand", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  width: 100%;
}

.va-a-vila {
  color: #aaaaaa;
  font-family: "Trashhand", sans-serif;
}

.overlay-text h1 {
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.9);
}

/* FIM SECTION VIDEO */


/* INICIO SECTION BENEFÍCIOS */
.beneficios {
  background-color: #fafafa;
}

.beneficios h2 {
  font-family: "Trashhand", sans-serif;
  font-size: 3rem;
  color: #000;
}

.beneficios h4 {
  color: #000;
}

.beneficios p {
  color: #000;
}

.icone-beneficios {
  margin-top: 3rem;
}

@media (max-width: 575px) {
  .icone-beneficios {
    margin-top: 2rem;
  }
}

/* FIM SECTION BENEFÍCIOS */


/* INICIO SECTION FAIXA */
.faixa-section {
  background-color: transparent;
  background-image: url(../img/fundo3.svg);
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  height: 70px;
  margin-left: -5px;
}

/* FIM SECTION FAIXA */


/* INICIO SECTION AGENDAMENTO */
.agendamento-section {
  background-color: #fafafa;
  padding: 50px;
}

.agendamento-section h2 {
  font-family: "Trashhand";
  font-size: 3rem;
  color: #000;
}

.card {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.card img.img-ajustada {
  width: 380px;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 500px) {
  .card img.img-ajustada {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* FIM SECTION AGENDAMENTO */

/* INICIO GALERIA DE FOTOS HOME */
.galeria-fotos-home {
  /* background-color: #63ba00 !important; */
    background: linear-gradient(
    to bottom,
    #003366 0%,
    #007BFF 100%
  ), url("https://www.transparenttextures.com/patterns/wavecut.png");
}

.galeria-fotos-home h2 {
  margin-top: 3rem;
  font-family: "Trashhand", sans-serif;
  font-size: 3rem;
  letter-spacing: -1pt;
  color: #fff;
  margin-bottom: 50px;
}

.galeria-fotos-home .flex-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: space-between;
  flex-wrap: wrap;
  padding: 0 5% 5% 5%;
}

.galeria-fotos-home .flex-container figure {
  margin: 0 1px 1px 0;
  position: relative;
  width: 250px;
  height: 250px;
  background: no-repeat center center;
  background-size: cover;
  transition: .3s background ease;
}

.galeria-fotos-home .flex-container figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galeria-fotos-home .flex-container figure figcaption {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  transition: .3s background ease;
}

.galeria-fotos-home .flex-container figure:hover figcaption {
  background: rgba(0, 0, 0, 0.3);
}

.galeria-fotos-home .flex-container figure figcaption .fig-title {
  font-weight: 700;
  text-align: center;
  font-size: 24pt;
  font-family: "Trashhand", "Trebuchet MS";
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  transition: .3s color ease, .3s text-shadow ease;
}

.galeria-fotos-home .flex-container figure:hover figcaption .fig-title {
  color: rgb(255, 255, 255);
  text-shadow: black 0.05em 0.05em 0.1em;
}

/* FIM DA GALERIA DE FOTOS */

/* INICIO GALERIA DE FOTOS AGENDAMENTO */
.galeria-fotos-agendamento {
  background-color: #f7f7f7 !important;
  background-image: url("https://www.transparenttextures.com/patterns/wavecut.png") !important;
}

.galeria-fotos-agendamento h2 {
  margin-top: 3rem;
  font-family: "Trashhand", sans-serif;
  font-size: 3rem;
  letter-spacing: -1pt;
  color: #000;
  margin-bottom: 50px;
}

.galeria-fotos-agendamento .flex-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: space-between;
  flex-wrap: wrap;
  padding: 0 5% 2% 5%;
}

.galeria-fotos-agendamento .flex-container figure {
  margin: 0 1px 1px 0;
  position: relative;
  width: 250px;
  height: 250px;
  background: no-repeat center center;
  background-size: cover;
  transition: .3s background ease;
}

.galeria-fotos-agendamento .flex-container figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.galeria-fotos-agendamento .flex-container figure figcaption {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  transition: .3s background ease;
}

.galeria-fotos-agendamento .flex-container figure:hover figcaption {
  background: rgba(0, 0, 0, 0.3);
}

.galeria-fotos-agendamento .flex-container figure figcaption .fig-title {
  font-weight: 700;
  text-align: center;
  font-size: 24pt;
  font-family: "Trashhand", "Trebuchet MS";
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  transition: .3s color ease, .3s text-shadow ease;
}

.galeria-fotos-agendamento .flex-container figure:hover figcaption .fig-title {
  color: rgb(255, 255, 255);
  text-shadow: black 0.05em 0.05em 0.1em;
}

.roteiro-lista {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  list-style-type: none;
}

.roteiro-lista>li {
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #25d366;
}

.roteiro-lista>li>strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #25d366;
}

.roteiro-lista ul {
  list-style-type: disc;
  padding-left: 25px;
  color: #333;
}

.roteiro-lista ul li {
  margin-bottom: 6px;
}

.roteiro-lista-media {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  list-style-type: none;
}

.roteiro-lista-media>li {
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #FFC107;
}

.roteiro-lista-media>li>strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #FFC107;
}

.roteiro-lista-media ul {
  list-style-type: disc;
  padding-left: 25px;
  color: #333;
}

.roteiro-lista-media ul li {
  margin-bottom: 6px;
}

.roteiro-lista-dificil {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  list-style-type: none;
}

.roteiro-lista-dificil>li {
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #FF0000;
}

.roteiro-lista-dificil>li>strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #FF0000;
}

.roteiro-lista-dificil ul {
  list-style-type: disc;
  padding-left: 25px;
  color: #333;
}

.roteiro-lista-dificil ul li {
  margin-bottom: 6px;
}

.contato-whatsapp {
  margin-top: 40px;
  padding: 20px;
  background-color: #f1faff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 119, 182, 0.1);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

.contato-whatsapp-media {
  margin-top: 40px;
  padding: 20px;
  background-color: #f1faff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 119, 182, 0.1);
}

.btn-whatsapp-media {
  display: inline-flex;
  align-items: center;
  background-color: #FFC107;
  color: #000;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-whatsapp-media:hover {
  background-color: #ffcb30;
}

.contato-whatsapp-dificil {
  margin-top: 40px;
  padding: 20px;
  background-color: #f1faff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 119, 182, 0.1);
}

.btn-whatsapp-dificil {
  display: inline-flex;
  align-items: center;
  background-color: #FF0000;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-whatsapp-dificil:hover {
  background-color: #fd3a3a;
}

/* FIM DA GALERIA DE FOTOS AGENDAMENTO */

/* INICIO PATROCINADORES */
.clients {
  background-color: #f7f7f7;
  padding: 20px 0;
}

.clients h2 {
  font-family: "Trashhand";
  font-size: 3rem;
  color: #000;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.7;
}

.clients .client-logo img:hover {
  filter: grayscale(100);
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/* FIM PATROCINADORES */

/* INICIO LOCALIZAÇÃO */
.localizacao {
  /* background-color: #63ba00 !important; */
  background:
    linear-gradient(to bottom, #007BFF 0%, #A7D7E7 100%),
    url("https://www.transparenttextures.com/patterns/wavecut.png");
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.localizacao h2 {
  font-family: "Trashhand", sans-serif;
  font-size: 3rem;
  color: #fff;
  align-items: center;
}

/* FIM LOCALIZAÇÃO */


/* INICIO FOOTER */
@media (max-width: 767px) {
  footer img {
    width: 200px;
    height: 100px;
  }
}

/* FIM FOOTER */

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.agendamento .col-xl-4,
.agendamento .col-md-6 {
  display: flex;
}

.agendamento .agendamento-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.agendamento .img {
  border-radius: 8px;
  overflow: hidden;
}

.agendamento .img img {
  transition: 0.6s;
}

.agendamento .details {
  background: color-mix(in srgb, #fff, transparent 90%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -1px;
}

.agendamento-facil {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: green;
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.agendamento-medio {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ffc107;
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.agendamento-dificil {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: red;
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 10;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.agendamento-item {
  position: relative;
}

.agendamento .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: red;
  color: blue;
  border: 6px solid violet;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.agendamento h2 {
  font-family: "Trashhand", sans-serif;
  font-size: 3rem;
  letter-spacing: -1pt;
  color: #000;
}

.agendamento .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.agendamento .agendamento-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.agendamento .agendamento-item:hover .details .icon i {
  color: var(--accent-color);
}

.agendamento .agendamento-item:hover .img img {
  transform: scale(1.2);
}