/* Tipografia elegante */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background-color: #000;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #c19a6b;
}

.btn-agendar {
  background: linear-gradient(45deg, #c19a6b, #e0b084);
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-agendar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Banner */
.banner {
  position: relative;
  background: url('banner.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.banner h1, .banner p, .btn-banner {
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.banner h1 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.banner p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-banner {
  background-color: #c19a6b;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn-banner:hover {
  transform: scale(1.05);
}

/* Seções */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

/* Sobre */
.sobre p {
  text-align: center;
  font-size: 18px;
}

/* Serviços */
.servicos ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  text-align: center;
}

.servicos li {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.servicos li:hover {
  transform: translateY(-5px);
  background-color: #e0b084;
  color: #fff;
}

/* Carrossel */
.carrossel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
}

.carrossel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carrossel .prev {
  left: 10px;
}

.carrossel .next {
  right: 10px;
}

/* Depoimentos */
.depoimentos blockquote {
  font-style: italic;
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.depoimentos blockquote::before {
  content: "“";
  font-size: 40px;
  position: absolute;
  left: -20px;
  top: -10px;
  color: #c19a6b;
}

/* Contato */
.contato p {
  text-align: center;
  margin-bottom: 20px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

form label {
  font-weight: 500;
}

input, button {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

input:focus, button:focus {
  outline: none;
  border-color: #c19a6b;
  box-shadow: 0 0 5px rgba(193, 154, 107, 0.5);
}

button {
  background-color: #c19a6b;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e0b084;
}

/* Rodapé */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}

footer a {
  color: #c19a6b;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Botões flutuantes */
.botoes-flutuantes {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.botao-flutuante {
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.botao-flutuante:hover {
  transform: scale(1.1);
}

.botao-flutuante span {
  font-size: 24px;
}

/* Cores específicas */
.whatsapp {
  background-color: #25D366;
  color: #fff;
}

.instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 40%, #d6249f 70%, #285AEB 100%);
  color: #fff;
}

.facebook {
  background-color: #1877F2;
  color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin