:root {
  /* PALETA DE CORES PREMIUM */
  --bg-dark: #0a0a0a;
  --bg-surface: #121212;
  --bg-card: #181818;
  
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #707070;
  
  --accent-white: #ffffff;
  --accent-gray: #2c2c2c;
  
  --border-light: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  --shadow-sm: rgba(0, 0, 0, 0.25);
  --shadow-lg: rgba(0, 0, 0, 0.6);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.section {
  padding: 100px 0;
}

/* HEADER & NAV */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: auto;
  height: 100px;
  object-fit: contain;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-white);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* BOTÕES REESTILIZADOS */
.btn-header {
  padding: 10px 24px;
  border-radius: 50px;
  background-color: var(--accent-white);
  color: var(--bg-dark);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
  border: 1px solid var(--accent-white);
}

.btn-header:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  background-color: var(--accent-white);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.12);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
  background-color: #0a0a0a;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-white);
  transform: translateY(-3px);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), var(--bg-dark);
  padding-top: 120px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px var(--shadow-lg);
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image:hover img {
  transform: scale(1.04);
}

.hero-text .tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* SECTION TAGS & TITLES */
.section-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

/* SOBRE (ABOUT) *//* ==========================================================================
   SEÇÃO SOBRE MIM (COM SLIDER DINÂMICO)
   ========================================================================== */
.about { 
  background-color: var(--bg-surface); 
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 100px; 
  align-items: center; 
}

/* Container do Carrossel */
.about-slider-container {
  position: relative; 
  width: 100%; 
  height: 550px; 
  border-radius: 24px; 
  overflow: hidden;
  border: 1px solid var(--border-brand); 
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-slider { 
  width: 100%; 
  height: 100%; 
  position: relative; 
}

/* Slides Individuais com efeito Fade */
.about-slide {
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.about-slide.active { 
  opacity: 1; 
  z-index: 2;
}

.about-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

/* Pontos Indicadores Minimalistas */
.slider-dots {
  position: absolute; 
  bottom: 25px; 
  left: 50%; 
  transform: translateX(-50%);
  display: flex; 
  gap: 10px; 
  z-index: 10;
}

.dot {
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Efeito de expansão no ponto ativo (Estilo Premium) */
.dot.active { 
  background: var(--brand-white); 
  width: 24px; 
  border-radius: 10px; 
}

/* Bloco de Texto */
.about-text h2 { 
  font-size: 2.5rem; 
  line-height: 1.2;
  margin-bottom: 20px; 
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ==========================================================================
   RESPONSIVIDADE DA SEÇÃO SOBRE
   ========================================================================== */
@media (max-width: 900px) {
  .about-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    text-align: center; 
  }
  
  /* Joga o slider para baixo do texto no mobile para melhorar a leitura */
  .about-slider-container { 
    height: 400px; 
    order: 2; 
  }
}

@media (max-width: 480px) {
  .about-slider-container { 
    height: 320px; 
  }
}
/* SERVIÇOS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 40px 30px;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px var(--shadow-sm);
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.service-card:hover .icon-box {
  background-color: var(--accent-white);
  color: var(--bg-dark);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* GALERIA (PORTFÓLIO) */
/* ==========================================================================
   SEÇÃO PORTFÓLIO (GALERIA DINÂMICA FILTRÁVEL)
   ========================================================================== */
   .gallery {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-light);
  }
  
  /* Menu de Filtros Minimalista */
  .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
  }
  
  .filter-btn:hover {
    border-color: var(--brand-gray);
    color: var(--brand-white);
  }
  
  .filter-btn.active {
    background-color: white;
    border-color: var(--brand-white);
    color: var(--bg-dark);
    font-weight: 500;
  }
  
  /* Grid de Imagens */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: var(--transition-smooth);
  }
  
  /* Animação suave para quando a imagem surge no filtro */
  .gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background-color: var(--bg-card);
    cursor: zoom-in;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.3s ease;
  }
  
  .gallery-item.show {
    opacity: 1;
    transform: scale(1);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.85);
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
  }
  
  /* Área de Ação do Botão Ver Mais */
  .gallery-actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }
  
  /* ==========================================================================
     RESPONSIVIDADE DA GALERIA
     ========================================================================== */
  @media (max-width: 992px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    
    .gallery-filters {
      gap: 8px;
    }
    
    .filter-btn {
      padding: 8px 18px;
      font-size: 12px;
      width: 47%; /* Faz os botões virarem blocos organizados em telas muito pequenas */
      text-align: center;
    }
  }

/* CTA BOX REFORMULADA */
.cta-box {
  padding: 80px 40px;
  border-radius: 30px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%), var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 60px var(--shadow-lg);
}

.cta-box h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 35px;
}
/* ==========================================================================
   RODAPÉ (FOOTER LUXURY COM LOGO E MAPA)
   ========================================================================== */
   .footer { 
    padding: 100px 0 35px; 
    background-color: var(--bg-dark); 
    border-top: 1px solid var(--border-light); 
  }
  
  /* Divisão perfeita em 3 colunas no desktop */
  .footer-content { 
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px; 
  }
  
  /* Coluna 1: Logo e Redes */
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    height: 80px; /* Tamanho ideal e elegante para o rodapé */
    width: auto;
    object-fit: contain;
  }
  
  .footer-brand p { 
    font-size: 14px; 
    color: var(--text-secondary);
    margin-bottom: 25px;
  }
  
  .socials { 
    display: flex; 
    gap: 12px; 
  }
  
  .socials a { 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    background-color: var(--bg-card); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--text-secondary);
    transition: var(--transition-smooth); 
    border: 1px solid var(--border-light); 
  }
  
  .socials a:hover { 
    transform: translateY(-4px);
    color: var(--brand-white); 
    border-color: var(--brand-white); 
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
  }
  
  /* Coluna 2: Horários */
  .footer-hours h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-white);
    margin-bottom: 25px;
  }
  
  .footer-hours ul {
    list-style: none;
  }
  
  .footer-hours li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  
  .footer-hours li:last-child {
    border-bottom: none;
  }
  
  .footer-hours li span:last-child {
    color: var(--brand-gray); /* Destaque sutil no horário em tom concreto */
    font-weight: 500;
  }
  
  /* Coluna 3: Moldura do Google Maps */
  .footer-map {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-brand);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  }
  
  .footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
   /*  filter: grayscale(100%) invert(92%) contrast(83%); Integração perfeita ao tema escuro */
  }
  
  /* Linha de Direitos Autorais */
  .footer-bottom { 
    text-align: center; 
    font-size: 12px; 
    color: var(--text-muted); 
    border-top: 1px solid var(--border-light); 
    padding-top: 35px; 
  }
  
  /* ==========================================================================
     RESPONSIVIDADE DO RODAPÉ
     ========================================================================== */
  @media (max-width: 992px) {
    .footer-content { 
      grid-template-columns: 1fr 1fr; /* Passa para duas colunas em tablets */
      gap: 40px;
    }
    .footer-map {
      grid-column: span 2; /* Mapa ocupa a largura total abaixo das info */
    }
  }
  
  @media (max-width: 768px) {
    .footer {
      padding: 80px 0 30px;
    }
    .footer-content { 
      grid-template-columns: 1fr; /* Coluna única no mobile */
      text-align: center; 
      gap: 45px;
    }
    .footer-logo img {
      margin: 0 auto;
    }
    .socials {
      justify-content: center;
    }
    .footer-hours li {
      padding: 12px 10px;
    }
    .footer-map {
      grid-column: span 1;
      height: 200px;
    }
  }

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #ffffff;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* RESPONSIVIDADE (MEDIA QUERIES EXCELENTES) */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 2.8rem; }
  .about-text h2 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-grid { gap: 50px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; } /* Oculta a nav simples no mobile para focar no agendamento direto */
  
  .hero { padding-top: 100px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text p { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }
  .hero-image img { max-width: 300px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-image { order: 2; } /* Foto vai para baixo do texto no mobile */
  
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  
  .cta-box { padding: 50px 20px; }
  .cta-box h2 { font-size: 2rem; }
  
  .footer-content { flex-direction: column; align-items: center; gap: 30px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; }
}