/* ============================================
   MBA Prático em RH Estratégico – Landing Page
   Cores: Amarelo #F9C80E | Azul Escuro #1A2332
   ============================================ */

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

:root {
  --yellow: #F9C80E;
  --yellow-dark: #d4a90b;
  --blue: #1A2332;
  --blue-light: #243347;
  --blue-lighter: #2d4060;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ea;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #374151;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }

.highlight-yellow { color: var(--yellow); }

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 4px 15px rgba(249,200,14,.4);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(249,200,14,.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-xl { padding: 20px 48px; font-size: 1.1rem; }
.btn-full { width: 100%; }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,200,14,.4); }
  50% { box-shadow: 0 0 0 14px rgba(249,200,14,0); }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26,35,50,.97);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
}
.logo-highlight { color: var(--yellow); }
.logo-sub {
  font-size: .65rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--blue) !important;
  padding: 10px 22px;
  border-radius: 50px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--yellow-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ---------- HERO ---------- */
.hero {
  position: flex;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://www.fap.com.br/wp-content/uploads/2014/08/banner-4-rh.png');
  overflow: hidden;
  padding-top: 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='https://images.unsplash.com/photo-1751738567808-6affa516fedc?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDE0fHx8ZW58MHx8fHx8 fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-mba {
  display: block;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--white);
}
.hero-pratico {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gray-200);
}
.hero-sub strong { color: var(--white); }
.hero-tagline {
  font-size: 1.15rem;
  color: var(--gray-200);
  margin: 18px 0 8px;
  font-weight: 600;
}
.hero-desc {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249,200,14,.12);
  border: 1px solid rgba(249,200,14,.3);
  color: var(--yellow);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
}
.hero-urgency i { font-size: 1.1rem; animation: flicker 1.5s infinite; }
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.stat-card i { font-size: 1.5rem; color: var(--yellow); margin-bottom: 8px; display: block; }
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
}
.stat-label { font-size: .8rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; width: 100%;
  z-index: 3;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ---------- WHY SECTION ---------- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.why-card p { font-size: .92rem; color: var(--gray-600); }

/* ---------- MODULES ---------- */
.modules-section { background: var(--gray-50); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}
.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.module-card.featured {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-color: var(--yellow);
}
.module-card.featured h3, .module-card.featured p { color: var(--white); }
.module-card.featured .module-number { color: rgba(249,200,14,.15); }
.module-number {
  position: absolute;
  top: 10px; right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--gray-100);
  line-height: 1;
}
.module-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 16px;
}
.module-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.module-card p { font-size: .88rem; color: var(--gray-600); }
.module-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow-dark);
  background: rgba(249,200,14,.12);
  padding: 4px 12px;
  border-radius: 20px;
}
.featured-tag { background: var(--yellow) !important; color: var(--blue) !important; }

/* ---------- CERTIFICATIONS ---------- */
.certifications-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
}
.certifications-section .section-header h2 { color: var(--white); }
.certifications-section .section-header p { color: var(--gray-400); }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.cert-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
}
.cert-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.cert-icon {
  width: 64px; height: 64px;
  background: var(--yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 20px;
}
.cert-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.cert-card p { font-size: .92rem; color: var(--gray-400); margin-bottom: 18px; }
.cert-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  margin-bottom: 10px;
  color: var(--gray-200);
}
.cert-benefits i { color: var(--yellow); font-size: .8rem; }

/* ---------- AUDIENCE ---------- */
.audience-section { background: var(--white); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  transition: var(--transition);
  border: 1px solid transparent;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}
.audience-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  margin: 0 auto 18px;
}
.audience-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.audience-card p { font-size: .88rem; color: var(--gray-600); }

/* ---------- INVESTMENT ---------- */
.investment-section {
  background: linear-gradient(170deg, var(--blue) 0%, #0d1520 100%);
  position: relative;
  overflow: hidden;
}
.investment-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(249,200,14,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.investment-section .section-header h2,
.investment-section .section-header p {
  color: var(--white);
}
.investment-section .section-tag {
  background: rgba(249,200,14,0.15);
  color: var(--yellow);
}
.investment-card-wrapper { max-width: 580px; margin: 0 auto; }
.investment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 3px solid var(--yellow);
  position: relative;
}
.investment-header {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  padding: 28px 32px;
  text-align: center;
}
.investment-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.investment-badge i { margin-right: 4px; }
.investment-header h3 { color: var(--white); font-size: 1.1rem; font-weight: 600; }

/* -- Price Highlight Area -- */
.investment-price-highlight {
  text-align: center;
  padding: 32px 32px 20px;
  background: linear-gradient(180deg, #fffdf0 0%, var(--white) 100%);
  position: relative;
}
.price-from {
  display: block;
  font-size: .9rem;
  color: var(--gray-500);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.price-installment {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.price-times {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--blue);
}
.price-value-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  color: var(--yellow);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.08);
  line-height: 1;
}
.price-value-big strong {
  font-size: inherit;
  font-weight: inherit;
}
.price-cents-big {
  font-size: 1.6rem;
  font-weight: 800;
}
.price-total {
  display: block;
  font-size: .88rem;
  color: var(--gray-400);
  margin-top: 8px;
}
.price-daily {
  display: inline-block;
  margin-top: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: .82rem;
  padding: 8px 20px;
  border-radius: 30px;
}
.price-daily i {
  color: var(--yellow);
  margin-right: 6px;
}
.price-daily strong {
  color: var(--yellow);
}

/* -- Badges Row -- */
.investment-badges-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px 10px;
  flex-wrap: wrap;
}
.invest-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,200,14,0.12);
  border: 1px solid rgba(249,200,14,0.35);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.invest-badge-item i {
  color: var(--yellow);
  font-size: .9rem;
}

/* -- Includes List -- */
.investment-includes {
  padding: 14px 32px 24px;
}
.investment-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: .9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.investment-includes li:last-child { border-bottom: none; }
.investment-includes i { color: var(--yellow); font-size: 1rem; }
.investment-card .btn { margin: 0 32px 20px; width: calc(100% - 64px); font-size: 1.05rem; }
.investment-note {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-400);
  padding-bottom: 24px;
}
.investment-note i { color: var(--yellow); margin-right: 4px; }

/* Investment card glow animation */
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 20px rgba(249,200,14,0.1); }
  50% { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 35px rgba(249,200,14,0.2); }
}
.investment-card:hover {
  animation: cardGlow 2s ease-in-out infinite;
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue);
  text-align: left;
  gap: 16px;
}
.faq-question i {
  color: var(--yellow);
  font-size: .85rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 0 20px;
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-lighter) 100%);
  text-align: center;
  padding: 80px 0;
}
.cta-content h2 { color: var(--white); font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.cta-content p { color: var(--gray-400); font-size: 1.05rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-phone {
  display: block;
  margin-top: 18px;
  color: var(--gray-400);
  font-size: .95rem;
}
.cta-phone i { color: var(--yellow); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--blue);
  color: var(--gray-400);
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer-desc { font-size: .88rem; margin-bottom: 10px; }
.footer-location { font-size: .85rem; }
.footer-location i { color: var(--yellow); margin-right: 6px; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--yellow); }
.footer-col ul a i { margin-right: 8px; color: var(--yellow); }
.footer-coord { font-size: .85rem; margin-top: 16px; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: .8rem; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.5); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- ANIMATIONS ---------- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].animated { opacity: 1; transform: translate(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-urgency { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.7rem; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--blue);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right .3s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-cta { text-align: center; margin-top: 14px; }

  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero-mba { font-size: 3rem; }
  .hero-pratico { font-size: 2.4rem; }
  .hero-sub { font-size: 1.1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .cert-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .hero-mba { font-size: 2.4rem; }
  .hero-pratico { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { padding: 14px 28px; font-size: .92rem; }
  .why-grid, .modules-grid, .audience-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 18px 14px; }
  .stat-number { font-size: 1.6rem; }
  .price-value-big { font-size: 2.6rem; }
  .price-times { font-size: 1.4rem; }
  .price-cents-big { font-size: 1.2rem; }
  .invest-badge-item { font-size: .72rem; padding: 6px 12px; }
  .investment-badges-row { gap: 8px; }
  .price-daily { font-size: .76rem; padding: 6px 14px; }
}
