/* RESET E BASE */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #2E2E2E;
  background: #F5F0EC;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* TIPOGRAFIA */
h1, h4, .nome {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 5px;
}

h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: white;
}

p {
  font-size: 18px;
  margin: 20px 0;
  color: #5a4848;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
}

.hero-text {
  max-width: 800px;
}

/* FOTO */
.foto-card {
  width: 380px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.foto-card img {
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}

.nome {
  background: #8B6F63;
  color: white;
  padding: 12px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.5px;
}

.nome span {
  font-size: 14px;
  opacity: 0.9;
}

/* BOTÕES */
.btn1, .btn2, .btn3 {
  display: inline-block;
  font-size: 18px;
  border-radius: 8px;
  margin-right: 20px;
  margin-top: 20px;
}

.btn1 {
  background: #8B6F63;
  color: white;
  padding: 20px 82px;
}

.btn2 {
  background: transparent;
  color: #8B6F63;
  padding: 16px 10px;
  border: 4px solid #8B6F63;
}

.btn3 {
  background: transparent;
  color: #10196b;
  padding: 16px 38px;
  border: 4px solid #10196b;
}

/* SEÇÃO PROBLEMAS */
.problemas {
  padding: 80px 10%;
  text-align: center;
  background: white;
}

/* GRID PADRÃO */
.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* GRID FOOTER */
.grid2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARDS */
.card {
  background: #F5F0EC;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  text-align: justify;
}

.card2 {
  flex: 1;
  max-width: 250px;
}

/* SOBRE */
.sobre {
  padding: 80px 10%;
}

.container2 {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* FOOTER (BEZEL) */
.bezel {
  padding: 20px 10%;
  background: #8B6F63;
}

/* LOGO FOOTER */
.card_cadeira {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.card_cadeira img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
}

.cadeira-nome {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  margin: 0;
  color: white;
}

.cadeira-profissao {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin: 0;
}

.linha-decorativa {
  width: 100%;
  margin-top: 0;
  display: block;
  padding: 0 20px;
}

/* OUTROS */
footer {
  text-align: center;
  padding: 40px;
}

.distante {
  margin-top: 100px;
}

.email-link {
  display: block;
  margin-top: 10px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text {
    max-width: 100%;
  }

  .foto-card {
    width: 100%;
    max-width: 280px;
    margin-top: 30px;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .grid2 {
    flex-direction: column;
    align-items: center;
  }

  .card, .card2 {
    width: 100%;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .btn1, .btn2 {
    display: block;
    width: 100%;
    padding: 14px;
    margin: 10px 0;
  }

  .distante {
    margin-top: 80px;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .container2 {
  flex-direction: column-reverse;
  text-align: center;
  }

  .container2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
  }
}