/* ============================================
   VIDA ELABORADA — Patricia Terranova
   Design inspirado no template Readdy
   Paleta: teal/emerald + sage + dark nature
   ============================================ */

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

:root {
  --color-primary: #30ba83;
  --color-primary-dark: #258f65;
  --color-primary-light: #e8f8ef;
  --color-highlight: #66fff0;
  --color-bg: #f0f5f3;
  --color-bg-alt: #e8efec;
  --color-dark: #0f1f1a;
  --color-dark-card: #14332b;
  --color-text: #2d3a36;
  --color-text-light: #6b7f78;
  --color-white: #ffffff;
  --color-border: #d4ddd9;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(15, 31, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 31, 26, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 31, 26, 0.1);
  --shadow-xl: 0 16px 48px rgba(15, 31, 26, 0.12);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: url('https://vidaelaborada.com.br/wp-content/uploads/2026/05/hero-fazenda2.jpg') center / cover no-repeat;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 200;
  line-height: 1.0;
  color: var(--color-dark);
}

h2 em, h1 .accent {
  font-style: normal;
  color: var(--color-primary);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-tag-light {
  color: var(--color-primary-light);
}

/* --- ANIMATIONS --- */
.specialty-card,
.service-card,
.article-card,
.office-img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.specialty-card.visible,
.service-card.visible,
.article-card.visible,
.office-img.visible {
  opacity: 1;
  transform: translateY(0);
}

.specialty-card:nth-child(2),
.service-card:nth-child(2),
.article-card:nth-child(2),
.office-img:nth-child(2) { transition-delay: 0.08s; }
.specialty-card:nth-child(3),
.service-card:nth-child(3),
.article-card:nth-child(3),
.office-img:nth-child(3) { transition-delay: 0.16s; }
.specialty-card:nth-child(4),
.office-img:nth-child(4) { transition-delay: 0.24s; }
.specialty-card:nth-child(5),
.office-img:nth-child(5) { transition-delay: 0.32s; }
.specialty-card:nth-child(6),
.office-img:nth-child(6) { transition-delay: 0.4s; }
.office-img:nth-child(7) { transition-delay: 0.48s; }
.office-img:nth-child(8) { transition-delay: 0.56s; }


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

/* Tema escuro adaptativo: barra "scrolled" sobre seções escuras.
   Fundo/blur/sombra zerados para fundir com a seção — sem faixa de tom. */
.navbar.scrolled.over-dark {
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.navbar.scrolled.over-dark .nav-link {
  color: rgba(255, 255, 255, 0.82);
}

.navbar.scrolled.over-dark .nav-link:hover,
.navbar.scrolled.over-dark .nav-link.active {
  color: var(--color-primary);
}

.navbar.scrolled.over-dark .nav-toggle span {
  background: var(--color-white);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: height 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar.scrolled .nav-link {
  color: var(--color-text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(48, 186, 131, 0.3);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-dark);
}

.nav-toggle.open span { background: #14332b !important; }
.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);
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(48, 186, 131, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-text {
  background: none;
  padding: 0;
  color: var(--color-primary);
  font-weight: 600;
  gap: 6px;
}

.btn-text:hover {
  gap: 10px;
}

.btn-text svg {
  transition: transform 0.3s ease;
}

.btn-text:hover svg {
  transform: translateX(4px);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: #cdd9d2 url('https://vidaelaborada.com.br/wp-content/uploads/2026/06/inicial.jpg') center top / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 18%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(11, 16, 14, 0.34) 0%, rgba(11, 16, 14, 0) 100%);
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding: 48px 52px 44px;
  background: rgba(13, 31, 26, 0.44);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(8, 20, 14, 0.32);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px 8px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.badge-avatars {
  display: flex;
}

.badge-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  object-fit: cover;
}

.hero-badge span {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.0;
}

.hero h1 .accent {
  display: block;
  color: #5fe0b0;
  font-style: normal;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-subtitle p {
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero .btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero .btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 24px rgba(44, 188, 165, 0.3);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.hero .btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #A1DFD9;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}

.about-credential {
  position: absolute;
  top: 8%;
  right: -40px;
  background: var(--color-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}

.about-credential.about-credential-2 {
  top: auto;
  bottom: -24px;
  right: auto;
  left: 16px;
}

.credential-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.credential-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
}

.credential-sub {
  font-size: 13px;
  color: var(--color-text-light);
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.about-stat-label {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 4px;
}


/* ============================================
   SPECIALTIES
   ============================================ */
.specialties {
  padding: 120px 0;
  background: var(--color-white);
}

.specialties-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.specialties-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.specialties-intro {
  max-width: 760px;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

.specialty-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 31, 26, 0.04);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    opacity 0.6s ease;
  height: 100%;
}

.specialty-card.visible:hover {
  border-color: rgba(15, 31, 26, 0.1);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.specialty-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.specialty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.specialty-card:hover .specialty-img img {
  transform: scale(1.04);
}

.specialty-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.specialty-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  margin: -52px 0 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15, 31, 26, 0.08);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
}

.specialty-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-dark);
  line-height: 1.25;
}

.specialty-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-light);
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Per-card pastel backgrounds — subtle jungian palette */
.specialty-card-1 { background: #f4ece4; }   /* warm sand — Terapia de Casal */
.specialty-card-2 { background: #ede8d8; }   /* pale gold — Questões Profissionais */
.specialty-card-3 { background: #e3ebec; }   /* soft mist — Ansiedade · Angústia · Vazio */
.specialty-card-4 { background: #e7efe6; }   /* soft sage — Relacionamentos */
.specialty-card-5 { background: #e8e6ee; }   /* pale lavender — Introversão · Neurodivergências */
.specialty-card-6 { background: #dfe9e2; }   /* mineral green — Individuação */


/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--color-bg);
}

.services h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-dark {
  background: var(--color-dark-card);
  color: var(--color-white);
}

.service-card-dark h3 {
  color: var(--color-white);
}

.service-card-dark .service-meta {
  color: var(--color-primary);
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card-dark .service-icon {
  color: var(--color-primary);
}

.service-card-image {
  padding: 0;
  overflow: hidden;
  background: var(--color-white);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-image:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px 32px;
}

.service-card-light {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.service-card-light:hover {
  box-shadow: var(--shadow-lg);
}

.service-icon {
  margin-bottom: 24px;
  color: var(--color-primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
}


/* ============================================
   OFFICE / CONSULTÓRIO
   ============================================ */
.office {
  padding: 120px 0;
  background: var(--color-white);
}

.office h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 48px;
}

.office-gallery {
  column-count: 3;
  column-gap: 16px;
}

.office-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  break-inside: avoid;
}

.office-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.office-img:hover img {
  transform: scale(1.05);
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--color-bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.testimonial-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 32px;
}

.quote-icon {
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
}

.testimonial-quote cite {
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-quote cite span {
  color: var(--color-primary);
  font-weight: 200;
}

/* Testimonial Meta (name + detail line) */
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-detail {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Testimonial Reply */
.testimonial-reply {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.testimonial-reply-avatar {
  flex-shrink: 0;
}

.reply-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-reply-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reply-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.testimonial-reply-content p {
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  display: none;
  animation: testimonialFadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes testimonialFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonial-arrow:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.testimonial-next {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.testimonial-next:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  width: 24px;
  background: var(--color-primary);
}


/* ============================================
   ARTICLES / BLOG
   ============================================ */
.articles {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.articles-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

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

.article-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

.article-img {
  height: 200px;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-img img {
  transform: scale(1.05);
}

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

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--color-text-light);
}

.article-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.4;
  flex: 1;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.3s ease;
}

.article-card:hover .article-link {
  gap: 10px;
}


/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 120px 24px;
  background: url('../cta-lake.jpg') center / cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 20, 0.88) 0%,
    rgba(15, 40, 30, 0.78) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.0;
}

.cta h2 em {
  color: var(--color-primary);
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

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


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-credential {
    right: -16px;
    top: 6%;
  }

  .about-credential.about-credential-2 {
    top: auto;
    right: auto;
    left: 12px;
    bottom: -20px;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-grid .service-card:first-child {
    grid-column: span 2;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonial-img-wrapper {
    max-width: 400px;
    aspect-ratio: 3/2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(80vw, 300px);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    background: #A8D0F0;
    padding: 64px 26px 28px;
    gap: 18px;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-xl);
  }

  .nav-links.open {
    right: 0;
    box-shadow: -12px 0 32px rgba(8,16,12,.18), 0 0 0 100vmax rgba(8,16,12,.5);
  }

  .nav-links .nav-link {
    color: #8A6916 !important;
    font-size: 15px;
    font-weight: 400 !important;
  }
  .nav-links .nav-dropdown a { color: #8A6916 !important; font-weight: 400 !important; }
  .nav-links .nav-chevron { color: #8A6916; }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    margin-left: 0;
    padding: 32px 26px 30px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 48px;
  }

  .hero-actions .btn {
    justify-content: center;
  }

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

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

  .services-grid .service-card:first-child {
    grid-column: span 1;
  }

  .office-gallery {
    column-count: 2;
  }

  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .cta-content {
    margin-left: 0;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    justify-content: center;
  }

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

  .about-stats {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .about-credential {
    right: -8px;
    top: 6%;
    padding: 12px 16px;
  }

  .about-credential .credential-title {
    font-size: 14px;
  }

  .about-credential.about-credential-2 {
    top: auto;
    right: auto;
    left: 8px;
    bottom: -18px;
  }

  .about-credential.about-credential-2 .credential-title {
    font-size: 14px;
  }

  .office-gallery {
    column-count: 1;
  }
}


/* ============================================
   NAV DROPDOWN (Especialidades submenu)
   ============================================ */
.nav-item {
  position: relative;
}

.nav-item-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-item-dropdown.open > .nav-link .nav-chevron,
.nav-item-dropdown:hover > .nav-link .nav-chevron {
  transform: rotate(180deg);
}

.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 18px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 300px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  border: 1px solid var(--color-border);
  z-index: 1001;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--color-white);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text) !important;
  line-height: 1.4;
  transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.navbar.scrolled .nav-dropdown a {
  color: var(--color-text);
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark) !important;
  padding-left: 18px;
}


/* ============================================
   SPECIALTY PAGE — HERO
   ============================================ */
.specialty-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: #0a1914 url('https://vidaelaborada.com.br/wp-content/themes/vida-elaborada/assets/hero-forest.jpg') center / cover no-repeat;
  overflow: hidden;
}

.specialty-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 29, 27, 0.7), rgba(8, 33, 28, 0.45), rgba(8, 33, 28, 0.4)),
    linear-gradient(to right bottom, rgba(6, 29, 27, 0.92), rgba(13, 58, 54, 0.82), rgba(13, 48, 60, 0.86));
}


.specialty-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.specialty-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.specialty-back:hover {
  color: var(--color-primary);
  gap: 12px;
}

.specialty-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.specialty-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-primary);
}

.specialty-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--color-white);
  margin-bottom: 28px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.5px;
}

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

.specialty-hero .lead {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  max-width: 620px;
}

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


/* ============================================
   SPECIALTY PAGE — SIGNAL GRID
   ============================================ */
.signal-section {
  padding: 110px 0;
  background: var(--color-white);
}

.signal-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.signal-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin-bottom: 18px;
}

.signal-header h2 em {
  color: var(--color-primary);
}

.signal-header p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-light);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.signal-card {
  padding: 28px 24px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.signal-card:hover {
  background: var(--color-white);
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.signal-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.signal-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.signal-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-light);
}


/* ============================================
   SPECIALTY PAGE — JOURNEY (leitura junguiana + steps)
   ============================================ */
.journey-section {
  padding: 110px 0;
  background: var(--color-bg);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.journey-intro .section-tag {
  margin-bottom: 12px;
}

.journey-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
  line-height: 1.0;
}

.journey-intro h2 em {
  color: var(--color-primary);
}

.journey-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.journey-quote {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--color-white);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
}

.journey-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: step;
}

.journey-step {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 28px 32px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.journey-step:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.journey-step-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.journey-step-number::before {
  content: counter(step, decimal-leading-zero);
}

.journey-step-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.journey-step-body p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text-light);
}


/* ============================================
   SPECIALTY PAGE — FAQ
   ============================================ */
.faq-section {
  padding: 110px 0;
  background: var(--color-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 24px;
}

.faq-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.faq-header h2 em {
  color: var(--color-primary);
}

.faq-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.7;
}

.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--color-primary);
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  margin-left: 24px;
  line-height: 1;
}

.faq-item[open] summary {
  color: var(--color-primary);
}

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

.faq-item-body {
  padding: 0 0 28px;
  color: var(--color-text-light);
  font-size: 15.5px;
  line-height: 1.85;
  max-width: 720px;
}

.faq-item-body p + p {
  margin-top: 14px;
}


/* ============================================
   SPECIALTY CARD AS LINK (home preview)
   ============================================ */
a.specialty-card {
  text-decoration: none;
  color: inherit;
}

.specialty-card .specialty-link {
  margin-top: auto;
  padding-top: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.specialty-card .specialty-link svg {
  transition: transform 0.3s ease;
}

a.specialty-card:hover .specialty-link {
  gap: 10px;
}

a.specialty-card:hover .specialty-link svg {
  transform: translateX(2px);
}


/* ============================================
   RESPONSIVE — DROPDOWN + SPECIALTY PAGE
   ============================================ */
@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 768px) {
  /* Mobile dropdown: inline expandable inside the off-canvas menu */
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown > .nav-link {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 4px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
    margin-top: 0;
  }

  .nav-dropdown::before,
  .nav-item-dropdown::after {
    display: none;
  }

  .nav-item-dropdown.open .nav-dropdown {
    max-height: 600px;
    margin-top: 8px;
  }

  .nav-dropdown li {
    border-left: 1px solid var(--color-border);
  }

  .nav-dropdown a {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--color-text-light) !important;
  }

  .nav-dropdown a:hover {
    background: transparent;
    color: var(--color-primary) !important;
    padding-left: 20px;
  }

  .specialty-hero {
    padding: 130px 20px 72px;
  }

  .specialty-hero-content {
    margin-left: 0;
  }

  .specialty-hero .lead {
    font-size: 17px;
  }

  .specialty-hero-actions {
    flex-direction: column;
  }

  .specialty-hero-actions .btn {
    justify-content: center;
  }

  .signal-section,
  .journey-section,
  .faq-section {
    padding: 72px 0;
  }

  .journey-step {
    padding: 22px 20px;
    gap: 16px;
  }
}



/* Tarefa D - imagem hero Introversao (somente page-id 1368) */
body.page-id-1368 .specialty-hero{background-image:url('https://vidaelaborada.com.br/wp-content/uploads/2026/06/introversao-depressao.jpg')!important;background-position:center!important;}


/* heros internos especialidades (page-specific) */
body.page-id-1364 .specialty-hero{background-image:url('https://vidaelaborada.com.br/wp-content/uploads/2026/06/WhatsApp-Image-2026-06-01-at-18.04.34.jpeg')!important;background-position:center!important;}
body.page-id-1365 .specialty-hero{background-image:url('https://vidaelaborada.com.br/wp-content/uploads/2026/06/WhatsApp-Image-2026-06-01-at-18.31.29.jpeg')!important;background-position:center!important;}
body.page-id-1366 .specialty-hero{background-image:url('https://vidaelaborada.com.br/wp-content/uploads/2026/06/sunriseforever-woman-5718089.jpg-scaled.jpeg')!important;background-position:center!important;}
body.page-id-1367 .specialty-hero{background-image:url('https://vidaelaborada.com.br/wp-content/uploads/2026/06/WhatsApp-Image-2026-06-01-at-18.31.03.jpeg')!important;background-position:center!important;}
body.page-id-1369 .specialty-hero{background-image:url('https://vidaelaborada.com.br/wp-content/uploads/2026/06/WhatsApp-Image-2026-06-01-at-18.06.59.jpeg')!important;background-position:center!important;}


/* balao hero especialidades (cartao de vidro em todas) */
.specialty-hero-content{max-width:680px;padding:44px 48px 40px;background:rgba(13,31,26,0.46);backdrop-filter:blur(18px) saturate(125%);-webkit-backdrop-filter:blur(18px) saturate(125%);border:1px solid rgba(255,255,255,0.2);border-radius:var(--radius-xl);box-shadow:0 24px 64px rgba(8,20,14,0.32);}
@media(max-width:600px){.specialty-hero-content{padding:32px 24px 28px;}}


/* carrossel consultorio */
.office-carousel{position:relative;max-width:900px;margin:48px auto 0;border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-xl);}
.office-carousel-track{display:flex;transition:transform .5s ease;}
.office-slide{min-width:100%;}
.office-slide img{width:100%;height:520px;object-fit:cover;display:block;}
.office-prev,.office-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(13,31,26,.45);color:#fff;border:none;width:48px;height:48px;border-radius:50%;font-size:26px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;z-index:2;}
.office-prev:hover,.office-next:hover{background:rgba(13,31,26,.8);}
.office-prev{left:16px;}
.office-next{right:16px;}
.office-dots{position:absolute;bottom:16px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:2;}
.office-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.5);border:none;cursor:pointer;padding:0;transition:background .2s;}
.office-dot.active{background:#fff;}
@media(max-width:600px){.office-slide img{height:300px;}.office-prev,.office-next{width:40px;height:40px;font-size:22px;}}


/* flor enquadramento depoimentos */
.testimonial-img{object-position:center 18%;}

/* Ocultar título duplicado da página /trajetoria/ (impresso pelo page.php) */
body.page-id-1402 .container>h1{display:none!important;}

body.page-id-1402 .elab-page{background:#fff;}
