@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Cabeçalho */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #6EC1E4;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo { font-size: 1.3rem; font-weight: bold; }
header nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
header nav a:hover { color: #FFD93D; }

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #A8E6CF, #CBA6F7);
  color: #333;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 1.5rem; }
.hero .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #6EC1E4;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.hero .btn:hover { background: #4aa8cc; }

/* Seções */
section { padding: 3rem 2rem; max-width: 1100px; margin: auto; }
section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #6EC1E4;
  font-size: 2rem;
}

/* Serviços */
#servicos ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  list-style: none;
}
#servicos li {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
#servicos li:hover { transform: translateY(-5px); }

/* Depoimentos - Carrossel */
#depoimentos {
  text-align: center;
  position: relative;
}
.carrossel {
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.slide {
  display: none;
  animation: fade 0.8s;
}
.slide.ativo {
  display: block;
}
#depoimentos blockquote {
  background: #fff;
  padding: 2rem;
  margin: 1rem auto;
  border-left: 5px solid #FFD93D;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
}
#depoimentos footer {
  margin-top: 1rem;
  font-weight: bold;
  color: #6EC1E4;
}

/* Botões de navegação do carrossel */
.controles {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}
.controles button {
  background: rgba(110, 193, 228, 0.9);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.controles button:hover {
  background: #4aa8cc;
}

/* Animação */
@keyframes fade {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

/* Feed */
#feed article {
  background: #fff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
#feed article h3 { margin-bottom: 0.5rem; color: #CBA6F7; }

/* Leia mais (conteúdo expandível) */
.conteudo-extra {
  display: none;
  margin-top: 0.8rem;
}
.conteudo-extra.ativo {
  display: block;
}
.btn-leia-mais {
  margin-top: 0.8rem;
  background: #6EC1E4;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-leia-mais:hover { background: #4aa8cc; }

/* Formulário */
form input,
form textarea,
form button {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
}
form textarea { min-height: 140px; resize: vertical; }
form button {
  background: #6EC1E4;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
form button:hover { background: #4aa8cc; }

/* Rodapé */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #333;
  color: #fff;
  font-size: 0.9rem;
}

/* Botão WhatsApp flutuante */
.btn-whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, background 0.3s;
}
.btn-whatsapp-fixed:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
  header { padding: 0.8rem 1rem; }
  .hero h1 { font-size: 2rem; }
  section { padding: 2rem 1rem; }
}
@media (max-width: 600px) {
  #depoimentos blockquote {
    font-size: 1rem;
    padding: 1.2rem;
  }
}

