/* ============================================
   BASE & MOBILE-FIRST
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Montserrat', sans-serif; font-weight: 400;
  background: #FFFFFF; color: #38383d; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Clash Display', sans-serif; font-weight: 600; line-height: 1.2; color: #38383d; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   NAVEGAÇÃO
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: #FFFFFF; border-bottom: 1px solid #dee3e5; z-index: 100;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand img { height: 44px; width: auto; }

.mobile-recursos-btn {
  display: block; background-color: #fee2e2; color: #d70f15;
  font-size: 13px; font-weight: 700; padding: 8px 16px;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
  margin-left: auto;
}

.nav-links { display: none; gap: 14px; }
.nav-links a { color: #38383d; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #d70f15; }
.btn-nav { background: #dee3e5; padding: 8px 16px; border-radius: 4px; transition: background 0.2s; }
.btn-nav:hover { background: #d4dadd; }

/* ============================================
   ESTRUTURA E BOTÕES
   ============================================ */
main { padding-top: 64px; }
section { padding: 64px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.tag { color: #d70f15; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; display: block; }

.btn-primary, .btn-secondary {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 16px; padding: 16px 32px;
  border-radius: 8px; cursor: pointer; transition: background 0.3s; text-align: center; border: none; text-decoration: none;
}
.btn-primary { background: #d70f15; color: #fff; }
.btn-primary:hover { background: #b00b11; }
.btn-secondary { background: #38383d; color: #fff; }
.btn-secondary:hover { background: #1a1a1c; }

/* ============================================
   HERO GERAL E PÁGINAS INTERNAS
   ============================================ */
.hero, .hero-page { background-color: #dee3e5; text-align: center; }
.hero-page { padding: 100px 20px 80px; }
.hero-page h1 { font-size: clamp(36px, 6vw, 68px); max-width: 900px; margin: 0 auto 24px; text-transform: uppercase; letter-spacing: -0.02em; }
.hero-page p { font-size: clamp(16px, 2vw, 18px); color: #6e7d8c; max-width: 720px; margin: 0 auto; line-height: 1.6; text-wrap: balance; }

/* ============================================
   HERO ESPECÍFICO DA PÁGINA INICIAL
   ============================================ */
.hero-index {
  position: relative; overflow: hidden; background-color: #dee3e5;
  padding-top: clamp(220px, 15vw, 180px); padding-bottom: 60px;
  padding-left: 20px; padding-right: clamp(20px, 8vw, 120px);
}
.hero-aura {
  position: absolute; top: -100px; left: -100px; width: 500px; height: 500px;
  background: rgba(215, 15, 21, 0.28); border-radius: 50%; filter: blur(90px); 
  z-index: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 900px; margin: 0 0 0 auto; }
.hero-subtitle-box { margin: 0 0 48px auto; padding-right: 16px; border-right: 3px solid #d70f15; max-width: 550px; }
.hero-subtitle-text { font-family: 'Montserrat', sans-serif; font-size: clamp(14px, 2vw, 16px); font-weight: 500; color: #38383d; line-height: 1.6; text-align: right; margin: 0; display: block; text-wrap: balance; }
.hero-title-main { font-family: 'Clash Display', sans-serif; font-size: clamp(42px, 8vw, 86px); font-weight: 600; color: #38383d; line-height: 0.95; text-transform: uppercase; text-align: right; margin: 0 0 0 auto; display: block; }
.hero-link-box { text-align: right; margin-top: 32px; }
.hero-link-text { color: #d70f15; font-size: 16px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; transition: color 0.3s; }
.hero-link-text:hover { color: #b00b11; }

/* ============================================
   JORNADA / CARTÕES COM NÚMEROS GIGANTES
   ============================================ */
.passo-card {
  display: grid; grid-template-columns: 1fr; gap: 24px; padding: 40px 0; 
  border-top: 1px solid #dee3e5; text-align: left;
}
.passo-card:last-child { border-bottom: 1px solid #dee3e5; }
.passo-num { 
  font-family: 'Clash Display', sans-serif; font-size: 80px; 
  line-height: 0.8; color: #dee3e5; font-weight: 600;
}
.passo-content h2, .passo-content h3 {
  font-family: 'Clash Display', sans-serif; color: #d70f15; 
  font-size: clamp(32px, 4vw, 40px); text-transform: uppercase; 
  letter-spacing: 0.05em; margin-bottom: 8px; font-weight: 600;
}
.passo-content .sub {
  font-weight: 600; color: #38383d; font-size: 16px; margin-bottom: 16px;
}
.passo-content p { color: #6e7d8c; font-size: 16px; margin-bottom: 24px; line-height: 1.6; }
.btn-passo {
  display: inline-block; 
  color: #d70f15; 
  border: 2px solid #d70f15; 
  padding: 12px 24px; 
  border-radius: 8px;
  font-weight: 600; 
  font-size: 15px; 
  text-decoration: none; 
  transition: all 0.3s ease;
}
.btn-passo:hover { 
  background-color: #d70f15; 
  color: #ffffff; 
}
@media (min-width: 768px) {
  .passo-card { grid-template-columns: 120px 1fr; gap: 40px; padding: 56px 0; }
  .passo-num { font-size: 120px; }
}

/* ============================================
   SECÇÃO DE MATERIAIS INTERNOS (Líderes)
   ============================================ */
.materiais { margin-top: 28px; background: #f7f9fa; padding: 24px; border-radius: 8px; text-align: left; }
.materiais-title { font-weight: 700; font-size: 13px; text-transform: uppercase; color: #6e7d8c; margin-bottom: 16px; letter-spacing: 0.05em; }
.materiais-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.material-card { background: #fff; padding: 20px; border-radius: 6px; border: 1px solid #dee3e5; transition: all 0.2s ease; }
.material-card:hover { transform: translateY(-2px); border-color: #d70f15; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.m-title { font-family: 'Clash Display', sans-serif; font-weight: 600; color: #38383d; font-size: 18px; margin-bottom: 4px; }
.m-desc { color: #6e7d8c; font-size: 14px; line-height: 1.4; }

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

/* ============================================
   BOTÕES DE FILTRO (PÁGINA DE RECURSOS)
   ============================================ */
.btn-filtro {
  background-color: #dee3e5; color: #6e7d8c; border: none; border-radius: 30px;
  padding: 12px 28px; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 14px; cursor: pointer; transition: all 0.3s ease; outline: none;
}
.btn-filtro:hover { background-color: #d4dadd; color: #38383d; }
.btn-filtro.ativo { background-color: #d70f15; color: #ffffff; box-shadow: 0 4px 12px rgba(215, 15, 21, 0.2); }

/* ============================================
   CTA FINAL (PRÓXIMOS PASSOS)
   ============================================ */
.final-cta { background-color: #f7f9fa; text-align: center; border-top: 1px solid #dee3e5; padding: 80px 20px; }
.final-cta h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px; }
.final-cta p { color: #6e7d8c; max-width: 700px; margin: 0 auto 32px; font-size: clamp(16px, 2vw, 18px); line-height: 1.6; text-wrap: balance; }
.ctas { display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: center; }

/* ============================================
   CONTACTO & FORMULÁRIOS UNIFICADOS
   ============================================ */
.contacto { background: #38383d; color: #fff; }
.contacto-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
.contacto h2 { font-size: 32px; margin-bottom: 16px; color: #fff; }
.contacto-text p { color: #dee3e5; font-size: 16px; line-height: 1.6; }

.mf-form, .myfriends-form { display: flex; flex-direction: column; gap: 16px; text-align: left; width: 100%; }
.mf-form input, .mf-form textarea,
.myfriends-form input, .myfriends-form textarea { 
  width: 100%; padding: 16px; border: 1px solid #E5E7EB; border-radius: 8px; 
  font-family: 'Montserrat', sans-serif; font-size: 16px; background-color: #FAFAFA; 
  box-sizing: border-box; transition: all 0.3s ease; 
}
.mf-form input:focus, .mf-form textarea:focus,
.myfriends-form input:focus, .myfriends-form textarea:focus { 
  outline: none; border-color: #d70f15; box-shadow: 0 0 0 3px rgba(215, 15, 21, 0.1); background-color: #fff; 
}
.mf-form button, .myfriends-form button { 
  background-color: #d70f15; color: #FFFFFF; border: none; padding: 16px 24px; 
  border-radius: 8px; font-family: 'Montserrat', sans-serif; font-weight: 600; 
  font-size: 16px; cursor: pointer; transition: background-color 0.3s ease; 
}
.mf-form button:hover, .myfriends-form button:hover { background-color: #b00b11; }

/* ============================================
   FOOTER
   ============================================ */
footer { background: #fff; border-top: 1px solid #dee3e5; padding: 48px 20px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; align-items: center; }
.footer-brands { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.footer-brands img { height: 40px; }

.footer-links { display: none; } 
.footer-links a { color: #38383d; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: #d70f15; }

.footer-bottom { max-width: 1100px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid #dee3e5; display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: space-between; color: #6e7d8c; font-size: 13px; text-align: center; }
.footer-bottom a { color: #6e7d8c; transition: color 0.2s; }
.footer-bottom a:hover { color: #d70f15; text-decoration: underline; }

/* ============================================
   TABLET & DESKTOP (≥ 768px)
   ============================================ */
@media (min-width: 768px) {
  .mobile-recursos-btn { display: none; }
  .nav-inner { padding: 12px 32px; }
  .brand img { height: 56px; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  
  main { padding-top: 80px; }
  section { padding: 80px 32px; }
  .ctas { flex-direction: row; }
  
  .contacto-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-brands { flex-direction: row; align-items: center; gap: 32px; }
  .footer-links { display: flex; flex-direction: row; gap: 28px; }
  .footer-bottom { flex-direction: row; text-align: left; }
}

/* ============================================
   CONTACTO SIMPLIFICADO (Páginas Internas)
   ============================================ */
.contacto-simples {
  background-color: #38383d;
  padding: 80px 20px;
}
.contacto-simples .form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contacto-simples h2 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 32px;
}
.contacto-simples p {
  color: #dee3e5;
  margin-bottom: 40px;
}
