/* importa Kiwi Fruit */
@font-face {
  font-family: 'Kiwi Fruit';
  src: url('../fonts/kiwi-fruit.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* importa Conthrax SemiBold */
@font-face {
  font-family: 'Conthrax';
  src: url('../fonts/Conthrax-SemiBold.woff2') format('woff2'),
       url('../fonts/Conthrax-SemiBold.woff')  format('woff');
  font-weight: 600;
  font-style: normal;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* fontes principais */
body {
  font-family: 'Roboto Mono', monospace;
  color: #222;
  line-height: 1.6;
}

/* container geral */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* HEADER */
.site-header {
  background: #000;
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
}
.site-header .logo img {
  height: 50px;
}
.main-nav {
  margin-left: auto;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  padding: .5rem 1rem;
  background: #252524;
  color: #f9bf1f;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s;
}
.main-nav a:hover { background: #333; }
.main-nav ul li:last-child a {
  background: #f9bf1f;
  color: #252524;
}
.main-nav ul li:last-child a:hover { background: #d1a31a; }

/* DIVISORES */
.divider {
  width: 100%; height: 4px;
  background: linear-gradient(90deg,#000 0%,#444 25%,#888 50%,#444 75%,#000 100%);
}
.gold-divider {
  width: 100%; height: 4px;
  background: linear-gradient(90deg,rgba(249,191,31,0.2) 0%,rgba(249,191,31,1) 50%,rgba(249,191,31,0.2) 100%);
  box-shadow: 0 0 16px rgba(249,191,31,0.8);
}

/* HERO */
.hero {
  padding: 2rem 0;
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.hero-text { flex:1; }
.hero-text .slogan {
  font-family: 'Kiwi Fruit', sans-serif;
  font-size: 9rem;
  line-height: 1;
  margin-bottom: .5rem;
}
.hero-text .subtitle {
  font-size: 2rem;
  color: #555;
}

/* CARROSSEL */
.hero-carousel {
  flex:1;
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 8px;
}
.hero-carousel .slides img {
  position: absolute;
  width:100%; height:100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}
.hero-carousel .slides img.active {
  opacity:1;
}

/* QUOTE */
.quote-section {
  background: #000;
  padding: 2rem 0;
}
.quote-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}
.quote-field {
  flex:1 1 200px;
  display:flex;
  flex-direction:column;
}
.quote-field label {
  color:#f9bf1f;
  margin-bottom:.5rem;
  font-weight:600;
}
.quote-field input {
  padding:.75rem 1rem;
  border:1px solid #444;
  border-radius:4px;
  background:#111;
  color:#fff;
}
.quote-field input::placeholder {
  color:#777;
}
.btn-quote {
  padding:.75rem 1.5rem;
  background:#f9bf1f;
  color:#252524;
  border:none;
  text-decoration: none;
  border-radius:8px;
  font-weight:700;
  cursor:pointer;
  transition: background .2s;
}
.btn-quote:hover {
  background:#e0a119;
}

/* BENEFITS */
.benefits {
  background: #f9bf1f;
  padding: 3rem 0;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: stretch; /* Garante que todos os cards tenham a mesma altura */
}

.card {
  display: flex;
  flex: 1 1 30%;
  background-image: url('../images/card-bg.png');
  background-size: cover;          /* Redimensiona para cobrir toda a área */
  background-repeat: no-repeat;    /* Evita repetição */
  background-position: center;     /* Centraliza a imagem */
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 350px; /* Força uma altura consistente */
}

.card-icon {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.card-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: 'Roboto Mono', monospace;
}

.card-subtitle {
  color: #7c7979;
  font-size: 1rem;
  line-height: 1.4;
  flex-grow: 1;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* TAGLINE */

.tagline {
  text-align: center;
  margin: 0;
}

/* TAGLINE */
.tagline h2 {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  letter-spacing: 0.5rem;
  color: #e0dddd;
  font-family: 'Kiwi Fruit', sans-serif;
  font-size: 3rem;  /* mantenha o tamanho que desejar */
}


/* MODAL */
.modal {
  display:none;
  position:fixed;
  top:0;left:0;
  width:100%;height:100%;
  background:rgba(0,0,0,0.8);
  align-items:center;
  justify-content:center;
  z-index:1000;
}
.modal.show {
  display:flex;
}
.modal-content.clean {
  background:#fff;
  padding:2rem;
  border-radius:8px;
  max-width:400px;
  width:90%;
  text-align:center;
  position:relative;
}
.modal-content.clean .close {
  position:absolute;
  top:.5rem;right:.5rem;
  font-size:1.5rem;
  cursor:pointer;
  color:#333;
}
.large {
  font-size:1.5rem;
  margin:1rem 0;
}
.btn-book {
  display:inline-block;
  padding:.75rem 1.5rem;
  background:#f9bf1f;
  color:#252524;
  border-radius:6px;
  text-decoration:none;
  font-weight:700;
  transition:background .2s;
}
.btn-book:hover {
  background:#e0a119;
}

/* FOOTER */
.site-footer {
  background: #000;
  color: #494747;
  text-align: center;
  padding: 1rem 0;
  /* margin-top: 4rem; */  /* REMOVIDO */
}

/* ABOUT US */
.about-content {
  padding:4rem 1rem;
  background:#fff;
}
.about-content .container {
  max-width:600px;
  margin:0 auto;  
}
.about-content h1 {
  font-family: 'Kiwi Fruit', sans-serif;
  font-size:3rem;
  text-align:center;
  margin-bottom:2rem;
}
.about-content .letter {
  text-align:justify;
}

/* CONTACT */
.contact-content {
  padding:4rem 1rem;
  background:#fff;
}
.contact-content .card {
  max-width:400px;
  margin:0 auto;
  padding:2rem;
  background:#f9f9f9;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  text-align:center;
}
.contact-content h1 {
  font-family: 'Kiwi Fruit', sans-serif;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center; /* <<< isso centraliza */
}

.social-links {
  display:flex;
  justify-content:center;
  gap:1.5rem;
  margin-bottom:2rem;
}
.social-links img {
  width:100px;
  height:100px;
  transition: transform .3s ease;
}
.social-links img:hover {
  transform: scale(1.2);
}
.contact-email {
  display:inline-flex;
  align-items:center;
  gap:.75rem;
  font-size:1rem;
}
.contact-email img {
  width:24px;
  height:24px;
}

/* BOOKING PAGE */
.booking-page {
  padding:4rem 1rem;
  background:#f5f5f5;
}
.booking-page .container {
  max-width:1200px;
  margin:0 auto;
  padding: 0 1rem;
}
.booking-page h1 {
  font-family:'Kiwi Fruit', sans-serif;
  font-size:3rem;
  text-align:center;
  margin-bottom:2rem;
}
.booking-form {
  background:#fff;
  padding:2rem;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.booking-form label {
  font-weight:600;
}
.booking-form input {
  padding:.75rem;
  border:1px solid #ccc;
  border-radius:4px;
}
#stripe-container {
  margin-top:1rem;
}
#confirmBooking {
  #confirmBooking {
  padding: 0.75rem 2rem;
  background: #f9bf1f;
  color: #252524;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#confirmBooking:hover {
  background: #d1a31a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

}

#confirmBooking,
.btn-pay {
  padding: 0.75rem 2rem;
  background: #f9bf1f;
  color: #252524;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

#confirmBooking:hover,
.btn-pay:hover {
  background: #d1a31a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


.quote-field input[type="email"]:invalid {
  border-color: #e74c3c;
}

.booking-left .booking-form {
  max-width: 90%;
}


/* RESPONSIVO */
@media (max-width:768px) {
  .hero-container,
  .benefits-container {
    flex-direction:column;
  }
}


/* LAYOUT E CAIXA DE AVISOS DO BOOKING */
.booking-layout {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.booking-left {
  flex: 1 1 55%;
}

.booking-notes {
  flex: 1 1 40%;
}

.note-box {
  background: #fffaf0;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0,0,0,0.08);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  font-family: 'Roboto Mono', monospace;
  border-left: 6px solid #f9bf1f;
}

.note-box::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid #fffaf0;
}

.note-box p {
  margin-bottom: 1rem;
}

.note-box ul {
  list-style: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.note-box ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.note-box ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
  color: #f9bf1f;
  font-size: 1rem;
}
} 


@media (max-width: 768px) {
  .booking-layout {
    flex-direction: column;
  }
  .note-box::before {
    display: none;
  }
}


/* ================================================================= */
/*  Ajustes de responsividade para mobile (max-width: 768px)         */
/* ================================================================= */
@media (max-width: 768px) {
  /* 1) Diminuir tamanho do slogan pra não estourar a tela */
  .hero-text .slogan {
    font-size: 3.5rem;       /* antes era 9rem para desktop */
    line-height: 1.1;
  }
  .hero-text .subtitle {
    font-size: 1.5rem;       /* antes 2rem */
  }

  /* 2) Ajustar menu para ficar em coluna */
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .main-nav a {
    padding: 0.5rem;
    text-align: center;
  }

  /* 3) Tornar o carrossel mais “alto automático” */
  .hero-carousel {
    height: auto;
    max-height: 200px;
  }
  .hero-carousel .slides img {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 200px;
  }

  /* 4) Forms de booking mais estreitos para facilitar leitura */
  .booking-form {
    padding: 1rem;
  }
  .booking-form input,
  .booking-form select,
  .booking-form button {
    font-size: 0.9rem;
  }

  /* 5) Ajustes gerais de espaçamento */
  .container {
    padding: 0 0.75rem;
  }

  /* 6) Botões em tamanho um pouco menor */
  #confirmBooking,
  .btn-quote {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}


.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.phone-label {
  font-size: 1.2rem;
  color: #333;
  font-family: 'Roboto Mono', monospace;
  text-align: center;
}

.phone-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #252524;
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;
  background: #f9bf1f;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.phone-link:hover {
  background: #e0a119;
  transform: scale(1.05);
}
