/* Reset e Estilos Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-color: #d4af37;
  --secondary-color: #1a1a1a;
  --light-color: #f8f8f8;
  --dark-color: #333;
  --gray-color: #777;
}

body {
  background-color: #fff;
  color: var(--dark-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: var(--secondary-color);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

/* Botão CTAs */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background-color: #d4af37; /* Dourado */
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button:hover i {
  transform: translateX(5px);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #d4af37, #f1c40f);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cta-button:hover::after {
  opacity: 1;
}

/* CTA Flutuante */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
  font-size: 1rem;
  padding: 15px 25px;
}

/* CTA Principal */
.main-cta {
  font-size: 1.2rem;
  padding: 20px 40px;
  margin-top: 20px;
}

.cta-container {
  text-align: center;
  margin-top: 30px;
}

.cta-subtext {
  margin-top: 15px;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-subtext i {
  color: #2ecc71;
}

/* Animações */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .main-cta {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 14px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-small {
  background-color: #d4af37;
  color: white;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.85rem;
  display: inline-block;
  text-transform: none;
}

.btn:hover {
  background-color: #c19b2e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
}

/* Estilos para o header com logo e imagem */
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  line-height: 1.2;
}

.logo span {
  color: var(--primary-color);
  display: block;
  font-size: 1.2rem;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
  .logo-img {
    width: 50px;
    height: 50px;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .logo span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-container {
    gap: 10px;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .logo h1 {
    font-size: 1.1rem;
  }

  .logo span {
    font-size: 0.9rem;
  }
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-mobile {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

form[method="dialog"] {
  /* Remove qualquer estilo padrão que possa interferir */
  margin: 0;
  padding: 0;
  border: none;
}

.error-message {
  color: #ff4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message:not(:empty) {
  display: block;
}

input:invalid:not(:empty),
select.option:invalid:not(:empty) {
  border-color: #ff4444;
}

input:valid:not(:empty),
select:valid:not(:empty) {
  border-color: #00c851;
}

/* Responsividade */
@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }

  .hero h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
  }

  .menu-mobile {
    display: block;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }

  .hero {
    height: 80vh;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  #booking-form {
    padding: 30px 20px;
  }

  /* Botão flutuante do WhatsApp */
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    text-decoration: none;
  }
  

  .whatsapp-float i {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
  }

  .whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 26px;
      bottom: 20px;
      right: 20px;
    }
  }

  /* Efeito de pulsação opcional */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

  .whatsapp-float.pulse {
    animation: pulse 2s infinite;
  }
  /* Versão para mobile */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 26px;
      bottom: 20px;
      right: 20px;
    }
  }
}
