/* ==========================================================================
   IEDA JARDIN | PARCEIRA AUTORIZADA EMBRACON
   Design System & Master Stylesheet
   ========================================================================== */

:root {
  --primary-red: #ce181e;
  --primary-red-hover: #b01015;
  --primary-red-dark: #8c0d11;
  --primary-red-light: #fef2f2;
  --primary-red-glow: rgba(206, 24, 30, 0.25);
  
  --navy-dark: #0f1f3d;
  --navy-primary: #173161;
  --navy-light: #24488a;
  --navy-subtle: #f1f5f9;
  
  --charcoal-900: #0f172a;
  --charcoal-800: #1e293b;
  --charcoal-700: #334155;
  --charcoal-600: #475569;
  --charcoal-500: #64748b;
  --gray-200: #e2e8f0;
  --gray-100: #f8fafc;
  --white: #ffffff;
  
  --success-green: #25D366;
  --success-hover: #1ebd5b;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.16);
  --shadow-red: 0 8px 24px rgba(206, 24, 30, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--charcoal-800);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   TOP NOTIFICATION BAR
   ========================================================================== */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-bar-badge span.dot {
  width: 8px;
  height: 8px;
  background: var(--success-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--success-green);
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  font-size: 0.82rem;
}

.top-contact-item:hover {
  color: var(--white);
}

.top-contact-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================================
   MAIN HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-embracon {
  height: 38px;
  width: auto;
}

.brand-divider {
  width: 1.5px;
  height: 36px;
  background: var(--gray-200);
}

.consultant-brand {
  display: flex;
  flex-direction: column;
}

.consultant-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.consultant-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 0.05em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal-700);
  position: relative;
  padding: 6px 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header-cta {
  background: var(--primary-red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-header-cta:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(206, 24, 30, 0.4);
}

.btn-header-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal-800);
  margin: 5px 0;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION & BACKGROUND VIDEO
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b1528 0%, #162a52 100%);
  color: var(--white);
  padding: 60px 0 80px 0;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

.hero-overlay-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(206,24,30,0.3) 0%, rgba(206,24,30,0) 70%);
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

.hero-content-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f87171;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title span.highlight-red {
  color: #ff4d4f;
  background: linear-gradient(90deg, #ff4d4f, #ff7875);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #e2e8f0;
  font-weight: 500;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  fill: #4ade80;
  flex-shrink: 0;
}

/* Consultant Mini Card in Hero */
.hero-consultant-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  max-width: 480px;
}

.hero-consultant-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff4d4f;
  box-shadow: 0 0 12px rgba(255,77,79,0.4);
}

.hero-consultant-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.hero-consultant-info p {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ==========================================================================
   SIMULATOR CARD (THE EMBRACON BENCHMARK)
   ========================================================================== */
.simulator-card {
  background: var(--white);
  color: var(--charcoal-900);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.simulator-header {
  text-align: center;
  margin-bottom: 22px;
}

.simulator-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.simulator-subtitle {
  font-size: 0.85rem;
  color: var(--charcoal-500);
  margin-top: 4px;
}

/* Category Tabs */
.sim-tabs-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  background: var(--navy-subtle);
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.sim-tab-btn {
  background: none;
  border: none;
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--charcoal-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.sim-tab-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: var(--transition);
}

.sim-tab-btn:hover {
  color: var(--primary-red);
  background: rgba(255,255,255,0.6);
}

.sim-tab-btn.active {
  background: var(--white);
  color: var(--primary-red);
  box-shadow: var(--shadow-sm);
}

/* Simulator Form Controls */
.sim-control-group {
  margin-bottom: 20px;
}

.sim-control-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.sim-control-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-700);
}

.sim-display-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-red);
}

.sim-slider {
  width: 100%;
  height: 7px;
  border-radius: 5px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
}

.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-red);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(206,24,30,0.4);
  border: 3px solid var(--white);
  transition: transform 0.1s;
}

.sim-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.sim-slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--charcoal-500);
  margin-top: 4px;
}

/* Term Select */
.sim-term-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.term-btn {
  background: var(--navy-subtle);
  border: 1.5px solid transparent;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal-700);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.term-btn:hover {
  border-color: var(--gray-200);
  background: #e2e8f0;
}

.term-btn.active {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

/* Result Box */
.sim-result-box {
  background: var(--primary-red-light);
  border: 1px solid #fee2e2;
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  margin-top: 22px;
  margin-bottom: 20px;
}

.sim-result-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary-red-dark);
}

.sim-result-price {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1.1;
  margin: 4px 0;
}

.sim-result-note {
  font-size: 0.74rem;
  color: var(--charcoal-600);
}

/* Simulator CTA */
.btn-sim-submit {
  width: 100%;
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-red);
}

.btn-sim-submit:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(206, 24, 30, 0.45);
}

.btn-sim-submit svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   METRICS / HIGHLIGHTS BAR
   ========================================================================== */
.metrics-section {
  background: var(--navy-dark);
  color: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-item-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff4d4f;
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-item-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ==========================================================================
   VIDEO SHOWCASE SECTION (IEDA'S YOUTUBE CHANNEL VIDEOS)
   ========================================================================== */
.videos-section {
  padding: 80px 0;
  background: #f8fafc;
}

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

.section-badge {
  display: inline-block;
  background: var(--primary-red-light);
  color: var(--primary-red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--charcoal-600);
  line-height: 1.6;
}

.video-player-container {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.video-main-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}

.video-main-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-playlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 6px;
}

.video-playlist::-webkit-scrollbar {
  width: 6px;
}

.video-playlist::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 4px;
}

.video-playlist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.video-playlist-item:hover {
  border-color: var(--primary-red);
  background: var(--primary-red-light);
  transform: translateX(4px);
}

.video-playlist-item.active {
  border-color: var(--primary-red);
  background: var(--primary-red-light);
  box-shadow: 0 2px 10px rgba(206,24,30,0.12);
}

.v-item-thumb {
  width: 90px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.v-item-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.v-item-content span {
  font-size: 0.72rem;
  color: var(--charcoal-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.v-item-content span svg {
  width: 12px;
  height: 12px;
  fill: var(--primary-red);
}

/* ==========================================================================
   CATEGORIES / MODALIDADES (CARDS WITH EMBRACON ASSETS)
   ========================================================================== */
.categories-section {
  padding: 80px 0;
  background: var(--white);
}

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

.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(206,24,30,0.3);
}

.cat-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  margin-bottom: 20px;
}

.cat-icon-circle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.cat-card p {
  font-size: 0.9rem;
  color: var(--charcoal-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cat-features-list {
  margin-bottom: 24px;
}

.cat-features-list li {
  font-size: 0.83rem;
  color: var(--charcoal-700);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cat-features-list li svg {
  width: 14px;
  height: 14px;
  fill: #16a34a;
  flex-shrink: 0;
}

.btn-cat-action {
  width: 100%;
  background: var(--navy-subtle);
  color: var(--navy-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.cat-card:hover .btn-cat-action {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

/* ==========================================================================
   COMPARISON: CONSÓRCIO VS FINANCIAMENTO
   ========================================================================== */
.comparison-section {
  padding: 80px 0;
  background: #f8fafc;
}

.comparison-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.comp-text-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.comp-text-col p {
  font-size: 0.98rem;
  color: var(--charcoal-600);
  margin-bottom: 24px;
  line-height: 1.65;
}

.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.comp-table th, .comp-table td {
  padding: 14px 18px;
  font-size: 0.88rem;
  text-align: left;
}

.comp-table th {
  background: var(--navy-dark);
  color: var(--white);
  font-weight: 700;
}

.comp-table th:last-child {
  background: var(--primary-red);
}

.comp-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--gray-200);
}

.comp-table td:first-child {
  font-weight: 600;
  color: var(--charcoal-700);
}

.comp-table td.negative {
  color: #dc2626;
  font-weight: 600;
}

.comp-table td.positive {
  color: #16a34a;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.05);
}

.comp-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   HOW IT WORKS & CONTEMPLATION (WITH OFFICIAL EMBRACON ARTWORK)
   ========================================================================== */
.contemplation-section {
  padding: 80px 0;
  background: var(--white);
}

.contemplation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contemp-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contemp-card img {
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  max-height: 240px;
  object-fit: contain;
  background: var(--white);
  padding: 10px;
}

.contemp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.contemp-card p {
  font-size: 0.92rem;
  color: var(--charcoal-600);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ==========================================================================
   CONSULTANT PROFILE: IEDA JARDIN
   ========================================================================== */
.consultant-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0b1528 0%, #162a52 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.consultant-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.consultant-photo-wrapper {
  position: relative;
  text-align: center;
}

.consultant-photo-frame {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.consultant-photo-frame img {
  width: 100%;
  max-width: 380px;
  display: block;
}

.consultant-badge-overlay {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.consultant-text-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.consultant-sub {
  font-size: 1.05rem;
  color: #f87171;
  font-weight: 700;
  margin-bottom: 22px;
}

.consultant-text-col p {
  font-size: 0.96rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 16px;
}

.consultant-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.pillar-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  border-radius: var(--radius-md);
}

.pillar-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pillar-item p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}

.consultant-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-whatsapp-direct {
  background: var(--success-green);
  color: var(--white);
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-direct:hover {
  background: var(--success-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-direct svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-phone-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-phone-secondary:hover {
  background: rgba(255,255,255,0.2);
}

.btn-phone-secondary svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-align: left;
}

.faq-question span.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal-700);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question span.faq-icon {
  transform: rotate(45deg);
  background: var(--primary-red);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 22px;
  font-size: 0.92rem;
  color: var(--charcoal-600);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  padding-bottom: 20px;
}

/* ==========================================================================
   BLOG SECTION (MKTG BRASIL MANDATORY SEO RULE)
   ========================================================================== */
.blog-section {
  padding: 80px 0;
  background: var(--white);
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(206,24,30,0.3);
}

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

.blog-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--charcoal-600);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* Blog Article Modal */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.blog-modal.active {
  display: flex;
}

.blog-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--navy-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-modal-article h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.blog-modal-article p {
  margin-bottom: 14px;
  color: var(--charcoal-700);
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #081120;
  color: #94a3b8;
  padding-top: 70px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 36px;
  margin-bottom: 16px;
}

.footer-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

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

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: #ff4d4f;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-disclaimer-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 30px 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #64748b;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom a {
  color: #ff4d4f;
  font-weight: 600;
}

/* ==========================================================================
   MANDATORY FLOATING WIDGETS (MKTG BRASIL)
   ========================================================================== */

/* WhatsApp Pulse Widget (Bottom Right) */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsappPulse 2.2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: #ffffff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* MKTG Brasil Floating Badge (Bottom Left) */
.mktg-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  padding: 8px 16px 8px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mktg-float:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.3);
}

.mktg-float-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.mktg-float-text {
  display: flex;
  flex-direction: column;
}

.mktg-text-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.mktg-text-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: #94a3b8;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE-FIRST)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .video-player-container {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-layout {
    grid-template-columns: 1fr;
  }
  
  .consultant-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .consultant-cta-buttons {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-contacts {
    display: none;
  }
  
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-section {
    padding: 40px 0 60px 0;
  }
  
  .sim-tabs-nav {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .contemplation-grid {
    grid-template-columns: 1fr;
  }
  
  .consultant-pillars {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .mktg-float {
    bottom: 90px;
    left: 16px;
    padding: 6px 12px 6px 8px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

/* ==========================================================================
   RICH BLOG CARDS & DEDICATED ARTICLE PAGES
   ========================================================================== */

/* Enhanced Blog Card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(206,24,30,0.3);
}

.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #0f172a;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(206, 24, 30, 0.92);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 2;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--charcoal-500);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--primary-red);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--charcoal-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.blog-author-snippet {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary-red);
}

.blog-author-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal-700);
}

.btn-blog-read {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--primary-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.btn-blog-read:hover {
  gap: 8px;
  color: var(--primary-red-hover);
}

/* ==========================================================================
   DEDICATED ARTICLE PAGE LAYOUT (/blog/*.html)
   ========================================================================== */
.blog-page-body {
  background: #f8fafc;
}

.article-single {
  padding: 40px 0 80px 0;
}

.article-container {
  max-width: 860px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.article-breadcrumbs {
  font-size: 0.84rem;
  color: var(--charcoal-500);
  margin-bottom: 24px;
}

.article-breadcrumbs a {
  color: var(--navy-primary);
  font-weight: 600;
}

.article-breadcrumbs a:hover {
  color: var(--primary-red);
}

.article-category-badge {
  display: inline-block;
  background: var(--primary-red-light);
  color: var(--primary-red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.article-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.article-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 30px;
}

.author-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-red);
}

.author-name {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal-800);
}

.author-role {
  display: block;
  font-size: 0.74rem;
  color: var(--primary-red);
  font-weight: 600;
}

.article-details-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--charcoal-500);
}

.article-featured-img-wrap {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.article-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--charcoal-800);
  font-weight: 500;
  border-left: 4px solid var(--primary-red);
  padding-left: 20px;
  margin-bottom: 36px;
  background: #fdf2f2;
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 36px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--charcoal-700);
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  margin: 20px 0 24px 24px;
}

.article-body li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal-700);
  margin-bottom: 10px;
  list-style: disc;
}

.article-cta-box {
  background: linear-gradient(135deg, #0b1528 0%, #162a52 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 48px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta-box-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.cta-box-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-box-content p {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.article-author-card {
  display: flex;
  gap: 24px;
  background: #f8fafc;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 48px;
}

.author-card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-red);
  flex-shrink: 0;
}

.author-card-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.author-card-text p {
  font-size: 0.88rem;
  color: var(--charcoal-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.author-card-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--charcoal-700);
  font-weight: 600;
}

.article-back-bar {
  margin-top: 36px;
  text-align: center;
}

.btn-back-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-back-blog:hover {
  background: var(--primary-red);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .article-container {
    padding: 24px 18px;
  }
  
  .article-featured-img-wrap {
    height: 240px;
  }
  
  .article-cta-box {
    flex-direction: column;
    text-align: center;
  }
  
  .article-author-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
