:root {
  --azul-tiffany: #00B4D8;
  --azul-tiffany-escuro: #0096C7;
  --palha: #F2E8D5;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--palha);
  color: var(--azul-tiffany);
  line-height: 1.6;
}

/* HEADER */
header {
  background: var(--palha);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h2 {
  color: var(--azul-tiffany);
}

header nav a {
  color: var(--azul-tiffany);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover {
  color: var(--azul-tiffany-escuro);
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* HERO */
.hero {
  background: var(--palha);
  padding: 100px 20px;
  text-align: center;
}

/* FRASES */
.frase-destaque {
  display: block;
  text-transform: uppercase;
  color: var(--azul-tiffany);
  letter-spacing: 1.6px;
  margin-bottom: 14px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.frase-destaque:hover {
  color: var(--azul-tiffany-escuro);
  transform: scale(1.06);
}

/* BOTÃO */
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 36px;
  background: var(--azul-tiffany);
  color: white;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: var(--azul-tiffany-escuro);
  transform: translateY(-2px);
}

/* SOBRE */
.sobre-psicologa {
  background: var(--palha);
  padding: 60px 8%;
}

.sobre-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* 🔧 CORREÇÃO AQUI */
.slider {
  width: 420px;
  height: 520px;
  overflow: hidden;
  border-radius: 18px;
  position: relative; /* ESSENCIAL */
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--palha);
}

/* SETAS */
.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

/* 🔧 POSICIONAMENTO CORRETO */
.seta.esquerda {
  left: 10px;
}

.seta.direita {
  right: 10px;
}

/* TEXTO */
.sobre-texto p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--azul-tiffany);
}

/* REDES */
.redes {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.btn-social {
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-social.instagram {
  background: #e1306c;
}

.btn-social.whatsapp {
  background: #25d366;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: var(--palha);
  color: var(--azul-tiffany);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .sobre-wrapper {
    flex-direction: column;
  }
}
/* === CORREÇÃO MOBILE URGENTE === */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Containers grandes */
.container,
.section,
.wrapper {
  max-width: 100%;
  padding: 16px;
}

/* FLEX quebrando no mobile */
@media (max-width: 768px) {
  .flex,
  .row,
  .grid {
    flex-direction: column !important;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
  }

  button,
  a.button {
    width: 100%;
  }
}
/* =========================
   AJUSTES EXCLUSIVOS MOBILE
   TEXTO + IMAGENS
   ========================= */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    text-align: center;
  }

  .hero p,
  .frase-destaque {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  /* BOTÃO */
  .btn {
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 14px;
  }

  /* SOBRE */
  .sobre-wrapper {
    flex-direction: column;
    gap: 28px;
  }

  .sobre-texto {
    text-align: center;
  }

  .sobre-texto h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .sobre-texto p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* IMAGENS / SLIDER */
  .slider {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
  }

  .slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* SETAS DO SLIDER */
  .seta {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  /* REDES */
  .redes {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-social {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  /* FOOTER */
  footer {
    font-size: 0.9rem;
    padding: 16px;
  }
}
.btn-workshop-whatsapp {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  background-color: #25D366; /* WhatsApp */
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-workshop-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
