
:root {
  --navy: #0d1f5c;
  --navy-mid: #1a3280;
  --navy-light: #243fa3;
  --red: #e02020;
  --red-dark: #b81818;
  --red-light: #ff3b3b;
  --gold: #f5a623;
  --white: #ffffff;
  --off: #f4f6fb;
  --text: #1e2a4a;
  --muted: #6b7a99;
  --border: #e2e8f6;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(13,31,92,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,92,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILS ── */
.container { width: min(1160px, 92%); margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 28px; height: 2px; background: var(--red); border-radius: 2px;
}
.section-title {
  font-family: 'Fraunces', serif; font-weight: 900; line-height: 1.1;
  color: var(--navy);
}
.section-title em { font-style: normal; color: var(--red); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 14px;
  cursor: pointer; border: none; transition: all .22s ease; white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,32,32,.35); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--off); transform: translateY(-2px); }
.arrow-icon { font-size: 18px; transition: transform .2s; }
.btn:hover .arrow-icon { transform: translateX(4px); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.75);
  font-size: 12px; padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 8px; }
.topbar-right a {
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255,255,255,.12); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: background .2s;
}
.topbar-right a:hover { background: var(--red); }

/* ── NAV ── */
.nav-wrap {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav-wrap.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-badge {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(13,31,92,.28);
  flex-shrink: 0;
}
.logo-badge span {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 12px; color: #fff; text-align: center; line-height: 1.15;
}
.logo-badge span em { color: var(--red); font-style: normal; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 20px; color: var(--navy); line-height: 1;
}
.logo-name em { color: var(--red); font-style: normal; }
.logo-tagline { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 11px; font-size: 12px; font-weight: 600;
  color: var(--muted); border-radius: 8px; transition: all .18s;
  text-transform: uppercase; letter-spacing: .5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--off); }
.nav-links a.active { color: var(--red); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: #fff; border-top: 1px solid var(--border);
  padding: 16px; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.mobile-menu.open { display: flex; max-height: 600px; }
.mobile-menu a {
  padding: 11px 14px; border-radius: 10px; font-weight: 600;
  font-size: 14px; color: var(--text); transition: background .18s;
}
.mobile-menu a:hover { background: var(--off); color: var(--red); }
.mobile-menu .btn-primary { margin-top: 8px; justify-content: center; border-radius: 10px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 90vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1640 60%, #15256b 100%);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1485546246426-74dc88dec4d9?w=1400&q=80') center/cover no-repeat;
  opacity: .15;
}
.hero-geo {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-geo::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,32,32,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-geo::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(36,63,163,.35) 0%, transparent 70%);
  bottom: -100px; left: -60px;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 100px 0 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 50px; font-size: 12px;
  font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 24px;
  animation: fadeDown .7s ease both;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-title {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(38px, 5vw, 68px); line-height: 1.05;
  margin-bottom: 20px; animation: fadeUp .7s ease .1s both;
}
.hero-title .line2 { color: var(--red-light); }
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7;
  max-width: 440px; margin-bottom: 36px; animation: fadeUp .7s ease .2s both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s ease .3s both; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  animation: fadeUp .7s ease .4s both;
}
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.65); }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,.2); padding-left: 32px; }

.hero-visual {
  position: relative; animation: fadeLeft .8s ease .2s both;
}
.hero-card-main {
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero-float-1 {
  position: absolute; bottom: -20px; left: -24px;
  background: #fff; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.hero-float-1 .icon { font-size: 26px; }
.hero-float-1 strong { font-size: 15px; color: var(--navy); display: block; }
.hero-float-1 span { font-size: 11px; color: var(--muted); }
.hero-float-2 {
  position: absolute; top: -16px; right: -16px;
  background: var(--red); border-radius: var(--radius); padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(224,32,32,.4); color: #fff; text-align: center;
  animation: float 3s ease-in-out .8s infinite;
}
.hero-float-2 strong { font-size: 22px; font-weight: 800; display: block; }
.hero-float-2 span { font-size: 11px; opacity: .85; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:translateX(0)} }

/* ── PORQUE ── */
.porque { padding: 90px 0; background: #fff; }
.porque-header { text-align: center; margin-bottom: 56px; }
.porque-header .section-title { font-size: clamp(28px, 4vw, 42px); }
.porque-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.porque-card {
  background: var(--off); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; transition: all .25s ease; border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.porque-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-light));
  transform: scaleX(0); transition: transform .3s ease;
}
.porque-card:hover { transform: translateY(-6px); border-color: var(--border); background: #fff; box-shadow: var(--shadow-lg); }
.porque-card:hover::before { transform: scaleX(1); }
.porque-icon {
  width: 68px; height: 68px; border-radius: 18px;
  background: linear-gradient(135deg, var(--gray) 0%, var(--gray-light) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
  box-shadow: 0 6px 20px rgba(13,31,92,.22);
  transition: transform .25s;
}
.porque-card:hover .porque-icon { transform: scale(1.1) rotate(-4deg); }
.porque-card h4 { font-size: 14px; font-weight: 700; color: var(--gray); margin-bottom: 8px; line-height: 1.4; }
.porque-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── CURSOS ── */
.cursos { padding: 90px 0; background: var(--navy); position: relative; overflow: hidden; }
.cursos::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg 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");
}
.cursos .section-label { color: rgba(255,255,255,.65); }
.cursos .section-label::before, .cursos .section-label::after { background: rgba(255,255,255,.4); }
.cursos-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.cursos-header .section-title { color: #fff; }
.cursos-header p { font-size: 15px; color: rgba(255,255,255,.65); margin-top: 12px; }
.cursos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.curso-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .28s ease; group: 1;
}
.curso-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); box-shadow: 0 20px 60px rgba(0,0,0,.4); border-color: rgba(255,255,255,.25); }
.curso-img-wrap { position: relative; overflow: hidden; height: 190px; }
.curso-img-wrap img, .curso-img-ph {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.curso-card:hover .curso-img-ph { transform: scale(1.06); }
.curso-img-ph { background-size: cover; background-position: center; }
.curso-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 50px; text-transform: uppercase;
}
.curso-body { padding: 22px 22px 24px; }
.curso-body h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.curso-body p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 18px; min-height: 60px; }
.curso-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 13px; font-weight: 700;
  transition: gap .2s;
}
.curso-link:hover { gap: 10px; }

/* ── EXAMES ── */
.exames { padding: 90px 0; background: #fff; }
.exames-header { text-align: center; margin-bottom: 56px; }
.exames-header .section-title { font-size: clamp(28px, 4vw, 42px); }
.exames-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.exame-benefit {
  text-align: center; padding: 28px 20px;
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  transition: all .25s ease;
}
.exame-benefit:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow); }
.exame-benefit-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--off); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 26px; transition: background .25s;
}
.exame-benefit:hover .exame-benefit-icon { background: var(--navy); }
.exame-benefit p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.exames-certs { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.cert-badge {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 36px; border-radius: var(--radius-lg);
  border: 2px solid var(--border); background: #fff;
  transition: all .25s ease; cursor: pointer; min-width: 240px;
}
.cert-badge:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cert-logo-ets {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--navy); color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.cert-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--navy); }
.cert-name.toeic { font-style: italic; color: #003087; }
.cert-name.toeic em { color: var(--red); font-style: normal; }
.cert-sub { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

/* ── FACA ── */
.faca { padding: 90px 0; background: var(--off); }
.faca-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.faca-content .section-title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.faca-content p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.faca-highlight {
  background: #fff; border-left: 4px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin-bottom: 28px; font-size: 15px; font-weight: 600; color: var(--navy);
}
.faca-visuals { position: relative; }
.faca-video-wrap {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10;
  background: url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?w=700&q=80') center/cover;
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer; box-shadow: var(--shadow-lg);
}
.faca-video-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,31,92,.3), rgba(13,31,92,.6));
}
.play-wrap {
  position: relative; z-index: 2;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.95); display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--red); box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .2s;
}
.faca-video-wrap:hover .play-wrap { transform: scale(1.1); }
.faca-img-float {
  position: absolute; bottom: -28px; right: -28px; width: 180px; height: 220px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid #fff;
}
.faca-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* ── BLOG ── */
.blog { padding: 90px 0; background: #fff; }
.blog-header { text-align: center; margin-bottom: 56px; }
.blog-header .section-title { font-size: clamp(28px, 4vw, 42px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--border); background: #fff;
  transition: all .25s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.blog-cat {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 50px; text-transform: uppercase;
}
.blog-body { padding: 22px; }
.blog-body h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-link { font-size: 13px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 4px; }

/* ── PARCEIROS ── */
.parceiros { padding: 60px 0; background: var(--off); border-top: 1px solid var(--border); }
.parceiros-inner { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; }
.parceiro { display: flex; align-items: center; gap: 12px; opacity: .7; transition: opacity .2s; filter: grayscale(1); }
.parceiro:hover { opacity: 1; filter: none; }
.cambridge-shield {
  width: 44px; height: 44px;
  background: #1a3a8a;
  clip-path: polygon(50% 0%,100% 20%,100% 70%,50% 100%,0% 70%,0% 20%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px;
}
.parceiro-text-main { font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px; color: var(--navy); }
.parceiro-text-sub { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.british-block { display: flex; gap: 4px; }
.british-sq { width: 18px; height: 18px; border-radius: 3px; }

/* ── TAGS ── */
.tags-section { padding: 40px 0; background: #fff; border-top: 1px solid var(--border); }
.tags-title { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 10px; text-align: center; letter-spacing: 1px; }
.tags-title span { color: var(--red); }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tag-chip {
  padding: 6px 14px; background: var(--off); border: 1.5px solid var(--border);
  border-radius: 50px; font-size: 12px; color: var(--muted);
  transition: all .18s; cursor: pointer;
}
.tag-chip:hover { border-color: var(--navy); color: var(--navy); background: #fff; }

/* ── NEWSLETTER ── */
.newsletter {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,32,32,.18) 0%, transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.newsletter-inner { text-align: center; position: relative; z-index: 1; }
.newsletter-inner h3 { font-family: 'Fraunces', serif; font-weight: 900; font-size: 32px; color: #fff; margin-bottom: 10px; }
.newsletter-inner p { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; max-width: 520px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border: none; border-radius: 50px;
  font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.newsletter-form .btn-primary { padding: 14px 28px; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: #070f2b; color: rgba(255,255,255,.65);
  padding: 70px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-badge {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
}
.footer-badge span { font-weight: 800; font-size: 11px; color: #fff; text-align: center; line-height: 1.2; }
.footer-badge span em { color: var(--red); font-style: normal; }
.footer-brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px; color: #fff; }
.footer-brand-name em { color: var(--red); font-style: normal; }
.footer-about { font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .2s;
}
.footer-social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.footer-col h5 { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .18s; }
.footer-col ul a:hover { color: var(--red); }
.footer-contact p { font-size: 13px; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color .18s; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .18s; }
.footer-bottom a:hover { color: var(--red); }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.wa-float:hover { transform: scale(1.12) rotate(-8deg); box-shadow: 0 8px 32px rgba(37,211,102,.65); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: all .7s cubic-bezier(.25,.8,.25,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 80px 0 60px; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .porque-grid { grid-template-columns: repeat(2, 1fr); }
  .exames-benefits { grid-template-columns: repeat(2, 1fr); }
  .faca-inner { grid-template-columns: 1fr; }
  .faca-img-float { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar .container { flex-direction: column; gap: 6px; text-align: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav .btn-primary { display: none; }
  .cursos-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .exames-certs { flex-direction: column; align-items: center; }
  .cert-badge { width: 100%; max-width: 320px; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius); }
  .newsletter-form .btn-primary { border-radius: var(--radius); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .porque-grid { grid-template-columns: 1fr; }
  .exames-benefits { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; }
  .parceiros-inner { gap: 32px; }
}
/* Estilização para o formulário no topo */
.topbar-login {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 15px;
}
.topbar-login input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 4px 10px;
    color: #fff;
    font-size: 11px;
    outline: none;
    transition: all 0.2s;
}
.topbar-login input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--red);
}
.topbar-login button {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}
.topbar-login button:hover {
    background: var(--red-dark);
}

/* Ajuste responsivo: esconde o login na topbar em telas pequenas */
@media (max-width: 768px) {
    .topbar-login { display: none; }
}
/* Estilos para o formulário de login na Topbar */
.topbar-login {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 15px;
}
.topbar-login input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 4px 10px;
    color: #fff;
    font-size: 11px;
    outline: none;
    transition: all 0.2s;
}
.topbar-login input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #e02020; /* Cor vermelha do sistema */
}
.topbar-login button {
    background: #e02020;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}
.topbar-login button:hover {
    background: #b81818;
}
@media (max-width: 992px) {
    .topbar-login { display: none; }
}
/* Utilitário para ícones no footer */
.fa-fw { width: 1.25em; text-align: center; margin-right: 8px; }

