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

body {
  font-family: 'Lora', sans-serif;
  line-height: 1.6;
  color: #88B48B;
}

header {
  /* background-color: #F9F9F9; */
  background-color: #9EA47F;
  /* color: #88B48B; */
  color: #F9F9F9;
  padding: 2.5rem 10rem;
  margin: auto;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: all 0.3s ease;
}

.shrink {
  padding: 1.5rem 10rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

p {
  font-family: 'Poppins', sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  margin-left: auto;
}

.logo img {
  height: 50px;
}

nav {
  margin: auto;
}

nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

nav a {
  /* color: #6E7B70; */
  color: #F9F9F9;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  transition: color 0.3s;
  vertical-align: middle;
}

.nav-button {
  margin-left: 25px
}

.btn img {
  vertical-align: text-top;
  width: 20px;
}

#icone-wpp {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.hero {
  display: flex;
  text-align: start;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 22rem;
  /* background-color: white; */
  background-color: #9EA47F;
  flex-wrap: wrap;
  overflow: hidden;
}

.hero .text {
  max-width: 500px;
  margin-left: 50px;
  color: #F9F9F9;
}

.logo-hero {
  height: 125px;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Lora', sans-serif;
}

.hero h2 {
  color: #f9f9f9cf;
  font-size: 1.25rem
}

.hero a {
  margin-top: 1.25rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: 'Poppins', sans-serif;
}

.hero ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero ul li {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 1.5rem;
}

.hero ul li::before {
  content: '✔';
  color: #5D2B3D;
  font-size: 1.5rem;
  padding: .75rem;
}

.btn {
  background-color: #6F7B84;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  transition: transform 0.3s ease;
  display: inline-block;
  font-size: 1rem
}

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

.hero .image img {
  width: 550px;
  object-fit: contain;
}

.sombra {
  width: 600px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 80%);
  margin: -20px auto 0;
  border-radius: 50%;
}

.sobre, .depoimentos, .faq, .produtos-digitais, .contato {
  padding: 4rem 2rem;
  text-align: center;
  max-width: 70%;
  margin: auto;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.sobre h2, .depoimentos h2, .faq h2, .produtos-digitais h2, .contato h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #88B48B;
}

.especialidades {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  margin: auto;
}

.especialidades-texto {
  flex: 1;
  max-width: 50%;
  padding: 2rem;
}

.especialidades-texto h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #88B48B;
}

.especialidades-texto ul {
  font-size: 1.2rem;
  color: #6F7B84;
  padding: 0 2rem;
  margin-bottom: 2rem;
  list-style: none;
}

.especialidades-texto ul li {
  margin-left: -1rem;
}

.list-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

.right-image {
  flex: 1;
  max-width: 50%;
}

.right-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.tcc {
  max-width: 80%;
  margin: auto;
  padding: 5rem 2rem;
  font-size: 1.1rem;
}

.tcc h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #88B48B;
  text-align: center;
}

.tcc-texto p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #6F7B84;
}

.grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  width: 80%;
}

.card {
  background: #fff; 
  color: #6F7B84;
  border-radius: 12px; 
  margin-bottom: 12px;
  padding: .5rem; 
  width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 0 0 calc(33.333% - 20px);
  max-width: 20%;
  text-align: left;
}

.card h3 {
  font-size: 18px; 
  margin-bottom: 10px;
}

.card p {
  font-size: 14px; 
  line-height: 1.5;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.cta-text {
  padding-bottom: 1rem;
}

.sobre {
  display: flex;
  flex-wrap: wrap;
  max-width: 70%;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: left;
  padding: 4rem 25rem;
  min-width: 100%;
  background-color: white;
  text-align: center;
}

.sobre .texto {
  flex: 1;
  min-width: 280px;
}

.cursive-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #8A7E74;
}

.sobre h2 {
  margin-bottom: 0;
}

.sobre .abordagem {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sobre p {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.sobre .imagem {
  flex: 1;
  max-width: 500px;
  min-height: 100vh;
}

.sobre img {
  max-height: 400px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
}

.processo {
  background-color: #8A7E74;
}

.container {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.processo .image {
  flex: 1;
  background: url('img/terapia.jpg') no-repeat center center;
  background-size: cover;
  min-height: 600px;
}

.processo .content {
  flex: 1;
  padding: 40px;
  max-width: 600px;
}

.processo h2 {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.processo p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.processo .btn {
  background-color: #88B48B;
}

.depoimentos {
  /* background-color: #A9C5AA; */
  background-image: url('img/fundo-depoimentos.png');
  color: #6F7B84;
  max-width: 100%;
  text-align: center;
  padding: 5rem;
}

.depoimentos h2 {
  color: #F9F9F9;
}

.depoimento {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  text-align: left;
}

.depoimento img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.comentario {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.nome {
  font-weight: 600;
  font-size: 0.95rem;
  color: #444;
}

.contato {
  /* background-color: #A9C5AA; */
  background-color: #9EA47F;
  color: white;
  text-align: center;
  max-width: 100%;
}

.contato h2 {
  color: white;
}

.contato p {
  font-size: 1.25rem;
  margin-bottom: .5rem;
  margin-top: .5rem;
}

.contato .btn {
  margin-top: 1.5rem;
  background-color: #2E4D42;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.contato .btn:hover {
  background-color: #1da851;
}

#doctoralia {
  text-decoration: none;
  color: #6F7B84;
  font-weight: bold;
}

.faq {
  padding: 4rem 20rem;
  background-color: #fff;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #e0d4cc;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  padding: 15px;
  color: #88B48B;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  color: #88B48B;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  color: #88B48B;
  font-size: 1rem;
}

.faq-answer p {
  margin: 10px 0;
  text-align: left;
}

.faq-question.active + .faq-answer {
  max-height: 300px;
}

.contatos {
  text-align: center;
}

.contatos h2 {
  font-size: 2rem;
  color: #5a3e36;
  margin-bottom: 10px;
}

.contatos p {
  color: #6a5048;
  margin-bottom: 30px;
}

.btn-contato {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  margin: 10px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.btn-contato img {
  width: 24px;
  height: 24px;
}

.btn-contato.whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-contato.whatsapp:hover {
  background-color: #1ebe5d;
}

.btn-contato.instagram {
  background-color: #E1306C;
  color: white;
}

.btn-contato.instagram:hover {
  background-color: #c42a5f;
}

.fixed-wpp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 10;
}

.fixed-wpp a img {
  width: 70px;
}

.fixed-wpp:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

footer {
  background-color: white;
  color: black;
  text-align: center;
  padding: 1rem;
  position: relative;
  height: 50px;
}

footer p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: max-content;
  top: 50%;
  transform: translate(-50%, -50%);
}

footer span {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

footer span a {
  color: #88B48B;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: color 0.3s;
  vertical-align: middle;
}

@media (max-width: 1920px) {
  header {
    padding: 2.5rem 5rem;
  }

  .hero {
    padding: 0rem 15rem;
  }

  .sobre {
    padding: 4rem 20rem;
  }

  .faq {
    padding: 4rem 10rem;
  }
}

@media (max-width: 1700px) {
  header {
    padding: 2.5rem 0;
  }

  .logo span {
    width: 100vw;
    text-align: center;
    margin-bottom: 1rem;
  }

  .shrink {
    padding: 1rem 0;
  }

  .hero {
    padding: 0rem 10rem;
  }

  .sobre {
    padding: 4rem 12rem;
  }

  .container {
    width: 90%;
  }

  .faq {
    padding: 4rem 2rem;
  }
}

@media (max-width: 1470px) {
  .hero {
    padding: 2rem 4rem;
  }
}

@media (max-width: 1280px) {
  header {
    justify-content: center;
  }

  .hero {
    padding: 2rem 0;
    justify-content: space-between;
    text-align: center;
    width: 100%;
    margin: auto;
  }

  .hero .text {
    max-width: 40%;
    text-align: start;
  }

  .hero .image {
    width: 50%;
    text-align: center;
  }

  .hero .image img {
    max-width: 100%;
  }

  .sobre .imagem {
    max-width: 75vw;
    min-height: 100vh;
  }
}

@media (max-width: 1100px) {
  nav ul li {
    display: none;
  }
  
  .logo img {
    display: none;
  }

  .container {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .shrink {
    padding: 1.5rem 0;
  }

  #cta-text {
    text-align: center;
  }

  .card p {
    text-align: center;
  }

  .sobre {
    padding: 4rem 5rem;
    text-align: center;
  }

  .sobre .imagem {
    max-width: 50vw;
    min-height: 50vh;
    margin: auto;
  }
  
  .sobre .texto p {
    text-align: start;
  }

  .especialidades {
    max-width: 90%;
  }

  footer {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  footer p,
  footer span {
    position: static;
    transform: none;
    width: auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .shrink {
    padding: 1.5rem 0;
  }

  .hero .image img {
    object-fit: cover;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .card {
    padding: 2rem 1rem;
  }

  .sobre {
    padding: 4rem 4rem;
  }

  .especialidades {
    flex-direction: column;
    align-items: center;
  }

  .especialidades-texto {
    max-width: 100%;
  }

  .right-image {
    max-width: 100%;
  }

  .faq {
    max-width: 100%;
  }

  .contato {
    padding: 2rem;
  }
}

@media (max-width: 450px) {
  .hero .text {
    max-width: 100%;
    margin-left: 0;
    padding: 1rem 2rem;
  }

  .sombra {
    width: 350px;
    height: 20px;
    background: radial-gradient(ellipse at left, rgba(0,0,0,0.2) 0%, transparent 80%);
    margin: -20px auto 0;
    border-radius: 50%;
  }
  
  .hero .image {
    padding-top: 50px; 
    width: 90%;
    margin: auto;
  }

  .grid {
    display: block;
  }

  .sobre {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .sobre .imagem {
    max-width: 75vw;
    min-height: 25vh;
  }

  .especialidades {
    padding: 0;
    max-width: 100%;
    margin-left: 0; 
  }

  .right-image {
    max-width: 90%;
    text-align: center;
  }

  .tcc {
    max-width: 100%;
  }

  .processo .container .image {
    display: none;
  }

  .depoimentos {
    padding: 2rem;
  }
}

@media (max-width: 400px) {
  .card {
    padding: 2rem 0;
  }

  .sobre {
    padding: 4rem 1rem;
  }

  .sobre img {
    width: 300px;
  }
}