html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 140px;
}

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

.container {
  width: 92%;        /* quase largura total */
  max-width: 1400px; /* limite elegante */
  margin: 0 auto;    /* centraliza */
}

/* VARIÁVEIS */
:root {
  --roxo: #9B55A4;
  --roxo-escuro: #820378;
  --azul: #0085D4;
  --fundo: #D6C7D6;
  --branco: #FFFFFF;
  --gradiente: linear-gradient(90deg, #800075, #A64ACC, #B596CF, #D399FF);
  
}

/* BODY */
body {
  font-family: Calibri, Arial, sans-serif;
  background: var(--fundo);
  color: #2E2E2E;
}

/* ================= HEADER ================= */

/* HEADER */
.topo {
  background: #9B55A4;
  color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 30px 50px;
  
  position: sticky;
  top: 0;
  z-index: 1000;

  /* ✨ NOVO */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

/* LADO ESQUERDO */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icone {
  width: 60px;
}

.logo-texto h2 {
  font-size: 22px;
  font-weight: bold;
}

.logo-texto span {
  font-size: 16px;
  font-weight: bold;
}

/* LADO DIREITO */
.menu-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* BOTÃO */
.btn-header {
  background: #0085D4;
  color: white;

  padding: 14px 28px; /* maior */
  border: 2px solid white;
  border-radius: 10px;

  text-decoration: none;
  margin-bottom: 20px;

  font-size: 20px;
  font-weight: bold;

  text-transform: uppercase; /* 🔥 aqui */
  letter-spacing: 1px; /* deixa mais elegante */
  
  transition: 0.3s ease;
  
.btn-header:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
  
}

/* MENU */
nav a {
  color: white;
  text-decoration: none;
  margin-left: 18px;
  letter-spacing: 0.5px;
  font-size: 22px;
}

/* ================= HERO ================= */

.hero {
  background: var(--roxo-escuro);
  color: var(--branco);
  
  position: relative;

  text-align: center;

  padding: 80px 40px; /* 👈 aumenta lateral */
  margin: 30px 30px 0/* 👈 cria respiro lateral leve */
}
  
.hero-conteudo {
  display: flex;
  justify-content: center; /*centraliza conteúdo*/
  align-items: center;
  gap: 40px;
}

.hero h1 {
  font-family: "Calisto MT", serif;
  font-size: 42px;
}

.hero-texto {
  max-width: 500px;
  margin: 0 auto;
  text-align: center; /* 👈 centraliza texto */
}

.hero-imagem {
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
}

.hero-imagem img {
  width: 260px;
}

.hero p {
  font-size: 25px;
  margin: 10px 0 20px;
  opacity: 0.9;
}

/* BOTÃO PADRÃO */
.botao {
  background: var(--azul);
  color: var(--branco);
  padding: 14px 28px;
  border: 2px solid var(--branco);
  border-radius: 10px;
  
  display: inline-flex;
  align-items: center;
  gap: 10px;
  
  text-decoration: none;
  font-size: 18px;
}

.botao:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.botao img {
  width: 20px;
  transition: transform 0.3s;
}

.botao:hover img {
  transform: rotate(-10deg) scale(1.1);
}

/* ================= FRASE ================= */

.frase {
  padding: 100px 50px;
  margin: 0px 30px 0; /* 👈 cria respiro lateral leve */
  background-color: #9B55A4;
}

.frase {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #9B55A4;
}

.frase-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.frase-texto {
  font-family: 'Brush Script MT', cursive;
  font-size: 60px;
  color: #ffffff;
  line-height: 1.0;
  margin: 0;
  max-width: 1000px;
  padding-right: 90px;
}

.frase-autor {
  margin-top: 10px;
  text-align: right;
  padding-right: 150px;
  color: #ffffff;
  font-size: 40px;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  letter-spacing: 0.5px;
}

.frase-onda {
  position: absolute;

  bottom: -80px;

  right: 40px;        /* 👈 AGORA ela vai pra direita */
  left: auto;      /* 👈 remove qualquer centralização antiga */

  width: 62%;
  max-width: 700px;

  opacity: 0.9;

  z-index: 1;
  transform: none; /* 👈 mata o translateX se existir */
}

.frase-texto,
.frase-autor {
  position: relative;
  z-index: 2; /* texto fica na frente */
}



/* ================= BLOCOS ================= */

.bloco {
  padding: 100px 50px;
  margin:  0px 30px;
}

#sobre{
  padding-top: 70px;
  padding-bottom: 70px;
}

/* BLOCO COM GRADIENTE */
.sobre-gradiente {
  background: linear-gradient(90deg, #6f0068 0%, #8e2aa6 35%, #b67ad0 70%, #dcc4ea 100%);
  color: white;
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.sobre-texto {
  width: 60%;
  padding-left: 15px;
}

.sobre-foto {
  width: 40%;
  display: flex;
  justify-content: center;
  position: relative;
}

.onda-sobre {
  position: absolute;
  width: 850px;
  height: auto;

  right: 50px;
  bottom: -97px;

  z-index: 1;
}

.sobre-foto img:first-child{
  width: 420px;
  height: 420px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/*METODOS DE ATENDIMENTO*/

.bloco-metodos{
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #9B55A4;
  color: white;
}

.bloco-metodos h2{
  text-align: center;
}

.bloco-metodos p{
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

/*PÚBLICO-ALVO*/

.bloco-publico {
  background: linear-gradient(90deg, #6f0068 0%, #8e2aa6 35%, #b67ad0 70%, #dcc4ea 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}

.publico-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.publico-texto {
  width: 68%;
  padding-left: 15px;
}

.publico-mandala {
  width: 35%;
  display: flex;
  justify-content: flex-start;
}

.publico-mandala img {
  width: 380px;
  height: auto;
  margin-left: -60px;
}

/*AREAS DE ATUAÇÃO*/

.areas {
  padding: 80px 50px;
  margin: 0 30px;

  background-color: #9B55A4;
  color: white;
}

.areas-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.areas-texto {
  width: 50%;
}

.areas-lateral {
  width: 45%;

  display: flex;
  flex-direction: column;
  align-items: center;

  position: relative;
}

/* CONTAINER GERAL */
.areas-imagem {
  position: relative;
  margin-top: 20px;
}

/* MÁSCARA CIRCULAR */
.foto-mascara {
  width: 420px;
  height: 420px;

  border-radius: 50%;
  overflow: hidden;

  position: relative;

  z-index: 2;
}

/* FOTO INTERNA */
.foto-mascara img {

  position: absolute;

  width: 160%;
  height: auto;

  left: -180px;
  top: -200px;
}

/* ONDA */
.areas-imagem .onda {
  position: absolute;

  width: 780px;
  max-width: none;

  right: -1px;
  bottom: -70px;

  z-index: 3;
  
  pointer-events: none;
}

.lista-areas {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.lista-areas li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
}

.lista-areas li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;

  width: 22px;
  height: 22px;

  background-image: url("mandala-completa.svg");
  background-size: cover;
  background-repeat: no-repeat;
}


/*COMO FUNCIONA A TERAPIA ONLINE?*/

/* TERAPIA ONLINE */

.terapia{
  background: linear-gradient(90deg, #6f0068 0%, #8e2aa6 35%, #b67ad0 70%, #dcc4ea 100%);
  
  color: white;

  position: relative;
  overflow: hidden;

  padding-top: 30px;
  padding-bottom: 100px;
}

.terapia-conteudo{
  padding-left: 40px;
}

/* ONDA */

.onda-terapia {
  position: absolute;

  width: 800px;

  right: 30px;
  bottom: 10px;

  z-index: 2;
}

/*QUAIS OS BENEFÍCIOS DA TERAPIA ONLINE?*/

.beneficios{
  padding: 80px 50px;
  margin: 0 30px;

  background-color: #9B55A4;
  color: white;
  
  padding-top: 30px;
  padding-bottom: 60px;
}

/* TÍTULO */
.areas h2 {
  font-family: "Calisto MT", serif;
  text-align: center;
  font-size: 44px;
  margin-bottom: 20px;
}

/* TEXTO */
.areas p {
  font-family: Calibri, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* LISTA */
.areas li {
  font-family: Calibri, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.5;
}

/* TÍTULOS */
.bloco h2 {
  font-family: "Calisto MT", serif;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
}

/* TEXTOS */
.bloco p {
  font-family: Calibri, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* LISTA */
.bloco li {
  font-family: Calibri, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.6;
}


ul {
  margin-top: 15px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* ================= FOOTER ================= */

footer {
  background: #9B39A4;
  color: white;
  
  position: relative;
  
  padding: 10px 40px;
}

/* CONTAINER PRINCIPAL */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  position: relative;
}

/* ESQUERDA */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  
  position: relative;
  top: -60px;
}

/* ÍCONE + TEXTO */
.footer-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: white;
  text-decoration: none;

  font-size: 20px;
}

/* ÍCONES */
.footer-item img {
  width: 20px;
}

/* CENTRO */
.footer-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-name h3 {
  font-family: "Calisto MT", serif;
  font-size: 48px;
  color: white;
}

/* DIREITA */
.footer-mandala img {
  width: 260px;
  
  position: relative;
  top: 10px;
  right: -40px;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    display: none;
  }
}