/* =============================================
   RAQUEL LHULLIER — Psicóloga Infantojuvenil
   Identidade Visual: Criativa Leve
   Fontes: Raleway (títulos) + Poppins (corpo)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- TOKENS DE COR ---- */
:root {
  --teal:        #6DBFB8;
  --teal-light:  #A8DEDA;
  --teal-pale:   #E6F7F6;
  --green:       #8DC87A;
  --green-pale:  #EAF5E6;
  --purple:      #9B8EC4;
  --purple-pale: #EDE9F8;
  --blue:        #7BAED6;
  --blue-pale:   #E4EFF9;
  --peach:       #F5A98A;
  --peach-light: #FAD2CE;
  --peach-pale:  #FEF3F0;
  --cream:       #FBF9F4;
  --white:       #FFFFFF;
  --text-dark:   #3D3D3D;
  --text-mid:    #666666;
  --text-light:  #999999;
  --border:      #E8E3DA;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   48px;

  --shadow-sm: 0 2px 8px rgba(109,191,184,0.10);
  --shadow-md: 0 6px 24px rgba(109,191,184,0.15);
  --shadow-lg: 0 12px 40px rgba(109,191,184,0.18);

  --transition: 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TIPOGRAFIA ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--lg {
  padding: 100px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 16px rgba(109,191,184,0.35);
}
.btn--primary:hover {
  background: #5AADA6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109,191,184,0.40);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn--outline:hover {
  background: var(--teal-pale);
  transform: translateY(-2px);
}

.btn--peach {
  background: var(--peach);
  color: white;
  box-shadow: 0 4px 16px rgba(245,169,138,0.35);
}
.btn--peach:hover {
  background: #E8946F;
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}
.btn--whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

/* ---- HEADER / NAV ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 176px;
}

.header__logo img {
  height: 156px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav__link:hover,
.nav__link.active {
  color: var(--teal);
  background: var(--teal-pale);
}

.nav__cta {
  margin-left: 12px;
  padding: 10px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  padding: 80px 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--teal-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--peach-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero__content {
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--teal-light);
  border-radius: var(--radius-xl);
  padding: 6px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__badge::before {
  content: '✦';
  font-size: 0.65rem;
}

.hero__title {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero__title em {
  font-style: normal;
  color: var(--teal);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.7;
}

.hero__note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-lg);
}

.hero__bubble {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__bubble--1 {
  top: 40px;
  left: -20px;
  color: var(--teal);
  border-left: 3px solid var(--teal);
}

.hero__bubble--2 {
  bottom: 60px;
  right: -20px;
  color: var(--purple);
  border-left: 3px solid var(--purple);
}

/* ---- WAVE DIVIDERS ---- */
.wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave svg {
  display: block;
  width: 100%;
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card__icon--teal   { background: var(--teal-pale);   color: var(--teal); }
.card__icon--green  { background: var(--green-pale);  color: var(--green); }
.card__icon--purple { background: var(--purple-pale); color: var(--purple); }
.card__icon--blue   { background: var(--blue-pale);   color: var(--blue); }
.card__icon--peach  { background: var(--peach-pale);  color: var(--peach); }
.card__icon svg { width: 28px; height: 28px; display: block; }

/* ---- PILLAR CARDS ---- */
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pillar:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}

.pillar__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar__icon svg { width: 100%; height: 100%; display: block; }

.pillar__title {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.pillar__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}

/* ---- STEPS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--teal-light), var(--purple), var(--blue));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step:nth-child(1) .step__number { background: var(--teal); }
.step:nth-child(2) .step__number { background: var(--green); }
.step:nth-child(3) .step__number { background: var(--purple); }
.step:nth-child(4) .step__number { background: var(--blue); }

.step__title {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---- FAQ ACCORDION ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--teal-pale);
  color: var(--teal);
}

.faq-item.open .faq-question {
  background: var(--teal-pale);
  color: var(--teal);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--teal);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ---- FOTO / ABOUT BLOCK ---- */
.photo-block {
  position: relative;
}

.photo-block img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.photo-block__badge {
  position: absolute;
  bottom: -20px;
  left: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.photo-block__badge-icon {
  font-size: 1.8rem;
}

.photo-block__badge-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.photo-block__badge-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

.cta-banner .btn--white {
  background: white;
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-banner .btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ---- QUOTE ---- */
.quote {
  border-left: 4px solid var(--teal);
  padding-left: 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
}

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 24px 0;
}

.highlight-box--teal   { background: var(--teal-pale);   border-left: 4px solid var(--teal); }
.highlight-box--green  { background: var(--green-pale);  border-left: 4px solid var(--green); }
.highlight-box--purple { background: var(--purple-pale); border-left: 4px solid var(--purple); }
.highlight-box--peach  { background: var(--peach-pale);  border-left: 4px solid var(--peach); }

/* ---- TAG CHIPS ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: var(--radius-xl);
  padding: 6px 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

/* ---- CREDENTIAL LIST ---- */
.credential-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.credential__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
}

.credential__text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---- SECTION BACKGROUNDS ---- */
.bg-cream   { background-color: var(--cream); }
.bg-teal    { background-color: var(--teal-pale); }
.bg-green   { background-color: var(--green-pale); }
.bg-purple  { background-color: var(--purple-pale); }
.bg-white   { background-color: var(--white); }

/* ---- TEXT UTILITIES ---- */
.text-center  { text-align: center; }
.text-teal    { color: var(--teal); }
.text-purple  { color: var(--purple); }

/* ---- SECTION HEADER ---- */
.section-header {
  margin-bottom: 56px;
}

.section-header.text-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- PAGE HERO (interior pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--blue-pale) 100%);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  margin-bottom: 16px;
  height: 156px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer__crp {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.footer__title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--teal-light);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer__contact-icon {
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.footer__contact-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.6); flex-shrink: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ---- VETORES DE DRAGÕES ---- */


/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* ---- MOBILE MENU ---- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--border);
  padding: 16px;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav__link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before { display: none; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__image {
    order: -1;
  }

  .hero__image img {
    max-width: 340px;
    border-radius: var(--radius-lg);
    margin: 0 auto;
  }

  .hero__bubble { display: none; }

  .hero__content {
    padding-bottom: 48px;
  }

  .nav { display: none; }
  .hamburger { display: flex; }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-banner {
    padding: 40px 28px;
  }

  .section {
    padding: 60px 0;
  }

  .section--lg {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }
}
