:root {
  --primary: #5B4789;
  --primary-dark: #3F2F66;
  --secondary: #8E7CC6;
  --accent: #E85A8C;
  --accent-light: #FF8AA4;
  --teal: #2DB8AE;
  --success: #2E9B57;
  --warning: #E89B2D;
  --bg: #FFFFFF;
  --bg-light: #F6F5FB;
  --bg-section: #F0EEF8;
  --bg-soft: #FAF9FD;
  --text-dark: #1C1A27;
  --text-light: #5C586C;
  --text-muted: #8A8699;
  --border: #E6E2F0;
  --shadow-sm: 0 2px 8px rgba(40, 30, 70, 0.04);
  --shadow-md: 0 12px 32px rgba(40, 30, 70, 0.08);
  --shadow-lg: 0 24px 56px rgba(40, 30, 70, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 999px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1rem; color: var(--text-light); }

a { text-decoration: none; color: inherit; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HEADER === */
header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 8px 0;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo { display: flex; align-items: center; }

.logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--bg-light);
}

.nav-links a.btn-cora {
  margin-left: 8px;
  color: white !important;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 11px 22px;
}

.nav-links a.btn-cora:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(91, 71, 137, 0.28);
}

.drawer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
  color: var(--primary);
  cursor: pointer;
  background: var(--bg-light);
  transition: all 0.2s ease;
}

.drawer-icon:hover { background: var(--border); }

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100%;
  background: white;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer-menu.active { right: 0; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.close-drawer-btn {
  background: var(--bg-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  color: var(--text-dark);
  cursor: pointer;
}

.drawer-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 14px 12px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.drawer-link:hover { background: var(--bg-light); color: var(--primary); }

.drawer-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

/* === BUTTONS === */
.btn-cora,
.btn-outline-cora {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.2;
}

.btn-cora {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 6px 18px rgba(91, 71, 137, 0.22);
}

.btn-cora:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(91, 71, 137, 0.3);
  color: white;
}

.btn-outline-cora {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-cora:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.88rem; }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }

/* === HERO (Understood-inspired) === */
.hero {
  padding: calc(var(--header-h) + 56px) 0 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(142, 124, 198, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(232, 90, 140, 0.1), transparent 55%),
    linear-gradient(180deg, #FBFBFE 0%, #F3F1FA 100%);
}

.hero .row { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.12rem;
  margin-bottom: 28px;
  max-width: 540px;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, var(--primary), var(--secondary));
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  pointer-events: none;
}

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

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-width: 150px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === TOPIC PILLS (Understood-style) === */
.topics-bar {
  padding: 28px 0;
  background: white;
  border-bottom: 1px solid var(--border);
}

.topics-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.topic-pill i { color: var(--secondary); font-size: 0.85rem; }

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

.topic-pill:hover i { color: white; }

/* === SECTIONS === */
.section { padding: 88px 0; position: relative; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header.text-start { text-align: left; margin-left: 0; }

.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0;
}

.section-subtitle-inverse { color: rgba(255,255,255,0.88); font-size: 1.05rem; }

.bg-light { background: var(--bg-light) !important; }
.bg-section { background: var(--bg-section) !important; }
.bg-soft { background: var(--bg-soft) !important; }

/* === ABOUT === */
.aboutme-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.aboutme-card p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.aboutme-card p:last-child { margin-bottom: 0; }

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--bg-light);
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* === CATEGORY GRID === */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.category-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  margin-bottom: 18px;
}

.category-card.purple .category-icon { background: linear-gradient(135deg, #6A4C93, #8E7CC6); }
.category-card.blue .category-icon { background: linear-gradient(135deg, #4A90D9, #6CB4EE); }
.category-card.teal .category-icon { background: linear-gradient(135deg, #1ABC9C, #4ECDC4); }
.category-card.green .category-icon { background: linear-gradient(135deg, #27AE60, #4CAF50); }
.category-card.orange .category-icon { background: linear-gradient(135deg, #F39C12, #FF9800); }
.category-card.pink .category-icon { background: linear-gradient(135deg, #FF6B9D, #FF8AA4); }
.category-card.indigo .category-icon { background: linear-gradient(135deg, #663399, #9370DB); }
.category-card.red .category-icon { background: linear-gradient(135deg, #E74C3C, #FF6B6B); }

.category-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  flex: 1;
}

.category-card .cat-arrow {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.blog-card > img,
.blog-card .blog-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg-section);
}

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

.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.blog-card .badge,
.card-meta .badge {
  background: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex: 1;
}

.blog-card .btn-outline-cora,
.blog-card .btn-cora {
  align-self: flex-start;
  margin-top: auto;
}

/* padding when meta/title are direct children (index JS markup) */
.blog-card > .card-meta,
.blog-card > h4,
.blog-card > p,
.blog-card > a {
  margin-left: 22px;
  margin-right: 22px;
}

.blog-card > .card-meta { margin-top: 20px; }
.blog-card > a { margin-bottom: 22px; }

/* === LINKEDIN ARTICLES === */
.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.linkedin-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.linkedin-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.linkedin-card > img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  background: var(--bg-section);
}

.linkedin-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.linkedin-card .card-meta { margin-bottom: 12px; }

.linkedin-card .badge {
  color: #0A66C2;
  background: #EAF3FC;
  border-color: #C8E0F5;
}

.linkedin-card h3 {
  font-size: 1.12rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.linkedin-card p {
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 18px;
}

.linkedin-card .btn-outline-cora { align-self: flex-start; }

/* === SERVICES === */
.services-section {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 100%);
  color: white;
}

.services-section .section-title {
  color: white;
}

.services-section .section-title span {
  background: linear-gradient(135deg, #fff, var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-bottom: 16px;
  transition: all 0.25s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.service-item h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-item h3 i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.service-item p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-size: 0.98rem;
}

.services-section .btn-cora {
  background: white;
  color: var(--primary) !important;
  box-shadow: none;
}

.services-section .btn-cora:hover {
  background: var(--bg-light);
  color: var(--primary-dark) !important;
}

/* === FEATURE / TOOL CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.feature-card .btn-cora { align-self: flex-start; }

/* === PROCESS === */
.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.processo-step {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}

.processo-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.processo-step .step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.processo-step h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.processo-step p {
  font-size: 0.9rem;
  margin: 0;
}

.processo-footer {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  border: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.processo-footer p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 22px;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-dark);
}

.testimonial-author {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === PLANOS === */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.plano-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plano-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.plano-card.popular::before {
  content: 'Mais popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
}

.plano-card h3 {
  font-size: 1.35rem;
  margin: 12px 0 8px;
}

.plano-card .plano-subtitulo {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 8px;
  flex: 1;
}

.plano-preco {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 18px 0 24px;
}

.plano-card.popular .plano-preco { color: var(--accent); }

.plano-card .btn-cora { width: 100%; }

/* === SERVICE CARD (servicos page) === */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  transition: all 0.25s ease;
}

.service-card:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.service-card .badge-custom {
  background: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--border);
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  display: inline-block;
  font-size: 0.8rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 12px;
}

/* === CONTACT === */
.contact-section { background: var(--bg-light); }

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

.contact-form .form-control,
.contact-form .form-select,
.form-control {
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91, 71, 137, 0.12);
}

.contact-info-block h4 {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--primary-dark);
}

.contact-details p {
  margin: 0;
  font-size: 0.95rem;
}

.map-container iframe {
  border-radius: var(--radius-md);
  border: none;
  width: 100%;
}

/* === CTA / NEWSLETTER === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  color: white;
  text-align: center;
}

.cta-section .section-title,
.cta-section .section-subtitle,
.cta-section p {
  color: white;
  -webkit-text-fill-color: white;
}

.cta-section .section-title span {
  background: none;
  -webkit-text-fill-color: white;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cta-section .btn-cora {
  background: white;
  color: var(--primary) !important;
}

.cta-section .form-control {
  border: none;
  box-shadow: var(--shadow-sm);
}

/* === FOOTER === */
footer {
  background: #2A2140;
  color: white;
  padding: 64px 0 28px;
}

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

.footer-logo { display: inline-flex; margin-bottom: 16px; }
.footer-logo .logo-img {
  height: 42px;
  max-width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-about {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 18px;
  color: white;
  font-weight: 600;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.copyright {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* === WHATSAPP === */
.whatsapp-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 104, 0.35);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.08);
  color: white;
}

/* === LISTS / MISC === */
.publico-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.publico-list li,
.beneficios-list li {
  background: white;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.publico-list li i,
.beneficios-list li i {
  color: var(--accent);
  min-width: 20px;
}

.beneficios-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.beneficios-section .section-title { color: white; }
.beneficios-section .section-title span {
  background: none;
  -webkit-text-fill-color: white;
  color: white;
}

.beneficios-list li {
  background: rgba(255,255,255,0.12);
  border-color: transparent;
  color: rgba(255,255,255,0.92);
}

.beneficios-list li i { color: #E8E3D0; }

.modalities-section { background: var(--primary); color: white; }
.modalities-section .section-title,
.modalities-section .section-subtitle { color: white; }
.modality-icon { font-size: 3rem; margin-bottom: 16px; color: var(--accent); }

/* === HERO PAGE (inner pages) === */
.hero-page {
  background: var(--bg-light);
  padding: calc(var(--header-h) + 48px) 0 56px;
  text-align: center;
}

.hero-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.hero-page p {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* === UTILITIES === */
.text-center { text-align: center; }
.text-start { text-align: left; }
.ps-0 { padding-left: 0; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.w-100 { width: 100%; }

/* === RESPONSIVE === */
@media (min-width: 992px) {
  .nav-links { display: flex; }
  .drawer-icon { display: none; }
}

@media (max-width: 991px) {
  .nav-links { display: none !important; }
  .drawer-icon { display: flex; }
  .processo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero-image-wrapper { max-width: 360px; margin-top: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .processo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-links, .footer-logo { justify-content: center; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-cora,
  .hero-buttons .btn-outline-cora { width: 100%; }
  .hero-stats { flex-direction: column; }
  .stat-item { width: 100%; }
  .contact-form-card { padding: 28px 20px; }
  .aboutme-card { padding: 24px; }
}

@media (max-width: 576px) {
  .container { padding: 0 16px; }
  .whatsapp-button { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 24px; }
}

/* === VISUAL REFRESH: editorial, acolhedor e inspirado no Understood === */
:root {
  --primary: #5A3E85;
  --primary-dark: #29233D;
  --secondary: #8064A8;
  --accent: #E86A78;
  --accent-light: #F29A8C;
  --teal: #55BDB2;
  --bg-light: #F1EDF8;
  --bg-section: #F8F6FB;
  --bg-soft: #FCFBFE;
  --text-dark: #29233D;
  --text-light: #625D70;
  --text-muted: #898396;
  --border: #E5DFEE;
  --shadow-sm: 0 2px 6px rgba(41, 35, 61, 0.04);
  --shadow-md: 0 10px 24px rgba(41, 35, 61, 0.08);
  --shadow-lg: 0 20px 42px rgba(41, 35, 61, 0.12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

body { color: var(--text-dark); background: #fff; }

header {
  background: #fff;
  backdrop-filter: none;
  border-bottom-color: var(--border);
  box-shadow: none;
}

header.scrolled { box-shadow: 0 3px 14px rgba(41, 35, 61, 0.08); }

.logo-img { height: 46px; }

.nav-links { gap: 2px; }

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #4B4659;
}

.nav-links a:hover,
.nav-links a.active { background: #F1EDF8; color: var(--primary); }

.nav-links a.btn-cora {
  background: var(--accent);
  border-radius: 8px;
  box-shadow: none;
}

.nav-links a.btn-cora:hover { background: #D95768; box-shadow: none; }

.btn-cora {
  background: var(--accent);
  border-radius: 8px;
  box-shadow: none;
}

.btn-cora:hover { background: #D95768; box-shadow: none; transform: translateY(-1px); }

.btn-outline-cora {
  border: 2px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
}

.btn-outline-cora:hover { background: var(--primary); box-shadow: none; }

.hero {
  padding: 142px 0 78px;
  background: #F1EDF8;
}

.hero::before,
.hero::after { display: none; }

.hero h1 {
  max-width: 590px;
  color: var(--primary-dark);
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 span {
  background: none;
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.hero p { max-width: 510px; font-size: 1.03rem; }

.hero-eyebrow {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--primary);
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.hero-eyebrow i { color: var(--accent); }

.hero-buttons { margin-bottom: 30px; }
.hero-buttons .btn-lg { border-radius: 8px; }

.hero-image-wrapper {
  max-width: 450px;
  border-radius: 48% 48% 12px 12px;
  box-shadow: none;
  border: 10px solid #fff;
  background: var(--secondary);
}

.hero-image-wrapper::after { box-shadow: inset 0 0 0 1px rgba(90, 62, 133, 0.18); }

.hero-stats { gap: 20px; }

.stat-item {
  padding: 0;
  min-width: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  gap: 10px;
}

.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  font-size: 14px;
}

.stat-number { font-size: 1.08rem; }
.stat-label { font-size: 0.72rem; }

.topics-bar { padding: 22px 0; border-bottom: 1px solid var(--border); }
.topics-scroll { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }

.topic-pill {
  flex: 0 0 auto;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: inset 0 0 0 1px var(--border);
}

.topic-pill:hover { background: var(--primary); box-shadow: none; }

.section { padding: 96px 0; }
.section-header { margin-bottom: 42px; }
.section-kicker { color: var(--accent); letter-spacing: 0.12em; }

.section-title {
  color: var(--primary-dark);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
}

.section-title span {
  background: none;
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.section-subtitle { max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header.text-start .section-subtitle { margin-left: 0; }

.aboutme-card,
.category-card,
.blog-card,
.linkedin-card,
.feature-card,
.testimonial-card,
.plano-card,
.processo-step,
.service-card,
.contact-form-card {
  border-radius: 12px;
  box-shadow: none;
  border-color: var(--border);
}

.aboutme-card { padding: 34px; border-top: 5px solid var(--accent); }
.about-photo { border-radius: 12px; box-shadow: none; }

.category-grid { gap: 14px; }

.category-card {
  min-height: 215px;
  padding: 24px 20px;
  border-top: 4px solid var(--primary);
  border-left: 0;
}

.category-card:nth-child(2n) { border-top-color: var(--accent); }
.category-card:nth-child(3n) { border-top-color: var(--teal); }
.category-card:nth-child(4n) { border-top-color: #E7B94C; }
.category-card:hover { box-shadow: var(--shadow-md); border-color: var(--border); transform: translateY(-3px); }

.category-icon { width: 48px; height: 48px; border-radius: 10px; margin-bottom: 16px; }
.category-card h3 { font-size: 1.08rem; }

.blog-card:hover,
.linkedin-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.plano-card:hover,
.processo-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.blog-card > img,
.blog-card .blog-thumb,
.linkedin-card > img { height: 170px; }

.blog-card .badge,
.card-meta .badge { border-radius: 5px; }

.services-section {
  background: var(--primary);
  color: #fff;
}

.services-section .section-title span {
  background: none;
  color: #F7C85B;
  -webkit-text-fill-color: #F7C85B;
}

.service-item {
  background: #6B4B96;
  border: 0;
  border-radius: 10px;
  backdrop-filter: none;
}

.service-item:hover { background: #7658A0; transform: none; }
.service-item h3 i { background: var(--accent); }

.services-section .btn-cora { background: #F7C85B; color: var(--primary-dark) !important; }
.services-section .btn-cora:hover { background: #FFD97D; }

.feature-icon { border-radius: 10px; background: var(--teal); }
.linkedin-card .badge { border-radius: 5px; }

.processo-step .step-number { border-radius: 50%; background: var(--primary); }
.processo-step:nth-child(2) .step-number { background: var(--accent); }
.processo-step:nth-child(3) .step-number { background: var(--teal); }
.processo-step:nth-child(4) .step-number { background: #D99D32; }

.cta-section {
  background: var(--primary);
}

.cta-section .btn-cora { background: #F7C85B; color: var(--primary-dark) !important; }

footer { background: var(--primary-dark); }

.footer-logo .logo-img { filter: brightness(0) invert(1); }

.whatsapp-button { border-radius: 12px; background: #25D366; box-shadow: none; }

/* === FINAL POLISH === */
.hero h1 span,
.section-title span,
.hero-page h1 span,
.article-header h1 span,
.article-title span {
  background: none !important;
  background-image: none !important;
  color: var(--primary) !important;
  -webkit-text-fill-color: var(--primary) !important;
}

.support-section { background: #fff; }

.support-section .section-header { max-width: 720px; }

.testimonial-card {
  position: relative;
  padding: 34px 34px 28px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  background: #fff;
}

.col-md-6:nth-child(2) .testimonial-card { border-top-color: var(--accent); }

.quote-mark {
  height: 32px;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.8;
  font-weight: 700;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  font-style: normal;
  color: var(--text-light);
  margin-bottom: 28px;
}

.testimonial-card footer {
  justify-content: flex-start;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-author { border-color: var(--primary); }

#artigos .blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

#artigos .blog-card > img,
#artigos .blog-card .blog-thumb { height: 225px; }

#artigos .blog-card-body {
  padding: 26px 28px 28px;
}

#artigos .blog-card .card-meta { margin-bottom: 16px; }

#artigos .blog-card h3 {
  color: var(--primary-dark);
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

#artigos .blog-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

#artigos .blog-card .btn-outline-cora { align-self: flex-start; }

.linkedin-card h3 { color: var(--primary-dark); }

@media (max-width: 768px) {
  #artigos .blog-grid { grid-template-columns: 1fr; }
  #artigos .blog-card > img,
  #artigos .blog-card .blog-thumb { height: 190px; }
  .testimonial-card { padding: 28px 24px 24px; }
}

@media (max-width: 768px) {
  .hero { padding-top: 122px; }
  .hero-image-wrapper { border-radius: 40% 40% 10px 10px; }
  .section { padding: 68px 0; }
}
