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

body {
  background-color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f5ebfa;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body, #content-left, #content-right, section {
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 75px;
  height: 75px;
  bottom: 25px;
  right: 25px;
  background-color: #1a1a1a;
  color: #8e44ad;
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out, opacity 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  background-color: #8e44ad;
  color: #000000;
}

.whatsapp-hidden {
  opacity: 0;
  pointer-events: none;
}

/* WRAPPER PRINCIPAL: Adiciona o distanciamento perfeito para o header fixo */
.index-wrapper {
  padding-top: 40px;
}

/* SEÇÃO HOME (HERO) */
#home {
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 100px 80px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

#content-left {
  flex: 1;
  max-width: 650px;
  text-align: left;
}

#content-left h1 {
  font-weight: 900;
  font-size: 3.8rem !important;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #a56abd;
}

#content-left h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #f5ebfa;
  font-style: italic;
  line-height: 1.4;
}

/* Imagem com brilho roxo */
#content-right {
  position: relative;
  width: 480px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px 20px #49225b;
  flex-shrink: 0;
}

#content-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Botão Catálogo */
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #2d1538, #6e3482);
  color: #f5ebfa;
  font-weight: 700;
  font-size: 24px;
  padding: 16px 45px;
  border-radius: 50px;    
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: center;
  white-space: nowrap; 
  box-shadow: 0 4px 15px rgba(110, 52, 130, 0.4);
}

.btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #6e3482, #49225b);
}

/* SEÇÃO SOBRE NÓS */
#sobre-nos {
  width: 100%;
  padding: 120px 80px;
  background-color: #000;
  max-width: 1400px;
  margin: 0 auto;
}

#sobre-nos h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  text-align: left;
}

#sobre-nos h1 b {
  color: #a56abd;
}

.sobre-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.sobre-box {
  width: 48%; 
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: justify;
  font-weight: 500;
}

.sobre-box.left::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #a56abd;
  margin-bottom: 30px;
}

.sobre-box.right::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #a56abd;
  margin-top: 30px;
}

/* SEÇÃO DE SERVIÇOS */
#servicos {
  background-color: #000;
  color: #f5ebfa;
  padding: 120px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

#servicos h2 {
  font-size: 3rem;
  margin-bottom: 60px;
  border-left: 6px solid #6e3482;
  padding-left: 20px;
}

.servicos-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

#servico-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#servico-left .servico a {
  display: block;
  width: 160px;    
  height: 160px;      
  flex-shrink: 0;    
}

#servico-left img {
  width: 100%;       
  height: 100%;      
  object-fit: cover; 
  border-radius: 10px;
  box-shadow: 0 0 25px #49225b;
  transition: transform 0.3s ease;
}

#servico-left .servico {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: transform 0.3s ease;
}

.servico:hover {
  transform: translateX(8px);
}

#servico-left p {
  font-size: 1.3rem;
  font-weight: 500;
}

#servicos-right {
  flex: 1 1 45%;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

/* SEÇÃO DE DEPOIMENTOS */
#depoimentos {
  background-color: #000000;
  padding: 120px 80px;
  color: #f5ebfa;
  max-width: 1400px;
  margin: 0 auto;
}

#depoimentos h2 {
  font-size: 3rem;
  margin-bottom: 60px;
  border-left: 6px solid #6e3482;
  padding-left: 20px;
}

.depoimentos-container {
  display: flex;
  gap: 30px;
}

.depoimento-box {
  flex: 1 1 300px;
  background-color: #1a1a1a;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.depoimento-texto {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
}

.depoimento-autor {
  margin-top: 25px;
  font-weight: bold;
  color: #a56abd;
}

.avaliacao-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.avaliacao-botao {
  background: linear-gradient(90deg, #49225b, #6e3482);
  color: #f5ebfa;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 15px rgba(110, 52, 130, 0.4);
}

.avaliacao-botao:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #6e3482, #49225b);
}

/* SEÇÃO DE AGENDAMENTOS */
#agendar {
  background-color: #000;
  padding: 120px 40px;
  color: #f5ebfa;
  text-align: center;
}

#agendar h2 {
  font-size: 3rem;
  color: #a56abd;
  margin-bottom: 20px;
}

#agendar p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #ccc;
}

#falarconos {
  display: inline-block; 
  background: linear-gradient(90deg, #49225b, #6e3482);
  color: #f5ebfa; 
  font-weight: bold; 
  padding: 16px 40px; 
  border-radius: 40px; 
  font-size: 1.2rem; 
  text-decoration: none; 
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 15px rgba(110, 52, 130, 0.4);
}

#falarconos:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, #6e3482, #49225b);
}

/* TEMA CLARO GERAL (INDEX) */
body.light-mode {
  background-color: #fff;
  color: #121212;
}

body.light-mode a.btn {
  background: linear-gradient(90deg, #a58ac9, #cdb9f5);
  color: #121212;
}

body.light-mode a.btn:hover {
  background: linear-gradient(90deg, #cdb9f5, #a58ac9);
}

body.light-mode #content-left h2 {
  color: #333;
}

body.light-mode #content-right {
  box-shadow: 0 0 40px 20px #a390d6;
}

body.light-mode #servicos, 
body.light-mode #sobre-nos,
body.light-mode #depoimentos {
  background-color: #fff;
  color: #121212;
}

body.light-mode #depoimentos h2 {
  color: #121212;
}

body.light-mode .depoimento-box {
  background-color: #eaeaea;
  color: #121212;
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.2);
}

body.light-mode .depoimento-autor {
  color: #6e3482;
}

body.light-mode #agendar {
  background-color: #eaeaea;
  color: #121212;
}

body.light-mode #agendar h2 {
  color: #6e3482;
}

body.light-mode #agendar p {
  color: #333;
}

body.light-mode .avaliacao-botao,
body.light-mode #falarconos {
  background: linear-gradient(90deg, #a58ac9, #cdb9f5);
  color: #121212;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .avaliacao-botao:hover,
body.light-mode #falarconos:hover {
  background: linear-gradient(90deg, #cdb9f5, #a58ac9);
}

/* MEDIA QUERIES (RESPONSIVIDADE LAYOUT) */
@media (max-width: 1024px) {
  #home, #sobre-nos, #servicos, #depoimentos {
    padding: 80px 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #home {
    justify-content: center;
    padding-top: 40px;
  }

  #content-right {
    width: 380px;
    height: 380px;
  }

  .sobre-content, .servicos-container {
    flex-direction: column;
    gap: 40px;
  }

  .sobre-box, #servicos-right {
    width: 100%;
    text-align: center;
  }

  .depoimentos-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  #content-left h1 {
    font-size: 2.6rem !important;
  }
  #content-left h2 {
    font-size: 1.3rem;
  }
  #content-right {
    width: 280px;
    height: 280px;
  }
  .avaliacao-botao, #falarconos, .btn {
    font-size: 1rem;
    padding: 12px 24px;
    width: 100%;
  }
}