/* ================= MOBILE STYLES ================= */
@media (max-width: 768px) {
    .burger-menu {
  z-index: 2000;
}

  .hero-title {
    font-size: 2rem;
    padding: 0 15px;
    margin-top: -120px !important;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
.subtitle {
  text-align: center;
  font-family: 'Cinzel', serif;
  
  margin: 20px auto;
  max-width: 80%; /* ou 80% para mais margem */
}

.highlights {
  position: relative;   /* 🔥 anula o absolute */
  bottom: auto;         /* remove o "empurrar" fixo */
  margin-top: 20px;     /* dá espaço abaixo do texto */
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center; /* centraliza */
}


  .circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .highlight-text {
    font-size: 0.75rem;
  }

  .features-grid,
  .grid-gallery {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .hover-img-container .img-hover {
    position: relative;
    opacity: 0;
  }

  .hover-img-container.active .img-hover {
    opacity: 1;
    position: relative;
  }

  .hover-img-container.active .img-default {
    opacity: 0;
  }
}

  .container {
    padding: 0 20px;
  }
/* Estilo geral do popup */
.form-popup {
  top: 60%; /**/
  padding: 30px;
  z-index: 9999;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.form-popup.active {
  display: block;
}
label {
  display: none;
}

.visivel-radio {
  display: inline-block; /* ou block conforme o layout */
  color: white; /* ou a cor que usares no tema */
  margin-bottom: 5px;
}


/* Header do popup */
.form-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #ffaa33;
  text-align: center;
  text-shadow: 0 0 5px #ff8c00, 0 0 10px #ffaa00;
  margin-bottom: 20px;
}
  .form-popup {
    top: 50%;
    width: 95%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  

  .namelast {
    flex-direction: column;
    
  }

  .phone-group,
  #contactForm .phone-group {
    flex-direction: column;
    
  }

  .sticky-contact-button {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .gallery-card img {
    width: 100%;
    height: auto;
  }

  .feature-card {
    padding: 20px;
  }

 
  .cta-button {
    font-size: 14px;
    padding: 12px;
  }

  .map-image {
    transform: scale(1.5) translate(-10%, 2%);
    object-position: center;
  }
  .footer{
    margin-top: 20px;
    padding-bottom: 10px;
  }
