* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

/* HERO */
.hero {
  height: 100vh;

  /* Imagem local */
  background: url("capa.jpg") no-repeat center center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 20px;
}

/* Overlay escuro */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Conteúdo */
.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #c8a2c8;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #b48cb4;
}

/* Responsivo */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .hero {
    height: 90vh;

  }
}

/* SOBRE */
.sobre {
  padding: 80px 20px;
  background: #f8f5f7;
}

.sobre-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Imagem */
.sobre-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 10%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Texto */
.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #5a4b5c;
}

.sobre-texto p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-img img {
    max-width: 70%;
  }
}

/* COMO FUNCIONA */
.funciona {
  padding: 80px 20px;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
              url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f") no-repeat center/cover;
}

.funciona-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.funciona h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #5a4b5c;
}

/* Cards */
.funciona-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Ícones */
.icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Texto */
.card h3 {
  margin-bottom: 10px;
  color: #5a4b5c;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .funciona h2 {
    font-size: 1.8rem;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }
}

/* PROBLEMAS */
.problemas {
  padding: 80px 20px;
  background: #ffffff;
}

.problemas-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.problemas h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #5a4b5c;
}

/* Cards */
.problemas-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.problema-card {
  background: #f8f5f7;
  padding: 25px;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.problema-card:hover {
  transform: translateY(-5px);
}

.problema-card h3 {
  margin-bottom: 10px;
  color: #5a4b5c;
}

.problema-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .problema-card {
    width: 100%;
    max-width: 320px;
  }
}

/* DEPOIMENTOS - ESTILO PREMIUM DIFERENTE */
.depoimentos {
  padding: 100px 20px;
  background: #ffffff;
}

.depoimentos-container {
  max-width: 1100px;
  margin: auto;
}

.depoimentos h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #5a4b5c;
}

/* GRID DIFERENTE */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* BASE */
.depoimento {
  background: #f8f5f7;
  padding: 20px;
  border-radius: 15px;
  font-size: 0.9rem;
  color: #555;
}

/* DESTAQUE GRANDE */
.destaque {
  grid-column: span 3;
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  background: #c8a2c8;
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
}

/* AUTOR */
.depoimento span {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #777;
}

.destaque span {
  color: #eee;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .destaque {
    grid-column: span 1;
  }
}

/* CONTATO */
.contato {
  padding: 80px 20px;
  background: #f8f5f7;
}

.contato-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Imagem */
.contato-img {
  flex: 1;
  display: flex;
  justify-content: center;
  
}

.contato-img img {
  width: 100%;
  max-width: 350px; /* diminui o tamanho */
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  
}

/* Responsivo */
@media (max-width: 768px) {
  .contato-img {
    flex-direction: column;
    text-align: center;
  }

  .contato-img {
    max-width: 70%;
  }
}


/* Texto */
.contato-texto {
  flex: 1;
}

.contato-texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #5a4b5c;
}

.contato-texto p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

/* Botão */
.btn-contato {
  display: inline-block;
  padding: 15px 30px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-contato:hover {
  background: #1ebe5d;
}

/* Responsivo */
@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
    text-align: center;
  }

  .contato-img img {
    max-width: 100%;
  }
}

/* RODAPÉ NOVO */
.rodape {
  background: #5a4b5c;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.rodape-container {
  max-width: 1000px;
  margin: auto;
}

/* Nome */
.rodape-info h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.rodape-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* WhatsApp */
.whats-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 12px 25px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.whats-link:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Ícone */
.whats-link svg {
  color: white;
}

/* Rodapé final */
.copyright {
  margin-top: 30px;
  font-size: 0.8rem;
  opacity: 0.7;
}