
/* =========================
   ProvaDent Section
========================= */
.provadent-section {
  padding: 6rem 6rem 4rem 6rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: transparent;
  box-sizing: border-box;
  position: relative; /* 🔹 mantém fluxo natural na página */
  z-index: 5;
}

/* Container */
.provadent-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
  max-width: 1600px;
  width: 100%;
}

/* Image */
.provadent-image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  opacity: 0.95;
  border-radius: 0.75rem;
}

/* Text Content */
.provadent-content {
  max-width: 460px;
  font-size: 1.3rem; /* 🔹 Aumentado */
  line-height: 1.8;
  text-align: left;
  padding-right: 4%;
  background: transparent;
  color: #fff; /* 🔹 Texto branco */
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6); /* 🔹 Igual à .hero */
  font-family: Arial, Helvetica, sans-serif;
}

.provadent-content h2 {
  font-size: 2.4rem; /* 🔹 Aumentado */
  margin-bottom: 1.2rem;
  font-weight: 800; /* 🔹 Igual à .hero */
  letter-spacing: 0.5px;
  color: #fff;
}

.provadent-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.provadent-content li {
  margin-bottom: 0.6rem;
}
/* =========================
   Responsividade
========================= */
/* Tablets grandes (até 1024px) */
@media (max-width: 1024px) {
  .provadent-section {
    margin-top: 10rem; /* 🔼 espaçamento superior aumentado */
    padding: 3rem 3rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .provadent-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .provadent-content {
    max-width: 90%;
    padding: 0;
    font-size: 1.15rem;
    color: #fff; /* 🔹 texto branco */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); /* 🔹 sombra sutil para destaque */
  }

  .provadent-content h2 {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7); /* 🔹 destaque mais forte no título */
  }

  .provadent-image img {
    max-width: 280px;
  }
}

/* Celulares (até 700px) */
@media (max-width: 700px) {
  .provadent-section {
    margin-top: 6rem; /* 🔼 espaçamento superior aumentado */
    padding: 2rem 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .provadent-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .provadent-content {
    font-size: 1.05rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); /* 🔹 melhora legibilidade */
  }

  .provadent-content h2 {
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7); /* 🔹 mais contraste no título */
  }

  .provadent-image img {
    max-width: 220px;
  }
}

/* Celulares muito pequenos (até 400px) */
@media (max-width: 400px) {
  .provadent-section {
    margin-top: 7rem; /* 🔼 ainda mais espaçamento em telas bem pequenas */
    padding: 1.5rem 0.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .provadent-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .provadent-content {
    font-size: 0.95rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); /* 🔹 contraste leve */
  }

  .provadent-content h2 {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7); /* 🔹 forte destaque para o título */
  }

  .provadent-image img {
    max-width: 200px;
  }
}


/* Tablets grandes (até 1024px) */
@media (max-width: 1024px) {
  .provadent-section {
    margin-top: 10rem;
    padding: 3rem 3rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .provadent-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .provadent-content {
    max-width: 90%;
    padding: 0;
    font-size: 1.15rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }

  .provadent-content h2 {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  }

  .provadent-image img {
    max-width: 280px;
  }
}

/* Celulares (até 700px) */
@media (max-width: 700px) {
  .provadent-section {
    margin-top: 6rem;
    padding: 2rem 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .provadent-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .provadent-content {
    font-size: 1.05rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }

  .provadent-content h2 {
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  }

  .provadent-image img {
    max-width: 220px;
  }
}

/* Celulares muito pequenos (até 400px) */
@media (max-width: 400px) {
  .provadent-section {
    margin-top: 5rem;
    padding: 1.5rem 0.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .provadent-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .provadent-content {
    font-size: 0.95rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }

  .provadent-content h2 {
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  }

}

/* ---------- LANDSCAPE específico: texto à direita (funciona com ou sem imagem) ---------- */
/* Aplica quando o dispositivo está em landscape e a largura máxima é 1024px */
@media (orientation: landscape) and (max-width: 1024px) {
  .provadent-section {
    margin-top: 4rem;
    padding: 2rem 3rem;
    /* mantém o section como flex para alinhar verticalmente */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* coloca os itens lado a lado */
  .provadent-container {
    flex-direction: row;      /* linha: conteúdo e (opcional) imagem */
    align-items: center;      /* centraliza verticalmente */
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
  }

  /* conteúdo fica à direita:
     - order:2 empurra conteúdo para a direita se houver outro elemento (ex: imagem)
     - margin-left:auto garante que, mesmo sem imagem, ele seja empurrado para a direita
     - max-width controla largura do bloco textual */
  .provadent-content {
    order: 2;
    margin-left: auto;
    max-width: 48%;
    text-align: right;        /* alinha título, paragrafos e lista à direita */
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  }

  /* garante que todos os elementos internos fiquem alinhados à direita */
  .provadent-content h2,
  .provadent-content h3,
  .provadent-content p,
  .provadent-content ul,
  .provadent-content li {
    text-align: right;
  }

  /* caso você adicione uma imagem, ela deve ter order:1 para ficar à esquerda */
  .provadent-image {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .provadent-image img {
    max-width: 260px;
    height: auto;
    display: block;
  }
}

/* =========================
   ProvaDent: How to Use Section
========================= */
.how-to-use {
  padding: 4rem 6rem;
  text-align: left;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.how-to-use h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.how-to-use p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* =========================
   Testimonials Section
========================= */
.testimonials {
  padding: 4rem 6rem;
  text-align: left;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.testimonials blockquote {
  background: rgba(0,0,0,0.4);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonials blockquote::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: rgba(255,255,255,0.7);
}

.testimonials blockquote p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.testimonials blockquote strong {
  font-weight: 700;
  color: #ffd700; /* Destaque para nome do autor */
}

/* =========================
   Lists inside Sections
========================= */
.provadent-content ul,
.how-to-use ul {
  list-style: disc inside;
  margin: 1rem 0;
  padding-left: 1rem;
}

.provadent-content li,
.how-to-use li {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* =========================
   Responsividade para Texto Faltante
========================= */
@media (max-width: 1024px) {
  .how-to-use,
  .testimonials {
    padding: 3rem 3rem;
    text-align: center;
  }

  .how-to-use h2,
  .testimonials h2 {
    font-size: 1.8rem;
  }

  .how-to-use p,
  .testimonials blockquote p {
    font-size: 1.05rem;
  }

  .testimonials blockquote {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 700px) {
  .how-to-use,
  .testimonials {
    padding: 2rem 1rem;
  }

  .how-to-use h2,
  .testimonials h2 {
    font-size: 1.5rem;
  }

  .how-to-use p,
  .testimonials blockquote p {
    font-size: 1rem;
  }

  .testimonials blockquote {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 400px) {
  .how-to-use,
  .testimonials {
    padding: 1.5rem 0.5rem;
  }

  .how-to-use h2,
  .testimonials h2 {
    font-size: 1.3rem;
  }

  .how-to-use p,
  .testimonials blockquote p {
    font-size: 0.95rem;
  }

  .testimonials blockquote {
    padding: 0.7rem 0.9rem;
  }
}

