        /* Estilo do botão hambúrguer */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      margin-left: auto;
    }
    .menu-toggle .bar {
      display: block;
      width: 28px;
      height: 3px;
      margin: 5px 0;
      background: white;
      border-radius: 2px;
      transition: 0.3s;
    }
    .menu-toggle.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #fff;
      color: #333;
    }

    /* HEADER */
    header {
      background: #0c524c; /* verde petróleo */
      color: white;
      padding: 8px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }
        .menu-toggle {
          display: none;
        }
 
  @media (max-width: 900px) {
    header {
      display: none;
    }
  }

    /* menu principal */
header, nav {
  position: relative;
  z-index: 1000; /* fica acima do hero */
}

    header .left span {
      margin-right: 20px;
    }

    header .right a {
      color: white;
      margin-left: 15px;
      text-decoration: none;
      font-size: 16px;
    }

    /* NAVBAR */
    nav {
      background: #0c524c;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
    }

    nav .logo {
      display: flex;
      align-items: center;
    }

    nav .logo img {
      height: 50px;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
    }

  /* Corrige menu responsivo */
  @media (max-width: 900px) {
    nav {
      flex-direction: row;
      padding: 15px 20px;
      justify-content: space-between;
      align-items: center;
    }
    .menu-toggle {
      display: flex;
      color: white;
      font-size: 2rem;
      margin-left: auto;
    }
    nav ul {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #0c524c;
      flex-direction: column;
      align-items: flex-start;
      display: none;
      z-index: 999;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    nav ul.open {
      display: flex;
    }
    nav ul li {
      margin: 15px 0 15px 20px;
    }
    nav ul li ul {
      position: static;
      background: none;
      padding: 0;
    }
    nav .logo {
      flex: 1;
    }
    nav ul {
      flex: none;
    }
  }

      .menu-toggle {
        display: flex;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        margin-left: 20px;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
      }

    nav ul li {
      margin-left: 25px;
      position: relative;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
    }

    nav ul li:hover ul {
      display: block;
    }

    nav ul li ul {
      display: none;
      position: absolute;
      top: 25px;
      left: 0;
      background: #0c524c;
      list-style: none;
      padding: 10px;
    }

    nav ul li ul li {
      margin: 10px 0;
    }

    nav ul li ul li a {
      color: #fff;
    }

    /* HERO */
    .hero {
      position: relative;

      /* Banner desktop por padrão */
      .desktop-banner {
        display: block;
      }
      .mobile-banner {
        display: none;
      }
  }

  @media (max-width: 900px) {
    .hero .desktop-banner {
      display: none;
    }
    .hero .mobile-banner {
      display: block;
    }
     .hero-content{
        display: none;
    }
  }
      

  @media (max-width: 900px) {
    nav {
      flex-direction: row;
      padding: 15px 20px;
      justify-content: space-between;
      align-items: center;
    }
    .hero-content{
        display: none;
    }
    .menu-toggle {
      display: flex !important;
      color: white;
      font-size: 2rem;
      margin-left: auto;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      height: 40px;
      width: 40px;
      cursor: pointer;
    }
    nav ul {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #0c524c;
      flex-direction: column;
      align-items: flex-start;
      display: none;
      z-index: 999;
    }
    nav ul.open {
      display: flex;
    }
    nav ul li {
      margin: 15px 0 15px 20px;
    }
    nav ul li ul {
      position: static;
      background: none;
      padding: 0;
    }
    /* Só mostra logo e botão no nav */
    nav .logo {
      flex: 1;
    }
    nav ul {
      flex: none;
    }
  }

    .hero h1 {
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 20px;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
    }

    .search-box {
      display: flex;
      background: white;
      border-radius: 5px;
      overflow: hidden;
      max-width: 700px;
      width: 100%;
    }

    .search-box select, .search-box input {
      padding: 12px;
      border: none;
      outline: none;
      font-size: 14px;
      flex: 1;
    }

    .search-box button {
      background: #0c524c;
      color: white;
      border: none;
      padding: 12px 20px;
      cursor: pointer;
    }

    /* BOTÃO FIXO WHATSAPP */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: white;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      z-index: 999;
    }

    .whatsapp-float:hover {
      background: #1ebe5b;
    }
    /* HERO */
    .hero {
      position: relative;
      height: 70vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      overflow: hidden;
    }

    /* SLIDES */
    .hero-slider {
      position: absolute;
      top: 0; 
      left: 0;
      width: 100%;
      height: 100%;
    }

    .hero-slider .slide {
        position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;  /* mostra a imagem inteira */
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
    }

    .hero-slider .slide.active {
      opacity: 1;
    }

    /* CONTEÚDO */
    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 20px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
    }

    /* Caixa de busca */
    .search-box {
      display: flex;
      background: white;
      border-radius: 5px;
      overflow: hidden;
      max-width: 700px;
      width: 100%;
    }

    .search-box select,
    .search-box input {
      padding: 12px;
      border: none;
      outline: none;
      font-size: 14px;
      flex: 1;
    }

    .search-box button {
      background: #0c524c;
      color: white;
      border: none;
      padding: 12px 20px;
      cursor: pointer;
    }
    body {
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      margin: 0;
      padding: 0;
    }

    .section {
      margin: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 15px;
    }

    .section-title {
      background: #00695c;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      padding: 10px;
      border-radius: 6px 6px 0 0;
      margin-bottom: 15px;
    }

    .carousel {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 10px;
    }

    .card {
      width: 320px;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      flex-shrink: 0;
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-body {
      padding: 12px;
    }

    .card-body h3 {
      font-size: 16px;
      margin: 0 0 5px;
      color: #333;
    }

    .location {
      font-size: 14px;
      color: #444;
      margin-bottom: 8px;
    }

    .icons {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      margin: 8px 0;
    }

    .icons i {
      margin-right: 4px;
      color: #00695c;
    }

    .price {
      font-weight: bold;
      color: #00695c;
      margin-top: 8px;
    }

    .buscas-populares {
  background: #f5f5f5;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.buscas-populares h2 {
  background: #006666;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 15px;
  border-left: 6px solid goldenrod;
  font-size: 20px;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-grid li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
}

.links-grid li span {
  background: #eee;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 13px;
  color: #444;
  margin-left: 6px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.cta-box {
  background: #006666;
  color: #fff;
  padding: 20px;
  text-align: left;
  border-bottom: 4px solid goldenrod;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-box i {
  font-size: 30px;
  color: goldenrod;
}

.newsletter {
  background: linear-gradient(to bottom, #fff, #f0f0f0);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.08);
  margin: 20px auto;
  max-width: 1000px;
}

.newsletter-box {
  text-align: center;
  width: 100%;
}

.newsletter-box h2 {
  color: #006666;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: #444;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group input {
  padding: 10px 35px 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  min-width: 250px;
}

.input-group .icon {
  position: absolute;
  right: 10px;
  color: #666;
}

.btn-cadastrar {
  background: #006666;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.btn-cadastrar:hover {
  background: #004d4d;
}

.politica {
  font-size: 13px;
  margin-top: 15px;
  color: #444;
}

.politica a {
  color: #006666;
  text-decoration: underline;
}

footer {
    background-color: #004B46; /* cor similar ao da imagem */
    color: #ffffff;
    padding: 40px 20px;
    font-size: 14px;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }

  .footer-column {
    flex: 1 1 200px;
    min-width: 200px;
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #00A79D;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
  }

  .footer-column ul li a:hover {
    text-decoration: underline;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    color: #cccccc;
  }

  .footer-column ul li svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
  }

  .btnSaibaMais{
    display: inline-block;
    background-color: #00695c;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s;
  }


/*INICIO CONFIGURAÇÃO POPUP*/
.popup-container {
    /* Esconde o pop-up por padrão */
    display: none;
    
    /* Configura o pop-up para ficar em cima de todo o conteúdo */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Cria um fundo semi-transparente */
    background-color: rgba(0, 0, 0, 0.5);
    
    /* Centraliza o conteúdo vertical e horizontalmente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-content h2 {
    color: #333;
    margin-top: 0;
}

.popup-content p {
    color: #666;
    line-height: 1.6;
}

.popup-content button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.popup-content button:hover {
    background-color: #0056b3;
}
/*FIM CONFIGURAÇÃO POPUP*/