* {
    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;
  padding: 20px;
}

/* 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;
}



  /* logo */
  #logo {
    position: absolute;
    top: 130px;
    left: 120px;
    width: 360px;
  }

  #home {
     width: 100%;
     display: flex;
     gap: 60px;
     align-items: center;
     justify-content: flex-start;
     padding-left: 100px;
     margin-top: 300px;
  }

   /* slogan */
  #content-left {
    max-width: 700px;
  }

  #content-left h1 {
   font-weight: 900;
    font-size:  5rem !important;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-left: 0px;
  }

  /* imagem com brilho roxo */
  #content-right {
    position: relative;
    left: 300px;
    width: 450px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
      0 0 40px 20px #49225b;
  }

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

  /* botão catálogo */
  .btn {
    display: inline-block;
    width: 240px;
    height: 75px;
    display: inline-block;
    background: linear-gradient(90deg, #2d1538, #6e3482);
    color: #f5ebfa;
    font-weight: 700;
    font-size: 35px;
    padding: 14px 30px;
    border-radius: 50px;    
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-top: 50px;
    text-align: center;
  }

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

  /* seção sobre nós */
#sobre-nos {
  margin-top: 100px;
  width: 100%;
  padding: 200px 120px 120px;
  background-color: #000;
}

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

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

.sobre-content {
  position: relative;
  width: 100%;
  height: 600px;
}

.sobre-box {
  width: 45%; 
  font-size: 1.4rem;
  line-height: 1.9;
  text-align: justify;
  position: absolute;
  font-weight: 500;
}

.sobre-box.left {
  top: 0;
  left: 0;
  
}

.sobre-box.right {
  bottom: 0;
  right: 0;
}
.sobre-box.right i {
 color: #6e3482;
}

.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: 100px 80px;
}

#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;
  flex-wrap: wrap;
  gap: 60px;
}

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

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

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

#servico-left img {
  width: 180px;
  border-radius: 10px;
  box-shadow: 0 0 25px #49225b;
}

/* seção de depoimentos */
#depoimentos {
  background-color: #000000;
  padding: 80px 40px;
  color: #f5ebfa;
  transition: background-color 0.3s, color 0.3s;
}

#depoimentos h2 {
  font-size: 2.5rem;
  color: #f5ebfa;
  margin-bottom: 40px;
  border-left: 6px solid #6e3482;
  padding-left: 20px;
  transition: color 0.3s, border-color 0.3s;
}

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

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

.depoimento-texto {
  font-style: italic;
  color: inherit;
}

.depoimento-autor {
  margin-top: 10px;
  font-weight: bold;
  color: #a56abd;
  transition: color 0.3s;
}

/* seção de agendamentos */
#agendar {
  background-color: #000;
  padding: 80px 40px;
  color: #f5ebfa;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

#agendar h2 {
  font-size: 2.5rem;
  color: #a56abd;
  margin-bottom: 20px;
  transition: color 0.3s;
}

#agendar p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
  transition: color 0.3s;
}


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

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

.avaliacao-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding: 0 20px;
}

.avaliacao-botao {
  background: linear-gradient(90deg, #49225b, #6e3482);
  color: #f5ebfa;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-align: center;
  max-width: 100%;
  width: fit-content;
  white-space: normal;
  word-break: break-word;
  box-shadow: 0 0 10px rgba(29, 177, 255, 0.2);
  transition: transform 0.5s ease;
}

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

#falarconos{
  display: inline-block; 
  background: linear-gradient(90deg, #49225b, #6e3482);
  color: #f5ebfa; 
  font-weight: bold; 
  padding: 16px 30px; 
  border-radius: 40px; 
  font-size: 1.1rem; 
  text-decoration: none; 
  transition: transform 0.3s ease;
}

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

.services {
      max-width: 1100px;
      margin: auto;
      padding: 3rem 1rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      background: #1c1c1c;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.6);
      transition: transform .2s;
    }
    .service-card:hover {
      transform: translateY(-5px);
    }
    .service-card h3 {
      margin-top: 0;
      color: #a64cff;
    }
    /* Feed do Instagram */
    .instagram {
      background: #000;
      padding: 3rem 1rem;
      text-align: center;
    }
    .instagram h2 {
      color: #a64cff;
      margin-bottom: 1rem;
    }
    .instagram-feed {
      max-width: 1100px;
      margin: auto;
    }

/* Menu de desktop */
.topo {
  background-color: #0a0a0a;
  color: #f5ebfa;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.logo2 {
  display: flex;
  align-items: center;
}

.logo2 img.logo {
  height: 80px;
  width: auto;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu ul li a {
  text-decoration: none;
  color: #f5ebfa;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu ul li a:hover {
  color: #6e3482;
}

.menu-toggle {
  display: none;
}

/* ajuste para mobile first - avaliação */
@media (max-width: 480px) {
  .avaliacao-botao {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
  }
}



/* responsividade mobile-first */

@media (min-width: 1501px) and (max-width: 1700px){
  #content-right {
    
    left: 150px;
  
  }

}

@media (min-width: 1400px) and (max-width: 1500px){

  #content-right {
    
    left: 50px;
  
  }

}

@media (min-width: 1025px) and (max-width: 1399.99px){
   
  #content-right {
    
    left: 0px;
  
  }

}

@media (max-width: 768px) {
  #content-left h1 {
   font-weight: 900;
    font-size:  3rem !important;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-left: 0px;
  }
  .menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #6e3482;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 10px #6e3482;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .menu-toggle:hover {
    background-color: #6e3482;
    transform: scale(1.05);
  }

  .menu-toggle i {
    color: #190019;
    font-size: 1.3rem;
  }

  /* menu recolhido */
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: transparent;
    padding: 0;
    margin: 0;
  }

  /* menu ativo ao clicar */
  .menu.active {
    display: flex;
    background-color: #0a0a0a;
  }

  .menu ul {
    flex-direction: column;
    gap: 0;
  }

  .menu ul li {
    padding: 15px 20px;
    border-bottom: 1px solid #1a1a1a;
  }

  .menu ul li a {
    display: block;
    width: 100%;
  }
}

/* tema escuro */
body {
  background-color: #000;
  color: #f5ebfa;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* tema claro */
body.light-mode {
  background-color: #fff;
  color: #121212;
}

/* interruptor */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

/* botão para alternar tema */
#toggle-theme {
  margin-left: 20px;
  padding: 8px 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 900;
  transition: all 0.3s ease;
}

/* tema escuro */
body:not(.light-mode) #toggle-theme {
  background: #6e3482;
  color: #f5ebfa;
}

/* tema claro */
body.light-mode #toggle-theme {
  background: #f5ebfa;
  color: #6e3482;
}


.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #6e3482;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #f5ebfa;
}

input:checked + .slider:before {
  transform: translateX(26px);
  background-color: #6e3482;
}

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 header.topo {
  background-color: #eaeaea;
  color: #121212;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

body.light-mode .menu ul li a {
  color: #121212;
}

body.light-mode .menu ul li a:hover {
  color: #6e3482;
}

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

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

body.light-mode #depoimentos, 
body.light-mode #agendar {
  background-color: #fff !important;
  color: #121212 !important;
}

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

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

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

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

body.light-mode #depoimentos h2 {
  color: #000;
  border-left-color: #6e3482;
}

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: #000;
}

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

/* menu mobile tema claro */
body.light-mode .menu.active {
  background-color: #eaeaea; 
}

body.light-mode .menu.active ul li a,
body.light-mode .menu.active ul li button.toggle-theme-menu {
  color: #121212;
}

body.light-mode .menu.active ul li a:hover,
body.light-mode .menu.active ul li button.toggle-theme-menu:hover {
  color: #6e3482;
  background-color: transparent;
}