/* ===== Palette inspired by TT photo ===== */
:root {
  --bg: #FDFBF9;
  --bg-alt: #FFF5F0;
  --bg-white: #FFFFFF;
  --terracotta: #C85A28;
  --terracotta-dark: #A84820;
  --rose: #E8B4A8;
  --rose-light: #F8E8E4;
  --brick: #B84A32;
  --text: #2D2D2D;
  --text-muted: #6B6B6B;
  --primary: #C85A28;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(45, 45, 45, 0.08);
  --shadow-lg: 0 12px 40px rgba(45, 45, 45, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --google-blue: #4285F4;
  --google-star: #FABB05;
  --ig-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { width: min(1140px, 92%); margin-inline: auto; }
.script { font-family: var(--font-heading); font-style: italic; color: var(--terracotta); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 90, 40, 0.35);
}
.btn--primary:hover { background: var(--terracotta-dark); }
.btn--outline {
  background: var(--white); color: var(--terracotta);
  border: 2px solid var(--rose);
}
.btn--outline:hover { background: var(--rose-light); border-color: var(--terracotta); }
.btn--lg { padding: 1rem 2rem; }
.btn--instagram { background: var(--ig-gradient); color: var(--white); box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35); }
.btn--ig-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ig-outline:hover { background: rgba(255,255,255,0.15); }
.btn__icon { flex-shrink: 0; }
.btn--whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: btnBounce 2s ease-in-out infinite;
}
.btn--whatsapp:hover {
  background: #20bd5a;
  transform: scale(1.08);
  animation-play-state: paused;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
@keyframes btnBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 180, 168, 0.3);
  transition: box-shadow var(--transition);
}
.hero .header {
  position: sticky;
  flex-shrink: 0;
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo__text { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text); line-height: 1.15; }
.logo__text small { display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav__list { display: flex; gap: 1.1rem; flex-wrap: nowrap; }
.nav__list a { font-size: 0.85rem; font-weight: 500; transition: color var(--transition); }
.nav__list a:hover { color: var(--terracotta); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--transition); }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  padding: 0 0 60px; overflow: hidden; background: var(--bg);
}
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; animation: float 10s ease-in-out infinite; }
.blob--1 { width: 450px; height: 450px; background: var(--rose); top: -5%; right: -10%; }
.blob--2 { width: 350px; height: 350px; background: #FFE8DC; bottom: 5%; left: -5%; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(15px,-15px); } }
.hero__inner {
  flex: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.5rem;
  align-items: center; align-self: center; position: relative; z-index: 1;
}
.hero__image { max-width: 320px; justify-self: start; }
.hero__tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem;
  padding: 0.4rem 1rem; background: var(--rose-light); border-radius: 50px;
}
.hero__title .script { font-size: clamp(2rem, 4.5vw, 3rem); font-style: normal; font-weight: 700; color: var(--text); }
.hero__subtitle { color: var(--text-muted); max-width: 480px; margin: 1rem 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero__actions .btn {
  width: 11rem;
  justify-content: center;
  padding-inline: 1rem;
  font-size: 0.875rem;
}
.hero__actions .btn--whatsapp { border: 2px solid transparent; }
.hero__rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
.hero__rating .google-icon { width: 16px; height: 16px; margin-left: 0; flex-shrink: 0; }
.hero__image-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--white); max-width: 300px; aspect-ratio: 736 / 960; }
.hero__image-frame img { width: 100%; height: 166.67%; display: block; object-fit: cover; object-position: center center; margin-top: -33.33%; }

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--white { background: var(--bg-white); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header h2 { font-size: clamp(1.75rem, 3.5vw, 2.3rem); }
.section__sub { color: var(--text-muted); margin-top: 0.5rem; }
.section__cta { text-align: center; margin-top: 2.5rem; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.cards-grid--4 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-inline: auto; }
.card {
  background: var(--white); padding: 1.2rem 1.4rem; border-radius: var(--radius-sm);
  font-size: 0.93rem; font-weight: 500; box-shadow: var(--shadow);
  border-left: 4px solid var(--terracotta); transition: transform var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ===== Google Reviews ===== */
.section--google { background: #F8F9FA; }
.google-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.google-logo {
  width: 56px; height: 56px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); font-size: 1.75rem; font-weight: 700;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.google-logo span { -webkit-text-fill-color: transparent; }
.google-header h2 { font-family: var(--font-body); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.35rem; }
.google-score { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.google-score__num { font-size: 1.5rem; font-weight: 700; }
.google-score__count { color: var(--text-muted); font-size: 0.9rem; }
.google-header__sub { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }
.google-stars { color: var(--google-star); letter-spacing: 1px; }
.google-stars--sm { font-size: 0.85rem; }

.google-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.google-card {
  background: var(--white); border-radius: var(--radius-sm); padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  border: 1px solid #E8EAED; transition: box-shadow var(--transition);
}
.google-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.google-card__head { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.google-card__head strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.google-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.google-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: hsl(var(--hue, 200), 55%, 88%); color: hsl(var(--hue, 200), 40%, 35%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.google-icon { margin-left: auto; flex-shrink: 0; }
.google-card--hidden { display: none; }
.google-card--hidden.is-visible { display: block; animation: googleIn 0.4s ease; }
@keyframes googleIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.google-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.btn--google-outline {
  background: var(--white); color: var(--text);
  border: 2px solid #E8EAED; box-shadow: var(--shadow);
}
.btn--google-outline:hover { background: #F8F9FA; border-color: var(--google-blue); color: var(--google-blue); }
#googleLoadMore.is-hidden { display: none; }

/* ===== Methodology TCC ===== */
.section--method { background: linear-gradient(135deg, var(--rose-light) 0%, var(--bg) 50%, #FFF 100%); }
.method { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.method__tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.75rem;
}
.method__content h2 { font-size: 1.85rem; margin-bottom: 1.25rem; }
.method__content p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.tcc-cycle { display: flex; flex-direction: column; gap: 0; }
.tcc-node {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); border-left: 4px solid var(--terracotta);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tcc-node:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.tcc-node--emotion { border-left-color: var(--rose); }
.tcc-node--action { border-left-color: var(--brick); }
.tcc-node h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.tcc-node p { font-size: 0.85rem; color: var(--text-muted); }
.tcc-connector { width: 2px; height: 24px; background: linear-gradient(var(--rose), var(--terracotta)); margin-left: 2rem; }

/* About */
.about { display: flex; flex-direction: column; gap: 2rem; }
.about__intro {
  display: grid; grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 2.5rem; align-items: center;
}
.about__image {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1; max-width: 300px; width: 100%; margin-inline: auto;
}
.about__image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 38%; }
.about__text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.about__details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.about__block {
  background: var(--bg-alt); border-radius: var(--radius); padding: 1.5rem;
}
.about__block-title {
  font-size: 1.05rem; font-family: var(--font-body); font-weight: 700;
  margin-bottom: 1rem; color: var(--terracotta-dark);
}
.psychologists { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.psychologist {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.5rem; padding: 1rem; background: var(--white); border-radius: var(--radius-sm);
}
.psychologist__badge {
  width: 42px; height: 42px; background: var(--terracotta); color: var(--white);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: bold;
}
.psychologist h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 700; }
.psychologist p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.specializations__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.specializations__list li {
  padding: 0.4rem 0.9rem; background: var(--white); border-radius: 50px;
  font-size: 0.82rem; color: var(--text); font-weight: 500;
  border: 1px solid var(--rose-light); line-height: 1.4;
}
.modalities { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.25rem; }
.modality-pill {
  padding: 0.4rem 1rem; background: var(--rose-light); color: var(--terracotta-dark);
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
}

/* ===== Instagram ===== */
.section--instagram {
  background: #0f0f0f;
  background-image: radial-gradient(ellipse at 20% 0%, rgba(131,58,180,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(225,48,108,0.2) 0%, transparent 50%);
  color: var(--white);
}
.instagram-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 1rem; }
.instagram-brand { display: flex; align-items: center; gap: 1rem; }
.instagram-brand__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--ig-gradient);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.instagram-brand h2 { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; }
.instagram-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.instagram-feed {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  max-width: 540px; margin-inline: auto;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.insta-post { display: block; position: relative; aspect-ratio: 1; overflow: hidden; background: #1a1a1a; }
.insta-post--hidden { display: none; }
.insta-post--hidden.is-visible { display: block; animation: instaIn 0.4s ease; }
@keyframes instaIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.insta-post__media, .insta-post img { width: 100%; height: 100%; object-fit: cover; }
.insta-post__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition); color: var(--white);
}
.insta-post:hover .insta-post__overlay { opacity: 1; }
.insta-post__caption { display: none; }
.instagram-actions { text-align: center; margin-top: 1rem; }
.section--instagram { padding: 3rem 0; }
#instagramLoadMore.is-hidden { display: none; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  column-gap: 1.25rem;
  row-gap: 0.65rem;
  max-width: 640px;
  margin-inline: auto;
  align-items: stretch;
}
.gallery__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: 0;
  margin-left: 0.5rem;
}
.gallery__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; min-height: 0; }
.gallery__item--large {
  margin-left: -2cm;
  margin-right: 0;
  width: calc(100% + 2cm);
  z-index: 1;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; transition: transform 0.5s; }
.gallery__stack .gallery__item img { min-height: 0; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--large:hover img { transform: scale(1.04); }
.gallery__address { text-align: center; margin-top: 1.25rem; color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }

/* FAQ */
.section--faq { padding: 2.5rem 0; }
.container--narrow { max-width: 640px; }
.section__header--compact { margin-bottom: 1.25rem; }
.section__header--compact h2 { font-size: clamp(1.35rem, 2.5vw, 1.65rem); }
.faq { max-width: 100%; margin-inline: auto; }
.faq--compact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.faq__item { background: var(--white); border-radius: 8px; margin-bottom: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.06); overflow: hidden; }
.faq__item summary { padding: 0.75rem 1rem; font-weight: 600; font-size: 0.82rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.1rem; color: var(--terracotta); transition: transform var(--transition); flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 1rem 0.85rem; color: var(--text-muted); font-size: 0.8rem; line-height: 1.45; }

/* ===== Timeline / Como Come�ar ===== */
.section--steps { background: var(--bg-white); overflow: hidden; }
.timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative; margin-top: 2rem;
}
.timeline__line {
  position: absolute; top: 48px; left: 16.66%; right: 16.66%; height: 4px;
  background: var(--rose-light); border-radius: 4px; z-index: 0;
}
.timeline__progress {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--terracotta), var(--rose));
  border-radius: 4px; transition: width 0.6s ease;
}
.timeline__card {
  position: relative; z-index: 1; text-align: center; padding: 0 1rem 2rem;
  cursor: pointer; transition: transform var(--transition);
}
.timeline__card:hover { transform: translateY(-6px); }
.timeline__icon {
  width: 72px; height: 72px; margin: 0 auto 1rem;
  background: var(--white); border: 3px solid var(--rose-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.4s ease;
  box-shadow: var(--shadow);
}
.timeline__card.is-active .timeline__icon,
.timeline__card:hover .timeline__icon {
  background: var(--terracotta); border-color: var(--terracotta); color: var(--white);
  box-shadow: 0 8px 24px rgba(200, 90, 40, 0.35); transform: scale(1.08);
}
.timeline__step {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.5rem;
}
.timeline__card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; font-family: var(--font-body); }
.timeline__card p {
  font-size: 0.9rem; color: var(--text-muted); max-height: 0; overflow: hidden;
  opacity: 0; transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s;
}
.timeline__card.is-active p,
.timeline__card:hover p { max-height: 120px; opacity: 1; margin-top: 0.25rem; }

/* ===== Contact Form ===== */
.section--contact { background: var(--bg-alt); }
.contact {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start;
  max-width: 920px; margin-inline: auto;
}
.contact__intro h2 { font-size: clamp(1.75rem, 3.5vw, 2.3rem); margin-bottom: 0.75rem; }
.contact__sub { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.contact__details { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; color: var(--text-muted); }
.contact__details a { color: var(--terracotta); font-weight: 600; }
.contact__details a:hover { text-decoration: underline; }
.contact-form {
  background: var(--white); padding: 2rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(232, 180, 168, 0.35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--rose-light);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.93rem;
  color: var(--text); background: var(--bg); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200, 90, 40, 0.12);
}
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) { border-color: var(--brick); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.contact-form .btn { width: 100%; justify-content: center; display: inline-flex; }

/* Footer */
.footer { background: #1A1A1A; color: rgba(255,255,255,0.8); padding-top: 4rem; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer .logo__text { color: var(--white); }
.footer .logo__text small { color: var(--rose); }
.footer__brand p { margin-top: 1rem; font-size: 0.93rem; line-height: 1.6; color: rgba(255,255,255,0.6); }
.footer__service { margin-top: 0.75rem !important; color: rgba(255,255,255,0.78) !important; }
.footer h3 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,0.7); font-size: 0.93rem; transition: color var(--transition); }
.footer a:hover { color: var(--rose); }
.footer ul li { margin-bottom: 0.6rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.2rem 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer__legal { line-height: 1.6; }
.footer__legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom .container { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
.footer__credit { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__credit.is-bouncing { animation: footerCreditBounce 1.1s ease; }
.footer .footer__credit-link {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(200, 90, 40, 0.6), 0 0 18px rgba(168, 72, 32, 0.4);
  transition: color var(--transition), text-shadow var(--transition);
}
.footer .footer__credit-link:hover {
  color: var(--terracotta);
  text-shadow: 0 0 10px rgba(200, 90, 40, 0.85), 0 0 24px rgba(232, 180, 168, 0.5);
}
@keyframes footerCreditBounce {
  0%, 45%, 100% { transform: translateY(0); }
  12% { transform: translateY(-14px); }
  24% { transform: translateY(0); }
  33% { transform: translateY(-9px); }
}

/* Legal */
.legal-page { padding: 110px 0 4rem; }
.legal-page h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 0.5rem; }
.legal-page h2 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--text); }
.legal-page p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.legal-page a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--terracotta-dark); }
.legal-page__updated { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }
.legal-page__list { margin: 0 0 1rem 1.25rem; color: var(--text-muted); }
.legal-page__list li { margin-bottom: 0.45rem; line-height: 1.6; list-style: disc; }
.legal-page__cta { margin-top: 2.5rem; }
.legal-page__back { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* WhatsApp */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: var(--white); padding: 0.85rem;
  border-radius: 50%; width: 56px; height: 56px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: btnBounce 2s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.whatsapp-float__label { display: none; }
.whatsapp-float:hover {
  transform: scale(1.08);
  animation-play-state: paused;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  background: #20bd5a;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: 0.15s; }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner, .method { grid-template-columns: 1fr; }
  .about__intro { grid-template-columns: 1fr; text-align: center; }
  .about__details { grid-template-columns: 1fr; }
  .psychologists { grid-template-columns: 1fr; }
  .modalities { justify-content: center; }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__rating { justify-content: center; }
  .contact { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero__image { order: -1; max-width: 260px; margin-inline: auto; justify-self: center; }
  .about__image { max-width: 260px; margin-inline: auto; }
  .google-grid { grid-template-columns: 1fr; }
  .instagram-feed { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .faq--compact { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 1.5rem; }
  .timeline__line { display: none; }
  .timeline__card p { max-height: none; opacity: 1; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .gallery { grid-template-columns: 1fr; max-width: 100%; }
  .gallery__stack { grid-template-rows: auto; margin-left: 0; }
  .gallery__item--large { margin-inline: 0; width: 100%; }
  .gallery__item img { min-height: 180px; }
  .gallery__stack .gallery__item img { min-height: 160px; }
}
@media (max-width: 600px) {
  .cards-grid--4 { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; background: var(--bg);
    flex-direction: column; padding: 2rem; gap: 1.5rem;
    transform: translateY(-120%); opacity: 0; transition: var(--transition);
    box-shadow: var(--shadow-lg); z-index: 999;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav__list { flex-direction: column; align-items: center; flex-wrap: wrap; }
  .nav__cta { width: 100%; justify-content: center; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .google-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) {
  .google-grid .google-card:nth-child(-n+3) { display: block; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .google-grid { grid-template-columns: repeat(2, 1fr); }
}
