/* --- CONFIGURAÇÕES GERAIS --- */
:root {
  --bg-dark: #07090e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --primary-gold: #d4af37;
  --text-white: #ffffff;
  --text-gray: #a1a1aa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  overflow: hidden; /* Impede a rolagem padrão da página */
}

/* --- MENU NAVBAR (GLASSMORPHISM) --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(7, 9, 14, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-gray);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a.active, .nav-links a:hover {
  color: var(--primary-gold);
}

.btn-cta-header {
  background: var(--primary-gold);
  border: none;
  color: var(--bg-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* --- ESTRUTURA DO CARROSSEL DE TELAS (SLIDER) --- */
.slider-wrapper {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slider-inner {
  display: flex;
  width: 300vw; /* 3 telas de 100vw cada (ajustar conforme adicionar telas) */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1); /* Transição suave e premium */
}

.slide-screen {
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 50px 50px 50px;
  position: relative;
}

/* --- ESTILOS DE CADA TELA --- */

/* Tela 1: Hero */
.hero-content {
  max-width: 700px;
  text-align: center;
}

.badge-gold {
  color: var(--primary-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  margin: 15px 0 25px;
  line-height: 1.2;
}

.hero-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-gold-primary, .btn-outline {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-gold-primary {
  background: var(--primary-gold);
  border: none;
  color: var(--bg-dark);
}

.btn-gold-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-white);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.02);
}

/* Tela 2: Sobre */
.grid-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  max-width: 1100px;
  width: 100%;
}

.about-text h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 30px;
}

.about-stats {
  display: flex;
  gap: 30px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.visual-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: var(--primary-gold);
  font-size: 3rem;
  min-height: 300px;
}

.visual-placeholder p {
  font-size: 1rem;
  color: var(--text-gray);
}

/* Tela 3: Serviços */
.services-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.services-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.services-content .subtitle {
  color: var(--text-gray);
  margin-bottom: 50px;
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card i {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.category-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.slider-inner {
  display: flex;
  width: 800vw; /* Atualizado para 5 telas */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* --- ESTILOS DA TELA 4: DETALHES DE SERVIÇOS/PREÇOS --- */
.services-detail-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.services-detail-container h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.menu-precos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.preco-col {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  text-align: left;
}

.preco-col h3 {
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  font-size: 1.3rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.preco-col ul {
  list-style: none;
}

.preco-col li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.preco-col li:last-child {
  border-bottom: none;
}

.preco-col li span {
  color: var(--text-gray);
}

.preco-col li strong {
  color: var(--primary-gold);
  font-family: 'Cinzel', serif;
}

/* --- ESTILOS DA TELA 5: ANTES E DEPOIS --- */
.transformation-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.transformation-container h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.gallery-transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.transform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: 16px;
}

.transform-card h4 {
  font-family: 'Cinzel', serif;
  margin-top: 15px;
  font-size: 1.1rem;
  color: var(--text-white);
}

/* Container Interativo do Antes e Depois */
.image-compare-box {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.img-after, .img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Imagem do Antes fica por cima e sua largura encolhe/estica */
.img-before {
  width: 50%; /* Valor padrão inicial */
  border-right: 3px solid var(--primary-gold);
}

/* Slider invisível por cima para controle do arrastar */
.slider-compare {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  cursor: ew-resize;
  z-index: 10;
}

/* Ajustes finos do slider em diferentes navegadores */
.slider-compare::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 4px;
  height: 280px;
  background: transparent;
}

.slider-compare::-moz-range-thumb {
  width: 4px;
  height: 280px;
  background: transparent;
}

/* Badges flutuantes indicando Antes/Depois */
.badge-compare {
  position: absolute;
  bottom: 15px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}

.badge-compare.before {
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 1px solid var(--border-glass);
}

.badge-compare.after {
  right: 15px;
  background: var(--primary-gold);
  color: var(--bg-dark);
}

/* --- ESTILOS DA TELA 7: AGENDAMENTO --- */
.booking-container {
  max-width: 1100px;
  width: 100%;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.booking-form-side {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.booking-header h2 {
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  font-size: 2rem;
  margin-bottom: 5px;
}

.booking-header p {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  flex: 1;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.input-group input, .input-group select {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}

.input-group input:focus, .input-group select:focus {
  border-color: var(--primary-gold);
}

.btn-confirm-booking {
  width: 100%;
  padding: 15px;
  background: var(--primary-gold);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-confirm-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Card lateral de informações */
.info-card-glass {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-glass);
  padding: 30px;
  border-radius: 20px;
}

.info-card-glass h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 20px;
}

.booking-perks {
  list-style: none;
  margin-bottom: 30px;
}

.booking-perks li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.booking-perks i {
  color: var(--primary-gold);
}

.btn-whatsapp-direct {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  transition: opacity 0.3s;
}

.btn-whatsapp-direct:hover {
  opacity: 0.9;
}

/* --- BOTÃO FLUTUANTE GLOBAL (Adicionar no final) --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-info-side { display: none; }
}

/* --- ESTILOS DA TELA 8: FAQ & RODAPÉ --- */
.faq-footer-container {
  max-width: 1000px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Empurra o rodapé para o final da tela */
  padding-top: 40px;
}

.faq-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.3rem;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 5px;
}

.faq-section .subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Acordeão do FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  overflow: hidden;
}

.accordion-faq {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-white);
  padding: 18px 25px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-faq:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-faq i {
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

/* Estado Ativo do Acordeão */
.accordion-faq.active i {
  transform: rotate(180deg);
}

/* Painel de Texto Revelado */
.panel-faq {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.2);
}

.panel-faq p {
  padding: 20px 25px;
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- ESTILOS DO RODAPÉ --- */
.footer-wrapper {
  margin-top: 40px;
  padding-bottom: 20px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
  margin-bottom: 25px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  color: var(--primary-gold);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: var(--text-gray);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: var(--primary-gold);
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}
