    	/* Estilos específicos para dispositivos móveis */
		@media only screen and (max-width: 768px) {

		    .mobile {
		        padding-left: 20%;
		        padding-right: 20%;
		    }

		    .mobile-photo {
		        height: 300px;
		    }

		}

  .slide-items img {
  max-width: 100%;
  display: block;
}

.slide {
  max-width: 380px;
  margin: 20px auto;
  display: grid;
  box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.4);
}

.slide-items {
  position: relative;
  grid-area: 1/1;
  border-radius: 5px;
  overflow: hidden;
}

.slide-nav {
  grid-area: 1/1;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
}

.slide-nav button {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
}

.slide-items > * {
  position: absolute;
  top: 0px;
  opacity: 0;
  pointer-events: none;
}

.slide-items > .active {
  position: relative;
  opacity: 1;
  pointer-events: initial;
}

.slide-thumb {
  display: flex;
  grid-column: 1 / 3;
}

.slide-thumb > span {
  flex: 1;
  display: block;
  height: 3px;
  background: grey;
  margin: 5px;
  border-radius: 3px;
  overflow: hidden;
}

.slide-thumb > span.active::after {
  content: '';
  display: block;
  height: inherit;
  background: red;
  border-radius: 3px;
  transform: translateX(-100%);
  animation: thumb 5s forwards linear;


}

@keyframes thumb {
  to {
    transform: initial;
  }
}

.slide-item video {
    width: 100%;
    height: 100%; /* Garante que o vídeo mantenha sua proporção */

    object-fit: cover; /* Redimensiona o vídeo para cobrir todo o contêiner mantendo sua proporção */
    object-position: center; /* Centraliza o vídeo horizontalmente e verticalmente */
}

.slide-item img {
    width: 100%;
    height: 100%; /* Garante que o vídeo mantenha sua proporção */

    object-fit: cover; /* Redimensiona o vídeo para cobrir todo o contêiner mantendo sua proporção */
    object-position: center; /* Centraliza o vídeo horizontalmente e verticalmente */
}

.carousel-item{
  padding: 5px;
  width: 200px;
  display: inline-block;
}

        /* Estilos personalizados para o slider */
        .swiper {
            width: 100%;
            height: 140px;
            display: none; /* Esconder por padrão */
        }
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Para as imagens ocuparem todo o slide */

            padding: 10px;
            border-radius: 20px;
        }

        .swiper-pagination-bullet {
            background-color: pink; /* Cor rosa para as bolinhas inativas */
        }

        .swiper-pagination-bullet-active {
            background-color: deeppink; /* Cor rosa mais forte para a bolinha ativa */
        }

        /* Apenas mostrar o slider em telas menores (mobile) */
        @media only screen and (max-width: 768px) {
            .swiper {
                display: block;
            }

            .desktop {
                display: none;
            }
        }



    .card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
      border: 1px solid #ddd;
    }

    .carousel {
      position: relative;
      height: 220px;
    }

    .carousel img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 14px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }

    .arrow.left {
      left: 10px;
    }

    .arrow.right {
      right: 10px;
    }

    .dots {
      position: absolute;
      bottom: 10px;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 5px;
    }

    .dot {
      width: 6px;
      height: 6px;
      background: #ccc;
      border-radius: 50%;
    }

    .dot.active {
      background: #e55353;
    }

    .perfil-premium {
      background: #000;
      color: #FFF;
      display: block;
    }

    .card-body {
      padding: 16px;
      padding-bottom: 0;
    }

    .card-body h2 {
      font-size: 16px;
      font-weight: bold;
      margin: 0;
    }

    .perfil-premium .card-body h2 {
      color: #FFF;
    }

    .status {
      font-size: 12px;
      color: #999;
      margin-top: 4px;
    }

    .tagline {
      color: #e55353;
      font-size: 13px;
      margin-top: 8px;
      font-weight: 500;
    }

    .perfil-premium .tagline {
      color:#cc7c7c;
    }

    .card-body:has(.botao-status_localizacao) {
      position: relative;
      padding-right: 160px;
    }
    .card-body .botao-status_localizacao {
        position: absolute;
        top:15px;
        right:15px;
        text-align: center;
        z-index: 100;
    }
    .card-body .botao-status_localizacao span {
        padding: 7px 12px;
        border-radius: 50px;
        background: #e6637a;
        line-height: 1;
        font-size: 13px;
        color: #FFF;
        vertical-align: top;
        display: inline-block;
    }

    .services {
      font-size: 13px;
      color: #666;
      margin-top: 6px;
      margin-bottom: 12px;
    }

    .divider-section {
      display: flex;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
    }

    .left-box {
      width: 50%;
      border-right: 1px solid #eee;
      padding: 16px;
      font-size: 13px;
    }

    .price-line {
      font-size: 14px;
      font-weight: bold;
      color: #000;
      margin-bottom: 10px;
    }

    .perfil-premium .price-line {
      color: #FFF;
    }

    .rating {
      color: #333;
      margin-bottom: 10px;
    }

    .rating i {
      color: #f5a623;
      margin-right: 5px;
    }

    .info-item {
      margin-bottom: 8px;
      color: #555;
      display: flex;
      align-items: center;
    }

    .perfil-premium .info-item { 
      color: #FFF;
     }

    .info-item i {
      margin-right: 6px;
      color: #999;
      width: 16px;
      text-align: center;
    }

    .right-box {
      width: 50%;
      padding: 16px;
      font-size: 13px;
      color: #444;
      line-height: 1.5;
    }

    .perfil-premium .right-box {
      color: #FFF;
    }

    .btn-phone {
      width: 100%;
      padding: 14px;
      background-color: #e55353;
      color: #fff;
      border: none;
      font-size: 16px;
      font-weight: bold;
      border-radius: 0 0 16px 16px;
      cursor: pointer;
    }

    .btn-phone i {
      margin-right: 8px;
    }

    .btn-phone:hover {
      background-color: #c44040;
    }


    .stories-container {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding: 10px;
      background-color: #f8f9fa;
      border-radius: 12px;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE e Edge */
    }
    .stories-container::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    .story {
      flex: 0 0 auto;
      width: 70px;
      height: 70px;
      border: 2px solid #c94e92;
      border-radius: 50%;
      background-color: #fff;
      background-size: cover;
      background-position: center;
      position: relative;
      transition: 0.3s;
    }
    .story:hover {
      border-color: #6610f2;
      transform: scale(1.05);
    }
