/* =============================================
   SER GIRASSOL – ESPAÇO TERAPÊUTICO
   Static Site Stylesheet
   ============================================= */

/* --- Self-hosted Fonts --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Custom Properties --- */
:root {
  --yellow:        #F5A623;
  --yellow-dark:   #D4880A;
  --yellow-light:  #FFF3D6;
  --green:         #5B8A6B;
  --green-dark:    #3E6B50;
  --green-light:   #EBF4EE;
  --bg:            #FFFBF4;
  --surface:       #FFFFFF;
  --text:          #2C3E50;
  --text-light:    #6B7280;
  --border:        #E8E0D0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    .25s ease;
  --max-width:     1180px;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --font-heading:  'Playfair Display', Georgia, serif;
}

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  transition: opacity .4s ease, visibility .4s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--yellow-light);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: loader-spin .7s linear infinite;
}
.page-loader-text {
  font-family: var(--font-heading);
  font-size: .9rem;
  color: var(--text-light);
  letter-spacing: .02em;
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  border-radius: 100px;
  padding: .3rem .9rem;
  margin-bottom: 1rem;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.bg-light { background: var(--yellow-light); }
.bg-green-light { background: var(--green-light); }
.bg-white { background: var(--surface); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,166,35,.35);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,.45);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--yellow-light);
  color: var(--yellow-dark);
  transform: translateY(-2px);
}
.btn-sm { padding: .6rem 1.25rem; font-size: .88rem; }

/* --- Card --- */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-body { padding: 1.75rem; }
.card-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  background: var(--yellow-light);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 251, 244, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.logo-tagline {
  display: block;
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-menu a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--yellow-light);
  color: var(--yellow-dark);
}
.nav-cta {
  background: var(--yellow) !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: .5rem 1.1rem !important;
  box-shadow: 0 2px 10px rgba(245,166,35,.3);
}
.nav-cta:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  padding-top: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text) !important;
}
.dropdown a:hover {
  background: var(--yellow-light);
  color: var(--yellow-dark) !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(91,138,107,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(91,138,107,.1);
  border-radius: 100px;
  padding: .35rem 1rem;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 span { color: var(--yellow-dark); }
.hero-desc { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44,62,80,.1);
}
.hero-stat { display: flex; flex-direction: column; justify-content: flex-end; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 700; font-family: var(--font-heading); color: var(--yellow-dark); line-height: 1; }
.hero-stat-number strong { font-size: 3rem; }
.hero-stat-number strong span { font-size: inherit; }
.hero-stat > span { font-size: 1.1rem; color: var(--text-light); margin-top: .5rem; }
.hero-image {
  position: relative;
}
.hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--yellow-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  font-size: 8rem;
  opacity: .4;
}
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 220px;
}
.hero-badge-icon { font-size: 1.8rem; }
.hero-badge strong { display: block; font-size: .9rem; color: var(--text); }
.hero-badge span { font-size: .78rem; color: var(--text-light); }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--text);
  border-color: transparent;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.service-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 1rem; }
.service-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--yellow-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder { font-size: 7rem; opacity: .3; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.value-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.value-item p { font-size: .88rem; color: var(--text-light); margin-bottom: 0; }
.value-item strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: .15rem; }

/* =============================================
   TEAM SECTION
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  color: var(--text);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--yellow-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 3.5rem;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 1.25rem; }
.team-info h4 { font-size: 1rem; margin-bottom: .25rem; }
.team-info span { font-size: .82rem; color: var(--text-light); }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.8rem;
  font-family: var(--font-heading);
  color: var(--yellow-light);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-item > span { font-size: .95rem; opacity: .85; }
.stat-item-number strong span { font-size: inherit; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.stars { color: var(--yellow); margin-bottom: 1rem; font-size: 1rem; letter-spacing: .1em; }
.testimonial-text { font-style: italic; color: var(--text-light); font-size: .95rem; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .9rem; }
.author-info span { font-size: .8rem; color: var(--text-light); }

/* =============================================
   CONTACT BANNER
   ============================================= */
.contact-banner {
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--green-light) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-banner h2 { margin-bottom: .75rem; }
.contact-banner p { color: var(--text-light); margin-bottom: 2rem; font-size: 1.05rem; }
.contact-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-info-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contact-info-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text-light); }
.contact-info-item a { color: var(--green); font-weight: 500; }

/* =============================================
   FOOTER ACCREDITATIONS STRIP
   Hosts the Ordem dos Psicólogos seal directly on
   the dark footer using the negative monochromatic
   brand version (white logo, transparent bg). The
   image already carries the brand-book safety
   margin around the symbol — no border or frame.
   ============================================= */
.footer-accreditations {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.selo-entidade-protocolada {
  display: block;
  width: auto;
  height: 56px;
  min-width: 130px;
  max-width: 100%;
}
.footer-accreditations-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  max-width: 520px;
}
.footer-accreditations-text strong {
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.footer-accreditations-text span {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  line-height: 1.5;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--yellow); color: #fff; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .9rem;
  font-size: .88rem;
}
.footer-contact-item .icon { margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .82rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .82rem; }
.footer-links a:hover { color: var(--yellow); }

/* =============================================
   PAGE HEADER (interior pages)
   ============================================= */
.page-header {
  padding: 7rem 0 4rem;
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--green-light) 100%);
  text-align: center;
}
.page-header .section-label { margin-bottom: 1rem; }
.page-header h1 { margin-bottom: .75rem; }
.page-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--green); }
.breadcrumb span { opacity: .5; }

/* =============================================
   SERVICE PAGE
   ============================================= */
.service-detail-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
}
.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-body h2 { font-size: 1.8rem; margin-bottom: 1rem; margin-top: 2.5rem; }
.service-body h2:first-child { margin-top: 0; }
.service-body ul, .service-body ol {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-body ul li, .service-body ol li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  font-size: .95rem;
  color: var(--text-light);
}
.service-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 1rem; font-size: 1rem; }

/* =============================================
   TEAM PAGE
   ============================================= */
.member-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.member-photo {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--yellow-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
  font-size: 6rem;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.member-credential {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.member-content h1 { font-size: 2rem; margin-bottom: .25rem; }
.member-role { color: var(--text-light); font-size: 1.05rem; margin-bottom: 1.5rem; }
.member-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.tag {
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-radius: 100px;
  padding: .3rem .85rem;
  font-size: .8rem;
  font-weight: 500;
}

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--yellow-light); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow-dark);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--yellow); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-categories {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.faq-cat-btn {
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.faq-cat-btn.active, .faq-cat-btn:hover {
  background: var(--yellow);
  color: #fff;
  border-color: var(--yellow);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-details { }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-light); margin-bottom: .25rem; }
.contact-item-text p { margin: 0; font-size: .95rem; }
.contact-item-text a { color: var(--text); font-weight: 500; }
.contact-item-text a:hover { color: var(--green); }
.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }
.form-control {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.form-control::placeholder { color: var(--text-light); opacity: .7; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; }
.form-check input { margin-top: .2rem; accent-color: var(--green); }
.form-check label { font-size: .85rem; color: var(--text-light); }
.form-check a { color: var(--green); }
.form-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .88rem;
  margin-bottom: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--green-light);
  border-radius: var(--radius);
  color: var(--green-dark);
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--border);
  background: var(--green-light);
  position: relative;
  margin-top: 3rem;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }
.map-consent-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--green-light);
}
.map-consent-inner { max-width: 360px; }
.map-consent-inner p { font-size: .88rem; color: var(--text-light); margin-bottom: .75rem; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  color: var(--text);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--yellow-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 3rem;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.blog-cat {
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-radius: 100px;
  padding: .2rem .7rem;
  font-weight: 600;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: .6rem; line-height: 1.3; }
.blog-card-body p { font-size: .88rem; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Blog Post */
.blog-post-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.blog-post-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.blog-post-content h3 { font-size: 1.3rem; margin: 1.75rem 0 .75rem; }
.blog-post-content ul, .blog-post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.blog-post-content ol { list-style: decimal; }
.blog-post-content li { margin-bottom: .4rem; color: var(--text-light); font-size: .95rem; }
.blog-post-content blockquote {
  border-left: 3px solid var(--yellow);
  padding: 1rem 1.5rem;
  background: var(--yellow-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light);
}
.blog-post-header { margin-bottom: 2.5rem; }
.blog-post-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.blog-post-meta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; font-size: .88rem; color: var(--text-light); }
.post-author { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--text); }
.post-cover {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--yellow-light), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 5rem;
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   SOBRE NÓS
   ============================================= */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.mission-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.mission-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mission-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.mission-card p { font-size: .9rem; color: var(--text-light); margin: 0; }

/* =============================================
   UTILITIES / ANIMATIONS
   ============================================= */
/* fade-in only active when JS is running */
.js .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.highlight { color: var(--yellow-dark); }
.text-green { color: var(--green); }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease, visibility 0s .35s;
    pointer-events: none;
    visibility: hidden;
  }
  .nav-menu.open {
    max-height: 80vh;
    padding: 1rem;
    overflow-y: auto;
    pointer-events: auto;
    visibility: visible;
    transition: max-height .35s ease, padding .35s ease, visibility 0s 0s;
  }
  .nav-menu a { width: 100%; padding: .7rem 1rem; border-radius: 8px; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 0 1rem;
    background: var(--yellow-light);
    border-radius: var(--radius-sm);
    margin-top: .25rem;
    display: none;
  }
  .nav-item.dropdown-open .dropdown { display: block; max-height: none; }
  .dropdown a { padding: .5rem; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 6rem 0 3rem; }
  .hero-image { display: none; }
  .hero-stats { gap: 1.5rem; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrapper { display: none; }
  .about-values { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .service-detail-inner { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .member-inner { grid-template-columns: 1fr; }
  .member-photo { position: static; max-width: 280px; margin: 0 auto; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-inner { grid-template-columns: 1fr; }

  .mission-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-banner { padding: 2.5rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-accreditations { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 0; }
  .footer-accreditations-text { align-items: center; }
  .selo-entidade-protocolada { height: 48px; }
  .hero-badge { display: none; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .contact-banner-actions { flex-direction: column; align-items: center; }
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--yellow-dark); transform: translateY(-2px); }

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  color: var(--text);
  animation: cookieSlideUp 0.4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.cookie-banner-text p:first-child { color: var(--text); margin-bottom: 0.3rem; }
.cookie-banner-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
}
.cookie-banner-text a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--green-dark); }

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-manage-btn {
  color: var(--text-light) !important;
  border: 1px solid var(--border) !important;
  background: var(--bg) !important;
}
.cookie-manage-btn:hover {
  color: var(--yellow-dark) !important;
  border-color: var(--yellow) !important;
  background: var(--yellow-light) !important;
}

/* --- Preferences Panel --- */
.cookie-preferences {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.cookie-preferences[hidden] { display: none; }
.cookie-pref-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
}
.cookie-pref-inner h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-cat-info { flex: 1; }
.cookie-cat-info strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.cookie-cat-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* --- Custom Toggle Switch --- */
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-toggle input[type="checkbox"] {
  position: relative;
  width: 44px;
  height: 24px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
  outline: none;
  border: none;
  flex-shrink: 0;
}
.cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--surface);
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.cookie-toggle input[type="checkbox"]:checked { background: var(--green); }
.cookie-toggle input[type="checkbox"]:checked::after { transform: translateX(20px); }
.cookie-toggle input[type="checkbox"]:disabled {
  background: var(--green);
  opacity: 0.6;
  cursor: not-allowed;
}
.toggle-label {
  font-size: 0.78rem;
  color: var(--text-light);
  white-space: nowrap;
}
.cookie-pref-actions {
  text-align: right;
  margin-top: 1rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem;
  }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* --- Footer cookie settings link --- */
.footer-cookie-link {
  cursor: pointer;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-family: var(--font-body);
  padding: 0;
  transition: color var(--transition);
}
.footer-cookie-link:hover { color: var(--yellow); }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  z-index: 9999;
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1EBE57;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
}

/* =============================================
   GOOGLE REVIEWS BADGE
   ============================================= */
.google-reviews-badge {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9998;
  animation: grb-fade-in .5s ease .5s both;
}
@keyframes grb-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.google-reviews-badge a {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .6rem .9rem;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: all var(--transition);
}
.google-reviews-badge a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.grb-header {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.grb-stars {
  color: #FBBC05;
  font-size: .75rem;
  letter-spacing: .05em;
}
.grb-header strong {
  font-size: .85rem;
  color: var(--text);
}
.grb-text {
  font-size: .65rem;
  color: var(--text-light);
  margin-top: .15rem;
}

/* =============================================
   "WHO IS THIS FOR" SECTION
   ============================================= */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.situation-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.situation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.situation-card:hover::before { transform: scaleX(1); }
.situation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--text);
  border-color: transparent;
}
.situation-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.situation-quote::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: .75rem;
}
.situation-service {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--green);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.situation-icon { font-size: 1.2rem; }
.situation-arrow {
  margin-left: auto;
  transition: transform var(--transition);
}
.situation-card:hover .situation-arrow { transform: translateX(4px); }

/* =============================================
   HERO RESPONSE TIME
   ============================================= */
.hero-response-time {
  font-size: .85rem;
  color: var(--green-dark);
  margin-top: .5rem;
  margin-bottom: 0;
  font-weight: 500;
}
.hero-response-time::before {
  content: '🕐 ';
  font-size: .8rem;
}

/* --- Insurance Note (sidebar) --- */
.insurance-note {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: .75rem;
  line-height: 1.5;
  padding-left: .75rem;
  border-left: 2px solid var(--yellow);
}

/* --- Team Index: Section Groups --- */
.team-section-group {
  margin-bottom: 3rem;
}
.team-section-group:last-child {
  margin-bottom: 0;
}
.team-section-group h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--yellow-light);
}
.team-section-group .team-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.team-section-group .team-card .member-tags {
  justify-content: center;
}
.team-section-group .team-card .tag {
  font-size: .7rem;
  padding: .2rem .6rem;
}

/* --- Member Page: Areas Grid --- */
.member-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
  margin: 1.5rem 0;
  list-style: none;
}
.member-areas li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  font-size: .92rem;
  color: var(--text-light);
}
.member-areas li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* --- Member Page: First Session --- */
.member-first-session {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-left: 3px solid var(--green);
}
.member-first-session h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--green-dark);
}
.member-first-session p {
  font-size: .92rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Member Page: Testimonial --- */
.member-testimonial {
  margin-top: 2rem;
}
.member-testimonial h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.member-testimonial .testimonial-card {
  max-width: 100%;
}

/* --- Service Page: Team Section --- */
.service-team {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.service-team h3 {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.service-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.service-team-grid .team-card {
  width: 140px;
  text-align: center;
  padding: .75rem;
}
.service-team-grid .team-card .team-photo {
  width: 80px;
  height: 80px;
  margin: 0 auto .5rem;
}
.service-team-grid .team-card .team-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.service-team-grid .team-card h4 {
  font-size: .85rem;
  margin-bottom: .15rem;
}
.service-team-grid .team-card span {
  font-size: .75rem;
  color: var(--text-light);
}
@media (max-width: 480px) {
  .service-team-grid .team-card { width: calc(50% - .5rem); }
}

/* --- Member Page: Services List --- */
.member-services {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .member-areas { grid-template-columns: 1fr; }
}

/* --- Responsive additions --- */
@media (max-width: 1024px) {
  .situations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .situations-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 80px; right: 1rem; width: 50px; height: 50px; }
  .google-reviews-badge { bottom: 1.5rem; left: 1.5rem; }
}
@media (max-width: 480px) {
  .google-reviews-badge { display: none; }
}
