/*
Theme Name: Zenith Saúde Mental
Theme URI: https://www.zenithsaudemental.com
Author: Zenith Saúde Mental
Author URI: https://www.zenithsaudemental.com
Description: Tema WordPress personalizado para a Zenith – Clínica Virtual de Saúde Mental. Design "Luminous Calm" com gradientes azul-verde, glassmorphism e animações suaves.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zenith-saude-mental
Tags: health, mental-health, clinic, telemedicine, one-page, custom-menu, featured-images
*/

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

:root {
  --zenith-deep: #0f2b3c;
  --zenith-blue: #1a3a52;
  --zenith-green: #2d8a56;
  --zenith-green-light: #6bc88d;
  --zenith-sage: #7aab8a;
  --zenith-cream: #faf8f2;
  --zenith-warm: #f7f3eb;
  --zenith-bg: #fcfbf7;
  --zenith-text: #1a2e3d;
  --zenith-muted: #6b7f8e;
  --zenith-border: #e5ebe7;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
}

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

body {
  font-family: var(--font-body);
  color: var(--zenith-text);
  background-color: var(--zenith-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ============================================================
   GRADIENTS & UTILITIES
   ============================================================ */
.zenith-gradient {
  background: linear-gradient(135deg, #0f2b3c, #1a4a3a, #2d6a4a);
}

.zenith-gradient-light {
  background: linear-gradient(135deg, #e8f0ec, #f0f5f2);
}

.zenith-text-gradient {
  background: linear-gradient(135deg, #1a3a52, #2d8a56);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(15, 30, 45, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.5s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  transition: color 0.5s ease;
}

.scrolled .logo-text .brand-name {
  color: var(--zenith-deep);
}

.logo-text .brand-sub {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--zenith-green-light);
  transition: color 0.5s ease;
}

.scrolled .logo-text .brand-sub {
  color: var(--zenith-green);
}

/* Desktop Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.main-nav a {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a.current {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.scrolled .main-nav a {
  color: rgba(15, 43, 60, 0.7);
}

.scrolled .main-nav a:hover {
  color: var(--zenith-green);
  background: rgba(45, 138, 86, 0.05);
}

.scrolled .main-nav a.current {
  color: var(--zenith-green);
  background: rgba(45, 138, 86, 0.1);
}

.nav-cta {
  margin-left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: var(--zenith-green);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  box-shadow: 0 8px 25px rgba(45, 138, 86, 0.25);
  transform: translateY(-2px);
  background: var(--zenith-green) !important;
}

/* Mobile Menu */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.scrolled .mobile-toggle {
  color: var(--zenith-deep);
}

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
}

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

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(15, 43, 60, 0.7);
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.current {
  color: var(--zenith-green);
  background: rgba(45, 138, 86, 0.05);
}

.mobile-nav .nav-cta {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 0;
  border-radius: 0.75rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.4));
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.6), transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 7rem;
  padding-bottom: 5rem;
  max-width: 42rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.hero-badge .pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--zenith-green-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-badge span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--zenith-green-light), var(--zenith-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  background: var(--zenith-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(45, 138, 86, 0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(45, 138, 86, 0.3);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: transparent;
  color: var(--zenith-green);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(45, 138, 86, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-green:hover {
  background: rgba(45, 138, 86, 0.05);
}

.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust .divider {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.2);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 6rem 0;
}

.section-cream {
  background: var(--zenith-cream);
}

.section-dark {
  position: relative;
  overflow: hidden;
}

.section-dark .deco-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.section-dark .deco-circle-1 {
  top: 5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.05);
}

.section-dark .deco-circle-2 {
  bottom: 2.5rem;
  right: -5rem;
  width: 15rem;
  height: 15rem;
  background: rgba(45, 138, 86, 0.1);
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(45, 138, 86, 0.1);
  color: var(--zenith-green);
  margin-bottom: 1rem;
}

.section-heading.light .label {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.section-heading .title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--zenith-deep);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-heading .title { font-size: 2.25rem; }
}

.section-heading.light .title {
  color: #fff;
}

.section-heading .subtitle {
  font-size: 1rem;
  color: var(--zenith-muted);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

.section-heading.light .subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

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

.about-image-wrapper img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-stat-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  padding: 1.25rem;
  display: none;
}

@media (min-width: 768px) {
  .about-stat-card { display: flex; }
}

.about-stat-card .stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(45, 138, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.about-stat-card .stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--zenith-deep);
}

.about-stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--zenith-muted);
}

.about-content .label-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(45, 138, 86, 0.1);
  color: var(--zenith-green);
  margin-bottom: 1rem;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--zenith-deep);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-content h2 { font-size: 2.25rem; }
}

.about-content p {
  color: var(--zenith-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(45, 138, 86, 0.1);
  transform: translateY(-4px);
  border-color: rgba(45, 138, 86, 0.2);
}

.service-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(45, 138, 86, 0.1), rgba(122, 171, 138, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.5s ease;
}

.service-card:hover .icon-box {
  background: linear-gradient(135deg, rgba(45, 138, 86, 0.2), rgba(122, 171, 138, 0.2));
}

.service-card .icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--zenith-green);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--zenith-deep);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--zenith-muted);
  line-height: 1.6;
  flex: 1;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zenith-green);
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.service-card:hover .card-link {
  gap: 0.5rem;
}

/* ============================================================
   DIFERENCIAIS (DARK SECTION)
   ============================================================ */
.diferencial-card {
  border-radius: 1rem;
  padding: 1.75rem;
}

.diferencial-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(45, 138, 86, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.diferencial-card .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--zenith-green-light);
}

.diferencial-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.diferencial-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.diferenciais-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-item {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 138, 86, 0.1), rgba(122, 171, 138, 0.1));
  border: 2px solid rgba(45, 138, 86, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-circle span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a3a52, #2d8a56);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--zenith-deep);
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.875rem;
  color: var(--zenith-muted);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 138, 86, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: #f59e0b;
  color: #f59e0b;
}

.testimonial-card .quote {
  font-size: 0.875rem;
  color: var(--zenith-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45, 138, 86, 0.2), rgba(122, 171, 138, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--zenith-green);
}

.testimonial-author .name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--zenith-deep);
}

.testimonial-author .role {
  font-size: 0.75rem;
  color: var(--zenith-muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.6));
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-content h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .cta-content h2 { font-size: 3rem; }
}

.cta-content .highlight {
  background: linear-gradient(135deg, var(--zenith-green-light), var(--zenith-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   PAGE HERO (Internal pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.page-hero .deco {
  position: absolute;
  top: 2.5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(45, 138, 86, 0.1);
  filter: blur(60px);
}

.page-hero .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.page-hero .label-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .page-hero h1 { font-size: 3rem; }
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 42rem;
}

/* ============================================================
   MISSION/VISION/VALUES CARDS
   ============================================================ */
.mvv-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mvv-grid { grid-template-columns: repeat(3, 1fr); }
}

.mvv-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 138, 86, 0.1);
  text-align: center;
}

.mvv-card .icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.mvv-card .icon-box svg {
  width: 2rem;
  height: 2rem;
  color: var(--zenith-green);
}

.mvv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zenith-deep);
  margin-bottom: 0.75rem;
}

.mvv-card p {
  font-size: 0.875rem;
  color: var(--zenith-muted);
  line-height: 1.7;
}

/* ============================================================
   COMMITMENT GRID
   ============================================================ */
.commitment-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .commitment-grid { grid-template-columns: repeat(4, 1fr); }
}

.commitment-item {
  text-align: center;
  padding: 1.5rem;
}

.commitment-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(45, 138, 86, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.commitment-item .icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--zenith-green);
}

.commitment-item h3 {
  font-weight: 700;
  color: var(--zenith-deep);
  margin-bottom: 0.5rem;
}

.commitment-item p {
  font-size: 0.875rem;
  color: var(--zenith-muted);
  line-height: 1.6;
}

/* ============================================================
   SERVICES PAGE (FULL GRID)
   ============================================================ */
.services-full-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-full-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SERVICE DETAIL
   ============================================================ */
.service-detail-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .service-detail-grid { grid-template-columns: 2fr 1fr; }
}

.service-detail-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--zenith-deep);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.service-detail-content h2:first-child {
  margin-top: 0;
}

.service-detail-content p {
  color: var(--zenith-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
}

.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--zenith-muted);
  font-size: 0.9375rem;
}

.service-detail-content ul li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--zenith-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-sidebar {
  position: sticky;
  top: 6rem;
}

.sidebar-card {
  background: var(--zenith-cream);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--zenith-deep);
  margin-bottom: 1rem;
}

.sidebar-card a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zenith-muted);
  transition: all 0.3s ease;
  margin-bottom: 0.25rem;
}

.sidebar-card a:hover,
.sidebar-card a.active {
  color: var(--zenith-green);
  background: rgba(45, 138, 86, 0.05);
}

/* ============================================================
   AGENDAMENTO FORM
   ============================================================ */
.form-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zenith-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--zenith-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--zenith-text);
  background: #fff;
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--zenith-green);
  box-shadow: 0 0 0 3px rgba(45, 138, 86, 0.1);
}

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

/* ============================================================
   BLOG
   ============================================================ */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.blog-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--zenith-border);
  background: #fff;
  color: var(--zenith-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--zenith-green);
  color: #fff;
  border-color: var(--zenith-green);
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--zenith-border);
  transition: all 0.3s ease;
}

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

.blog-card .card-image {
  height: 12rem;
  background: linear-gradient(135deg, rgba(45, 138, 86, 0.1), rgba(122, 171, 138, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card .card-image svg {
  width: 3rem;
  height: 3rem;
  color: var(--zenith-green);
  opacity: 0.5;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card .card-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--zenith-green);
  background: rgba(45, 138, 86, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--zenith-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card .card-excerpt {
  font-size: 0.875rem;
  color: var(--zenith-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card .card-meta {
  font-size: 0.75rem;
  color: var(--zenith-muted);
  opacity: 0.7;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zenith-deep);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--zenith-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: var(--zenith-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand .sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact li svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-contact li a,
.footer-contact li span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
  color: #fff;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .lgpd {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  transform: translateY(-4px);
}

.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.whatsapp-float span {
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
}

@media (min-width: 640px) {
  .whatsapp-float span { display: inline; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: var(--zenith-sage);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--zenith-green);
}

/* WordPress specific overrides */
.wp-block-image img {
  border-radius: 1rem;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
