/* ==========================================================================
   INSTITUTO DIREITO MATERNO - DESIGN SYSTEM 100% RESPONSIVO & REFINADO
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #C2414C;
  --primary-dark: #A32E38;
  --primary-light: #FDF2F3;
  --primary-hover: #AF333D;
  --primary-gradient: linear-gradient(135deg, #D44E59 0%, #B83541 100%);
  
  --accent-gold: #D99B26;
  --accent-gold-light: #FFF9EE;
  
  /* Slate & Navy Neutrals */
  --navy-950: #0F172A;
  --navy-900: #1E293B;
  --navy-800: #334155;
  --navy-700: #475569;
  --navy-600: #64748B;
  
  /* Status Colors */
  --success: #059669;
  --success-light: #F0FDF4;
  --warning: #D97706;
  --warning-light: #FFFBEB;
  --info: #2563EB;
  --info-light: #EFF6FF;

  /* Surfaces & Backgrounds */
  --bg-page: #FAF9F8;
  --bg-card: #FFFFFF;
  --bg-card-subtle: #F5F3F0;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --border-subtle: #EDE9E5;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 3px 10px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 10px 25px -4px rgba(15, 23, 42, 0.06), 0 4px 10px -2px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.08);
  --shadow-primary: 0 6px 20px rgba(194, 65, 76, 0.25);
  --shadow-whatsapp: 0 6px 20px rgba(37, 211, 102, 0.3);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

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

/* ==========================================================================
   TOP NOTIFICATION TICKER
   ========================================================================== */
.top-ticker {
  background: #0F172A;
  color: #CBD5E1;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-ticker strong {
  color: #FFFFFF;
  font-weight: 600;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  transition: var(--transition-normal);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-brand img.logo-icon {
  width: 40px;
  height: 40px;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.brand-subtitle {
  font-size: 0.74rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #F8FAFC;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--navy-700);
  font-weight: 500;
}

.header-security-badge svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--navy-950);
  color: #FFFFFF;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.header-cta-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  background: radial-gradient(circle at 85% 15%, rgba(212, 78, 89, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 15% 85%, rgba(217, 155, 38, 0.05) 0%, transparent 45%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  min-width: 0;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  min-width: 0;
  width: 100%;
}

/* Modular Trust Tags Row (100% Responsivo e sem estourar a tela) */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
}

.hero-trust-row::-webkit-scrollbar {
  display: none;
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem clamp(0.5rem, 1vw, 0.75rem);
  border-radius: var(--radius-full);
  font-size: clamp(0.74rem, 1.8vw, 0.82rem);
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  flex-shrink: 0;
}

.trust-tag-primary {
  background: #FFF1F2;
  color: #BE123C;
  border-color: #FECDD3;
}

.trust-tag-success {
  background: #F0FDF4;
  color: #15803D;
  border-color: #BBF7D0;
}

.trust-tag-gold {
  background: #FFFBEB;
  color: #B45309;
  border-color: #FDE68A;
}

.trust-tag-icon {
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--navy-950);
  letter-spacing: -0.025em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title .highlight {
  color: var(--primary);
  display: inline;
}

.hero-description {
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  color: var(--navy-700);
  line-height: 1.6;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  font-weight: 700;
  color: var(--navy-950);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 0.1rem;
}

.hero-visual-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 0.5rem;
}

.hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #F8FAFC;
}

.hero-visual-card img {
  width: 100%;
  height: clamp(300px, 46vw, 420px);
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.35s ease;
}

.hero-visual-card:hover img {
  transform: scale(1.02);
}

.hero-card-banner {
  padding: 1.15rem 1.35rem;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.9rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pill-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.pill-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-950);
  font-weight: 600;
  line-height: 1.3;
}

.pill-text span {
  font-size: 0.82rem;
  color: var(--navy-600);
  line-height: 1.35;
  display: block;
}
  color: var(--text-muted);
}

/* ==========================================================================
   QUIZ WRAPPER & SECTION
   ========================================================================== */
.quiz-section {
  padding: 3.5rem 0 5.5rem;
  background: #FFFFFF;
  position: relative;
}

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

.quiz-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.quiz-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--navy-950);
  margin-top: 0.5rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.quiz-section-header p {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--navy-600);
  font-weight: 400;
}

/* ==========================================================================
   SECTION: QUEM TEM DIREITO
   ========================================================================== */
.rights-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
}

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

.section-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: #F1F5F9;
  color: var(--navy-700);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--navy-950);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-header p {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--navy-600);
  font-weight: 400;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.right-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border-color);
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.right-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: #CBD5E1;
}

.right-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.15rem;
}

.right-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 0.45rem;
}

.right-card p {
  font-size: 0.94rem;
  color: var(--navy-700);
  line-height: 1.55;
  margin-bottom: 1.15rem;
  font-weight: 400;
}

.right-card-highlight {
  margin-top: auto;
  padding: 0.55rem 0.95rem;
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   SECTION: BENEFIT VALUES
   ========================================================================== */
.values-section {
  padding: 4.5rem 0;
  background: #FFFFFF;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.values-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--navy-950);
  margin-top: 0.5rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.values-content p {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--navy-700);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.values-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.values-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.values-bullet-item svg {
  width: 22px;
  height: 22px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.values-bullet-item strong {
  color: var(--navy-950);
  font-size: 0.98rem;
  font-weight: 600;
}

.values-bullet-item div {
  font-size: 0.92rem;
  color: var(--navy-600);
  margin-top: 0.1rem;
}

.values-card-box {
  background: #0F172A;
  color: #FFFFFF;
  border-radius: 22px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.values-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.15rem;
  color: #E2E8F0;
}

.values-amount-title {
  font-size: 0.95rem;
  color: #94A3B8;
  margin-bottom: 0.25rem;
}

.values-amount-main {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 5vw, 2.45rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.values-breakdown {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.breakdown-row span:first-child {
  color: #94A3B8;
}

.breakdown-row span:last-child {
  font-weight: 600;
  color: #FFFFFF;
}

.values-cta-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 0.95rem 1.35rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-primary);
  border: none;
  cursor: pointer;
  text-align: center;
}

.values-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(194, 65, 76, 0.35);
}

/* ==========================================================================
   SECTION: COMO FUNCIONA
   ========================================================================== */
.steps-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.step-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 2rem 1.35rem;
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--navy-600);
  line-height: 1.5;
  font-weight: 400;
}

/* Support Box (Photo + Copy) */
.support-card-wrapper {
  margin-top: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.support-card-grid {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
}

.support-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.support-card-body {
  padding: 2.25rem 2rem;
}

/* ==========================================================================
   SECTION: DEPOIMENTOS
   ========================================================================== */
.testimonials-section {
  padding: 4.5rem 0;
  background: #FFFFFF;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-page);
  border-radius: 18px;
  padding: 2rem 1.65rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xs);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #F59E0B;
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--navy-800);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.35rem;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-950);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

/* ==========================================================================
   SECTION: FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-xs);
}

.faq-item.active {
  border-color: #CBD5E1;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-950);
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.4rem;
  color: var(--navy-700);
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 400;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.4rem 1.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0B1120;
  color: #94A3B8;
  padding: 4rem 0 2.25rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.75rem;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  line-height: 1.65;
  margin-bottom: 1.15rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-column h5 {
  color: #FFFFFF;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.95rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-column a {
  font-weight: 400;
  display: inline-block;
  padding: 0.15rem 0;
}

.footer-column a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.65rem;
  text-align: center;
  font-size: 0.82rem;
  color: #64748B;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ==========================================================================
   FLOATING WHATSAPP & MOBILE STICKY BAR
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-whatsapp);
  transition: transform 0.2s ease;
  animation: pulse-whatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

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

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  z-index: 900;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow-primary);
}

/* ==========================================================================
   MODAL: COMO BAIXAR CNIS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  background: #F1F5F9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy-800);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.cnis-guide-step {
  display: flex;
  gap: 0.95rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border-color);
}

.cnis-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.cnis-step-body h5 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 0.25rem;
}

.cnis-step-body p {
  font-size: 0.9rem;
  color: var(--navy-600);
  line-height: 1.5;
  font-weight: 400;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVOS (100% MOBILE & TABLET TESTADO)
   ========================================================================== */

/* Tablets & Laptops Médios (<= 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual-card {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-card-grid {
    grid-template-columns: 1fr;
  }
  .support-card-img {
    height: 240px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Smartphones & Telas Pequenas (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .site-header {
    padding: 0.7rem 0;
  }
  .header-brand img.logo-icon {
    width: 34px;
    height: 34px;
  }
  .brand-title {
    font-size: 1rem;
  }
  .brand-subtitle {
    font-size: 0.68rem;
  }
  .header-security-badge {
    display: none !important;
  }
  .header-cta-btn {
    display: none !important;
  }
  .hero-section {
    padding: 1.75rem 0 2.75rem;
  }
  .hero-trust-row {
    gap: 0.45rem;
    width: 100%;
  }
  .trust-tag {
    font-size: 0.78rem;
    padding: 0.28rem 0.65rem;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.95rem 0;
  }
  .hero-card-banner {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }
  .pill-text strong {
    font-size: 0.92rem;
    line-height: 1.3;
  }
  .pill-text span {
    font-size: 0.8rem;
    line-height: 1.35;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .support-card-body {
    padding: 1.5rem 1.25rem;
  }
  .mobile-sticky-bar {
    display: block;
  }
  .floating-whatsapp {
    bottom: 76px;
    right: 14px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
  .quiz-section {
    padding: 2.25rem 0 5.5rem;
  }
  .rights-section,
  .values-section,
  .steps-section,
  .testimonials-section,
  .faq-section {
    padding: 3rem 0;
  }
}

/* Smartphones Muito Compactos (<= 400px - iPhone SE, Galaxy A) */
@media (max-width: 400px) {
  .container {
    padding: 0 0.85rem;
  }
  .brand-title {
    font-size: 0.92rem;
  }
  .brand-subtitle {
    font-size: 0.62rem;
  }
  .hero-visual-card img {
    height: 280px;
  }
  .values-card-box {
    padding: 1.75rem 1.15rem;
  }
  .right-card {
    padding: 1.5rem 1.15rem;
  }
  .testimonial-card {
    padding: 1.5rem 1.15rem;
  }
  .modal-content {
    padding: 1.75rem 1.25rem;
  }
}
