/* ================= CSS (styles.css) ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Zain, sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.logo_texto {
    display: flex;
    flex-direction: column;
    justify-content: initial;
    align-items: initial;
}

.logo_texto h2 {
    font-size: 3vh;
}

.logo_texto span
{
  color: #fa75e2;
  font-weight: 10;
  font-size: 5vh;
  font-family: Cal Sans, sans-serif;
}

.logo_texto h1 {
    font-size: 5vh;
    font-family: Cal Sans, sans-serif;
    font-weight: 10;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

nav a:hover {
  color: #fa75e2;
}

.hero {
  position: relative;
  padding: 160px 0;
  height: 100%;
  width: auto;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* ================= CORAÇÕES HERO ================= */

.hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hearts span {
  position: absolute;
  bottom: -40px;  
  font-size: 18px;
  animation: floatHearts 12s linear infinite;
  opacity: 0;
}

.hearts span:nth-child(1){ left:10%; animation-delay:0s;}
.hearts span:nth-child(2){ left:25%; animation-delay:2s;}
.hearts span:nth-child(3){ left:50%; animation-delay:4s;}
.hearts span:nth-child(4){ left:70%; animation-delay:6s;}
.hearts span:nth-child(5){ left:85%; animation-delay:8s;}

@keyframes floatHearts {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-600px);
    opacity: 0;
  }
}

/* ================= MOBILE CORAÇÕES ================= */

@media (max-width: 768px) {

  .hearts span {
    font-size: 14px;
    animation: floatHeartsMobile 10s linear infinite;
  }

  .hearts span:nth-child(4),
  .hearts span:nth-child(5) {
    display: none;
  }

  @keyframes floatHeartsMobile {
    0% {
      transform: translateY(120vh);
      opacity: 0;
    }
    30% {
      opacity: 0.6;
    }
    100% {
      transform: translateY(-80px);
      opacity: 0;
    }
  }

}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/hero_corr.png");
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.1);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: -1;
}

.hero h2 {
    font-size: 8vh;
}

.hero p {
    font-size: 4vh;
}

.section {
  padding: 80px 0;
}

.light {
  background: #fafafa;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.btn {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 25px;
  border: 1px solid white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
  transition: 0.3s;
}

.titulo-rosa
{
  color: #fa75e2;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  background-color: #fa75e2;
  border: 1px solid white;
  color: white;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form input,
.form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: 0.3s;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #6c8ea4;
}

.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 25px 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
}

/* animação scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= SOBRE COM CARROSSEL ================= */

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.10);
  border: none;
  font-size: 22px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.30);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.prev { left: 10px; }
.next { right: 10px; }

.sobre-texto h2 {
  margin-bottom: 4vh;
  font-size: 8vh;
  text-align: center;
}

.sobre-texto p {
  line-height: 1.5;
  font-size: 3vh;
  text-align: justify;

}

/* ================= ABORDAGEM ================= */

.abordagem-titulo {
  text-align: center;
  font-size: 8vh;
  margin-bottom: 3vh;
}

.abordagem-intro {
  text-align: center;
  font-size: 3vh;
  max-width: 800px;
  margin: auto;
  margin-bottom: 6vh;
}

.abordagem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-bottom: 6vh;
}

.abordagem-item {
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.abordagem-item:hover {
  transform: translateY(-6px);
}

.abordagem-item h3 {
  margin: 10px 0;
  font-size: 3vh;
}

.abordagem-item p {
  font-size: 2.4vh;
  line-height: 1.5;
}

.abordagem-icone {
  font-size: 4vh;
}

.abordagem-texto {
  text-align: center;
  font-size: 2.8vh;
  max-width: 850px;
  margin: auto;
  line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .abordagem-titulo {
    font-size: 5vh;
  }

  .abordagem-intro {
    font-size: 2.2vh;
  }

  .abordagem-texto {
    font-size: 2.2vh;
  }

}

/* ================= PSICOTERAPIA ================= */

/* ================= PSICOTERAPIA - LAYOUT DIFERENTE ================= */

.psicoterapia-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.psicoterapia-texto h2 {
  font-size: 8vh;
  margin-bottom: 3vh;
}

.psicoterapia-texto p {
  font-size: 3vh;
  line-height: 1.6;
  margin-bottom: 2vh;
  text-align: justify;
}

/* coluna lateral */
.psicoterapia-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background: #fafafa;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.info-titulo {
  font-size: 2.2vh;
  color: #777;
}

.info-valor {
  font-size: 3.5vh;
  margin-top: 5px;
}

/* responsivo */
@media (max-width: 900px) {
  .psicoterapia-layout {
    grid-template-columns: 1fr;
  }

  .psicoterapia-texto h2 {
    text-align: center;
  }

  .psicoterapia-texto p {
    font-size: 2.3vh;
  }

  .info-valor {
    font-size: 3vh;
  }
}

/* ================= CONTATO WHATSAPP ================= */

.contato {
  text-align: center;
}

.contato-titulo {
  font-size: 8vh;
  margin-bottom: 3vh;
}

.contato-texto {
  font-size: 3vh;
  max-width: 600px;
  margin: auto;
  margin-bottom: 5vh;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 3vh;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.contato-botoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* EMAIL */
.email-btn {
  display: inline-block;
  background: #6c8ea4;
  color: white;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 3vh;
  text-decoration: none;
  transition: 0.3s;
}

.email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* INSTAGRAM */
.instagram-btn {
  display: inline-block;
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color: white;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 3vh;
  text-decoration: none;
  transition: 0.3s;
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.whatsapp-btn:hover::after,
.email-btn:hover::after,
.instagram-btn:hover::after {
  opacity: 1;
  margin-left: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contato-botoes {
    flex-direction: column;
    align-items: center;
  }

  .email-btn,
  .instagram-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px;
    font-size: 2.2vh;
  }
}

/* RESPONSIVO SOBRE */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .carousel img {
    height: 300px;
  }
}

/* RESPONSIVO MENU */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  /* ================= MOBILE AJUSTES (SEM ALTERAR DESKTOP) ================= */
@media (max-width: 768px) {

    .menu-toggle {
    position: relative;
    z-index: 2000;
  }

  /* evita que o menu cubra o botão */
  nav {
    position: relative;
    z-index: 1500;
  }

  nav ul {
    z-index: 1400;
  }
  /* HERO */
  .hero {
    padding: 120px 0;
  }

  .hero h2 {
    font-size: 4vh;
    line-height: 1.2;
  }

  .logo_texto h1
  {
    font-size: 1.5rem;
  }

    .logo_texto span
  {
    font-size: 1.5rem;
  }

  .logo_texto

  .hero p {
    font-size: 2.2vh;
  }

  /* SOBRE - carrossel em cima */
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .carousel {
    margin-bottom: 20px;
  }

  .carousel img {
    height: 260px;
  }

  .sobre-texto h2 {
    font-size: 4.5vh;
  }

  .sobre-texto p {
    font-size: 2.2vh;
  }

  /* ABORDAGEM */
  .abordagem-grid {
    grid-template-columns: 1fr;
  }

  .abordagem-titulo {
    font-size: 4.5vh;
  }

  .abordagem-intro {
    font-size: 2.2vh;
  }

  .abordagem-texto {
    font-size: 2.2vh;
  }

  /* PSICOTERAPIA */
  .psicoterapia-layout {
    grid-template-columns: 1fr;
  }

  .psicoterapia-texto h2 {
    font-size: 4.5vh;
    text-align: center;
  }

  .psicoterapia-texto p {
    font-size: 2.2vh;
  }

  .psicoterapia-info {
    margin-top: 20px;
  }

  .info-box {
    text-align: center;
  }

  .info-valor {
    font-size: 3vh;
  }

  /* CONTATO */
  .contato-titulo {
    text-align: center;
    font-size: 4.5vh;
  }

  .contato-texto {
    font-size: 2.2vh;
  }

  .whatsapp-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0 auto;
    text-align: center;
    padding: 14px;
    font-size: 2.2vh;
  }

 /* MOBILE */
@media (max-width: 768px) {
  .contato-botoes {
    flex-direction: column;
    align-items: center;
  }

  .email-btn,
  .instagram-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px;
    font-size: 2.2vh;
  }
}
}
}