/*
Theme Name: Laura Lamim v17j
Theme URI: https://lauralamim.com.br
Author: Ignite Conversions
Author URI: https://igniteconversions.com
Description: Custom theme for Laura Lamim Terapia Sistêmica
Version: 17.10.0
License: GNU General Public License v2 or later
Text Domain: lamim
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --brand:        #1C3D5A;  /* header and footer background */
  --brand-dark:   #142D43;  /* hover/active for header/footer */
  --link:         #3A6EA8;  /* slate blue — buttons, links, accents */
  --link-dark:    #2A5585;  /* hover/active state */
  --blue:         #F6F8FA;  /* page-hero / hero band background */
  --mint:         #D5E4EE;  /* light blue tint — nav accents on dark bg */
  --teal:         #C8D9D3;  /* sage — proof-strip and testimonials band */
  --lilac:        #D5E4EE;  /* CTA band background */
  --surface:      #F6F8FA;  /* site background */
  --surface-card: #FFFFFF;  /* card backgrounds */
  --border:       #E0E8EE;  /* structural borders */

  /* ── Type scale ──────────────────────────────────────────── */
  --h1: 40px;
  --h2: 32px;
  --h3: 18px;
  --h4: 16px;
  --h5: 14px;
  --text-body:  12px;
  --text-small: 10px;
  --charcoal:     #232A2D;
  --body-text:    #353F42;
  --muted:        #6B7679;
  --white:        #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Open Sans', system-ui, sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  112px;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(126,103,155,0.12);
  --shadow-hover: 0 8px 36px rgba(126,103,155,0.20);

  --max-width: 1140px;
  --transition: 0.25s ease;
}

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

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

html, body {
  background: #FAFAFA !important;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--body-text);
  background: #F6F8FA !important;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--link-dark); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5 {
  color: var(--charcoal);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-family: 'Open Sans', sans-serif; font-size: 36px; }
h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; }
h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; }
h4 { font-family: 'Open Sans', sans-serif; font-size: 14px; }
h5 { font-family: 'Open Sans', sans-serif; font-size: 12px; }
h6 { font-family: 'Open Sans', sans-serif; font-size: 12px; }
h7 { font-family: 'Open Sans', sans-serif; font-size: 12px; }

p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

.eyebrow {

  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--space-lg) 0;
}

.section--lg {
  padding: var(--space-xl) 0;
}

.section--surface {
  background: var(--white);
}

.section--green {
  background: var(--link);
  color: var(--white);
}

.section--green h1,
.section--green h2,
.section--green h3,
.section--green h4 {
  color: var(--white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: normal;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.btn--primary {
  background: #7FA99E;
  color: var(--white);
  border-color: #7FA99E;
}
.btn--primary:hover {
  background: #6A9289;
  border-color: #6A9289;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127,169,158,0.40);
}

.btn--outline {
  background: #7FA99E;
  color: var(--white);
  border-color: #7FA99E;
}
.btn--outline:hover {
  background: #6A9289;
  color: var(--white);
  border-color: #6A9289;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127,169,158,0.40);
}

.btn--outline-green {
  background: #7FA99E;
  color: var(--white);
  border-color: #7FA99E;
}
.btn--outline-green:hover {
  background: #6A9289;
  color: var(--white);
  border-color: #6A9289;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127,169,158,0.40);
}

.btn--whatsapp {
  background: #7FA99E;
  color: var(--white);
  border-color: #7FA99E;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--whatsapp:hover {
  background: #6A9289;
  border-color: #6A9289;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127,169,158,0.40);
}

.btn--lg {
  padding: 18px 40px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {

  font-weight: 700;
  color: var(--surface-card);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span {
  display: block;

  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
}
.nav-logo:hover { color: var(--mint); }
.nav-logo-mark { height: 38px; width: auto; display: block; }

.nav-sep {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  user-select: none;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 600;
  color: var(--surface-card);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 1px;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item {
  color: var(--mint);
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--blue);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--blue);
  opacity: 1;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 20px var(--space-xl) 20px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-lg);
  align-items: start;
  width: 100%;
}

.hero-text h1 {
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--charcoal);
}

.hero-subtitle {

  color: var(--body-text);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
}

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

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
  width: 100%;
}

.hero-card-quote {

  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero-card-quote::before {
  content: '"';

  color: rgba(35,42,45,0.18);
  line-height: 0;
  vertical-align: -7px;
  margin-right: 3px;
}

.hero-card-attr {

  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   WAVE DIVIDER (Signature Element)
   ============================================================ */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  margin-bottom: -2px;
  display: block;
}
.wave-divider svg {
  display: block;
  width: 100%;
  vertical-align: bottom;
}

/* ============================================================
   SERVICE CARDS (Homepage funnel)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: var(--space-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--mint);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-top-color: var(--link);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;

}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card-trigger {

  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--link);
  line-height: 1.6;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;

  padding: 10px 20px;
}

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  background: #C8D9D3;
  padding: 56px 0;
}

.proof-items {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
  color: var(--charcoal);
  min-width: 160px;
}

.proof-number {
  font-size: 56px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  display: block;
  letter-spacing: -1px;
}

.proof-label {
  font-size: 12px;
  color: var(--charcoal);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: var(--space-md);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '"';

  color: var(--border);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {

  color: var(--body-text);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-attr {
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT SNIPPET (Homepage)
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}


.about-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--link);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.25;
}

.credentials-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  color: var(--body-text);
}

.credentials-list li::before {
  content: '✓';
  color: var(--mint);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--blue);
  padding: 32px 0 16px;
  position: relative;
  overflow: hidden;
}
.page-hero + .section {
  padding-top: 16px;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(104,125,172,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {

  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  display: block;
  margin-bottom: 16px;
}

.page-hero h1 {
  color: var(--charcoal);
  margin-bottom: 20px;
}

.page-hero-sub {

  color: var(--body-text);
  max-width: 620px;
  line-height: 1.75;
}

/* ============================================================
   VOC QUOTE BLOCK
   ============================================================ */
.voc-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  border-left: 5px solid var(--link);
  margin: 32px 0;
}

.voc-block p {

  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: var(--space-md);
}

.process-step {
  text-align: center;
  padding: 28px;
}

.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--link);
  color: var(--white);
  border-radius: 50%;

  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h4 {
  margin-bottom: 12px;
  color: var(--charcoal);
}

.process-step p {

  color: var(--muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--surface-card);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--white); }

.faq-question::after {
  content: '+';

  font-weight: 300;
  color: var(--link);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--surface-card);
}

.faq-answer-inner {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: #D2E0ED;
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--charcoal);
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--body-text);

  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: var(--space-md);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card-thumb {
  background: var(--border);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--muted);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-cat {

  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--link);
  margin-bottom: 8px;
}

.blog-card h3 {
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {

  color: var(--muted);
  flex: 1;
}

.blog-card .read-more {

  font-weight: 700;
  color: var(--link);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-card .read-more:hover { gap: 10px; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-lg);
  align-items: flex-start;
}

.post-content {

  line-height: 1.85;
}

.post-content h2 {
  margin: 40px 0 16px;
  color: var(--charcoal);
}

.post-content h3 {
  margin: 32px 0 12px;
  color: var(--charcoal);
}

.post-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 19px;
}

.post-content ul li {
  margin-bottom: 8px;
  color: var(--body-text);
}

.post-content blockquote {
  border-left: 4px solid var(--link);
  background: var(--white);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;

  font-style: italic;

  color: var(--charcoal);
}

.post-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  margin-bottom: 16px;
  color: var(--charcoal);
  border-bottom: 2px solid var(--link);
  padding-bottom: 8px;
}

.sidebar-cta-widget {
  background: var(--link);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  margin-bottom: 24px;
}

.sidebar-cta-widget h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.sidebar-cta-widget p {
  color: rgba(255,255,255,0.8);

  margin-bottom: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;

  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);

  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(153,180,223,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info-block {
  background: var(--link);
  border-radius: var(--radius-md);
  padding: 40px;
  color: var(--white);
}

.contact-info-block h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.contact-info-text {

  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.contact-info-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 3px;

  letter-spacing: 1px;
  text-transform: uppercase;
}

.whatsapp-big {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 24px;
  text-decoration: none;
  transition: all var(--transition);
}

.whatsapp-big:hover {
  background: rgba(37,211,102,0.25);
}

.whatsapp-big-text {

  color: rgba(255,255,255,0.8);
}

.whatsapp-big-text strong {
  display: block;

  color: #25D366;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand);
  color: var(--surface-card);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: var(--surface-card);

  margin-bottom: 16px;
  display: flex;
}

.footer-brand p {

  line-height: 1.7;
  color: var(--white);
}

.footer-col h5 {

  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {

  color: var(--white);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--white);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: var(--space-md);
}

.credential-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid var(--mint);
  text-align: center;
}

.credential-card .icon {

  margin-bottom: 12px;
}

.credential-card h4 {
  margin-bottom: 8px;
  color: var(--charcoal);
}

.credential-card p {

  color: var(--muted);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-card { display: none; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-cta-group { max-width: 100%; }

  .about-split {
    grid-template-columns: 1fr;
  }
  .about-photo-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 960px) {
  :root {
    --space-lg: 48px;
    --space-xl: 72px;
  }

  /* Nav */
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1000;
    padding: 32px;
  }

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

  .nav-menu a {

    padding: 14px 24px;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
  }
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    display: flex;
  }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero-content { padding: 64px 20px; }

  /* Service grid */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* Proof strip */
  .proof-items {
    gap: var(--space-md);
  }

  /* Grid overrides */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Contact */
  .contact-form {
    padding: 24px;
  }

  /* Post */
  .post-layout {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Credentials */
  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   FULL WIDTH FIX — remove any WordPress wrapper constraints
   ============================================================ */
.lamim-full-width,
.lamim-full-width body,
html body.lamim-full-width {
  max-width: 100% !important;
  width: 100% !important;
  overflow-x: hidden;
}

/* Remove Hostinger / default theme content wrappers */
.site-content,
.content-area,
#content,
#primary,
.wp-site-blocks,
.entry-content,
.post-content-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* Ensure hero and sections bleed full width */
.hero,
.page-hero,
.proof-strip,
.cta-band,
.section,
.wave-divider,
.site-footer,
.site-header {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

/* ── Hero right column with photo + quote ────────────────── */
.hero-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  width: 90%;
  margin: 0 auto;
}

.hero-laura-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 1024px) {
  .hero-right-col { display: none; }
}

/* ============================================================
   SPACING UTILITIES — replaces inline style hacks
   ============================================================ */
.grid-2 { margin-top: var(--space-md); }
.card-icon { margin-bottom: 12px; }
.card-title { margin-bottom: 8px; }
.section-divider {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  margin-top: var(--space-md);
}
.info-box {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: var(--space-md);
}
.info-box h4 { margin-bottom: 16px; }
.step-list { display: flex; flex-direction: column; gap: 8px; }
.step-item { display: flex; gap: 12px; align-items: flex-start; }
.step-number {
  background: var(--brand);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.card-grid-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   FULL-WIDTH PHOTO BAND
   ============================================================ */
.photo-band {
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: block;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ============================================================
   HERO HEADLINE RESTRUCTURE
   ============================================================ */
.eyebrow--h1 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.hero-headline {
  font-size: 44px;
  font-weight: 700;
  color: var(--link);
  margin-bottom: 16px;
  line-height: 1.2;
}

/* ============================================================
   ABOUT GRID — 2 col left/right
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE INTRO — photo + voc quote side by side, body text full width below
   ============================================================ */
.page-intro-top {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}
.page-intro-photo {
  flex: 0 0 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.page-intro-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.page-intro-quote {
  flex: 1;
  min-width: 0;
}
@media (max-width: 960px) {
  .page-intro-top { flex-direction: column; }
  .page-intro-photo { flex: none; width: 100%; }
  .page-intro-photo img { height: 260px; }
}

/* ============================================================
   SOBRE — square photo + text columns
   ============================================================ */
.sobre-split {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}
.sobre-photo {
  flex: 0 0 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sobre-photo img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.sobre-text { flex: 1; min-width: 0; }
@media (max-width: 960px) {
  .sobre-split { flex-direction: column; }
  .sobre-photo { flex: none; width: 100%; }
  .sobre-photo img { width: 100%; height: 280px; }
}

/* ============================================================
   HERO — centered layout updates
   ============================================================ */
.hero-text {
  text-align: center;
}
.hero-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-group {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   VOC QUOTE — no box, centered Playfair
   ============================================================ */
.voc-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.6;
  margin: 0 auto var(--space-md);
  max-width: 680px;
}
.voc-attr {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  display: block;
  margin-bottom: var(--space-md);
}

/* ============================================================
   PAGE HERO — centered, more breathing room
   ============================================================ */
.page-hero {
  background: var(--blue);
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero + .section {
  padding-top: 40px;
}
.page-hero h1,
.page-hero-label,
.page-hero-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SECTION WITH TINTED BACKGROUND for cards/FAQ
   ============================================================ */
.section--tint {
  background: #EEF4F7;
}
.faq-section {
  background: #EEF4F7;
  padding: var(--space-lg) 0;
}
.faq-item {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ============================================================
   CREDENTIALS CARDS — tinted background
   ============================================================ */
.credential-card {
  background: #EEF4F7;
  border-radius: var(--radius-md);
  padding: 24px;
}

/* ============================================================
   SPACE BELOW MENU
   ============================================================ */
.site-header {
  margin-bottom: 0;
}
.hero, .page-hero {
  padding-top: 72px;
}

/* ============================================================
   EMOJI SIZE — restored
   ============================================================ */
.service-card-icon,
.card-icon,
.credential-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   FOOTER LOGO
   ============================================================ */
.footer-logo-large {
  display: block;
  margin: 0 auto var(--space-md);
  max-width: 200px;
  height: auto;
}
.footer-credit {
  font-size: 11px;
  color: var(--mint);
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--space-md);
}
.footer-credit a {
  color: var(--mint);
  text-decoration: underline;
}
