:root {
  --bg: #ffffff;
  --bg-soft: #f3f7fb;
  --bg-warm: #fff4ec;
  --text: #10233f;
  --muted: #4c5d70;
  --primary: #014ca4;
  --primary-dark: #00316b;
  --primary-soft: #e8f1fb;
  --accent: #f78d44;
  --accent-soft: #fff0e5;
  --green: #2ca44f;
  --green-soft: #e8f7ed;
  --border: #dbe4ef;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(1, 36, 82, 0.13);
  --shadow-strong: 0 24px 65px rgba(1, 36, 82, 0.22);
  --radius: 22px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(247,141,68,0.08), transparent 26%),
    radial-gradient(circle at 100% 8%, rgba(44,164,79,0.07), transparent 24%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--text);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 10px 26px rgba(1, 36, 82, 0.10);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  color: var(--primary-dark);
}

.brand-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.10));
  background: transparent;
  border-radius: 0;
}

.brand-text {
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary-soft);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--primary-dark);
  margin: 5px 0;
  border-radius: 99px;
}

.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 10% 18%, rgba(44,164,79,0.10), transparent 24%),
    radial-gradient(circle at 85% 14%, rgba(247,141,68,0.10), transparent 22%),
    linear-gradient(135deg, #eaf5fb 0%, #d8ebf8 55%, #c7dff1 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,76,164,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,76,164,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--primary-dark);
  background: white;
  border: 1px solid rgba(255,255,255,0.32);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(1,36,82,0.08);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--primary-dark);
  background: rgba(255,255,255,0.82);
  border-color: rgba(1,76,164,0.12);
  box-shadow: 0 8px 18px rgba(1,36,82,0.08);
}

.cta-section .eyebrow {
  color: white;
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  box-shadow: none;
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.95rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero p,
.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
  color: #314861;
}

.cta p {
  color: rgba(255,255,255,0.92);
}

.lead {
  font-size: 1.18rem;
  max-width: 720px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 900;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #f06f21);
  box-shadow: 0 14px 30px rgba(247, 141, 68, 0.34);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f06f21, var(--accent));
}

.btn-secondary {
  color: white;
  background: var(--green);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 24px rgba(44, 164, 79, 0.25);
}

.btn-secondary:hover {
  background: #238a42;
}

.btn-blue {
  color: white;
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 24px rgba(1, 76, 164, 0.25);
}

.btn-blue:hover {
  background: var(--primary-dark);
}


.btn-light {
  background: white;
  color: var(--primary-dark);
}

.full {
  width: 100%;
}

.space-top {
  margin-top: 10px;
}

.text-link {
  display: inline-flex;
  color: var(--primary);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(247,141,68,0.45);
  margin-top: 6px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-list span,
.trust-list a {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(1,76,164,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.tag-grid span {
  background: white;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--text);
  font-weight: 800;
  font-size: 0.92rem;
}

.tag-grid span:nth-child(3n) {
  border-left-color: var(--green);
}

.tag-grid span:nth-child(3n+1) {
  border-left-color: var(--primary);
}

.hero-card,
.card,
.highlight-box,
.contact-panel,
.contact-form,
.map-placeholder,
.study-tips-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 30px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,244,236,0.98)),
    white;
  border: 2px solid rgba(247,141,68,0.45);
  box-shadow: var(--shadow-strong);
}

.hero-card h2 {
  color: var(--primary-dark);
}

.hero-card p {
  color: var(--muted);
}

.small-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.center {
  text-align: center;
}

.section {
  padding: 80px 0;
}

.section:nth-of-type(even):not(.cta-section) {
  background:
    radial-gradient(circle at 90% 10%, rgba(247,141,68,0.08), transparent 26%),
    var(--bg-soft);
}

.section-soft {
  background:
    radial-gradient(circle at 10% 15%, rgba(44,164,79,0.12), transparent 26%),
    linear-gradient(180deg, #f3f7fb, #edf5ff);
}

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

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--primary);
}

.card:nth-child(3n+2) {
  border-top-color: var(--accent);
}

.card:nth-child(3n) {
  border-top-color: var(--green);
}

.card::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(1,76,164,0.08);
}

.card:nth-child(3n+2)::before {
  background: rgba(247,141,68,0.08);
}

.card:nth-child(3n)::before {
  background: rgba(44,164,79,0.07);
}

.card:hover {
  border-color: rgba(247,141,68,0.46);
  box-shadow: 0 22px 54px rgba(1,36,82,0.16);
}

.card p:last-child,
.hero-card p:last-child {
  margin-bottom: 0;
}

.service-card ul,
.highlight-box ul,
.clean-list,
.study-tips-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.service-card li,
.highlight-box li,
.clean-list li,
.study-tips-card li {
  margin: 8px 0;
}

.accent-card {
  border-color: rgba(247,141,68,0.35);
  border-top-color: var(--accent);
  background:
    radial-gradient(circle at top right, rgba(247,141,68,0.15), transparent 38%),
    white;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.top-align {
  align-items: start;
}

.home-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.study-tips-card {
  padding: 28px;
  position: sticky;
  top: 100px;
  color: white;
  background:
    radial-gradient(circle at 88% 10%, rgba(247,141,68,0.58), transparent 36%),
    linear-gradient(160deg, var(--primary-dark), var(--primary));
  border: 0;
  box-shadow: var(--shadow-strong);
}

.study-tips-card h2,
.study-tips-card p,
.study-tips-card li,
.study-tips-card .text-link {
  color: white;
}

.study-tips-card h2 {
  font-size: 1.55rem;
}

.study-tips-card .text-link {
  border-bottom-color: rgba(255,255,255,0.5);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--border);
  border-left: 6px solid var(--green);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 24px rgba(1,36,82,0.08);
}

.feature-list div:nth-child(2) {
  border-left-color: var(--accent);
}

.feature-list div:nth-child(3) {
  border-left-color: var(--primary);
}

.feature-list span {
  color: var(--muted);
}

.cta-section {
  padding: 64px 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(44,164,79,0.24), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(247,141,68,0.22), transparent 26%),
    linear-gradient(135deg, #2f86d1, #62ace8);
  color: white;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2,
.cta p {
  color: white;
}

.page-hero {
  padding: 58px 0 42px;
  background:
    radial-gradient(circle at 82% 10%, rgba(247,141,68,0.16), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(44,164,79,0.14), transparent 26%),
    linear-gradient(135deg, #eef9fb 0%, #dff2ff 54%, #cdeafd 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,76,164,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,76,164,0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  max-width: 860px;
  color: var(--primary-dark);
}

.page-hero .eyebrow {
  margin-bottom: 12px;
  color: var(--primary-dark);
  background: rgba(255,255,255,0.78);
  border-color: rgba(1,76,164,0.14);
  box-shadow: 0 8px 18px rgba(1,36,82,0.08);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
  color: #2f4056;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.highlight-box {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(44,164,79,0.12), transparent 36%),
    linear-gradient(180deg, white, #fbfdff);
  border-top: 6px solid var(--green);
}

.map-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(247,141,68,0.32), transparent 28%),
    linear-gradient(135deg, var(--primary-soft), var(--green-soft));
}

.map-placeholder div {
  max-width: 290px;
  text-align: center;
}

.map-placeholder strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.map-placeholder span {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 28px;
}

.contact-panel {
  border-top: 6px solid var(--green);
}

.contact-form {
  display: grid;
  gap: 16px;
  border-top: 6px solid var(--accent);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: white;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(247,141,68,0.20);
  border-color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
}

details {
  border: 1px solid var(--border);
  border-left: 6px solid var(--primary);
  background: white;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(1,36,82,0.07);
}

details:nth-child(3n+2) {
  border-left-color: var(--accent);
}

details:nth-child(3n) {
  border-left-color: var(--green);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--text);
}

details p {
  margin-top: 14px;
}

.narrow {
  max-width: 830px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    linear-gradient(180deg, white, #fbfdff);
}

.testimonial-card p {
  font-size: 1.02rem;
  color: var(--text);
}

.testimonial-card strong {
  margin-top: auto;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.steps > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  background: white;
  border: 1px solid var(--border);
  border-left: 6px solid var(--primary);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(1,36,82,0.07);
}

.steps > div:nth-child(2) {
  border-left-color: var(--accent);
}

.steps > div:nth-child(3) {
  border-left-color: var(--green);
}

.steps > div:nth-child(4) {
  border-left-color: var(--primary);
}

.steps span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.steps > div:nth-child(2) span {
  background: var(--accent);
}

.steps > div:nth-child(3) span {
  background: var(--green);
}

.steps p {
  margin-bottom: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 85% 20%, rgba(247,141,68,0.18), transparent 24%),
    #071d3b;
  color: white;
  padding: 56px 0 28px;
  border-top: 6px solid var(--green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-brand {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: white;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255,255,255,0.76);
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 22px;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 900;
  padding: 13px 17px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.20);
}

@media (max-width: 1080px) {
  .nav-link {
    font-size: 0.84rem;
    padding: 9px 8px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 13px 14px;
    font-size: 0.95rem;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cards.two,
  .cards.three,
  .footer-grid,
  .home-content-grid {
    grid-template-columns: 1fr;
  }

  .study-tips-card {
    position: static;
  }

  .hero {
    padding-top: 58px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    text-align: center;
  }
}

/* Animações suaves — página inicial */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 18px 45px rgba(1, 36, 82, 0.13);
  }
  50% {
    box-shadow: 0 22px 58px rgba(1, 36, 82, 0.20);
  }
}

.animate-hero {
  animation: heroFadeUp 850ms ease both;
}

.animate-hero .eyebrow {
  animation: heroFadeUp 700ms ease both;
}

.animate-hero h1 {
  animation: heroFadeUp 850ms ease 120ms both;
}

.animate-hero .lead {
  animation: heroFadeUp 850ms ease 220ms both;
}

.animate-hero .hero-actions {
  animation: heroFadeUp 850ms ease 320ms both;
}

.animate-hero .trust-list {
  animation: heroFadeUp 850ms ease 420ms both;
}

.animate-hero-card {
  animation: heroCardIn 900ms ease 280ms both;
}

.animate-float {
  animation: subtleFloat 5.5s ease-in-out infinite;
}

.hero-card {
  animation-name: heroCardIn, softPulse;
  animation-duration: 900ms, 5.5s;
  animation-delay: 280ms, 1.4s;
  animation-fill-mode: both, none;
  animation-timing-function: ease, ease-in-out;
  animation-iteration-count: 1, infinite;
}

.reveal,
.animate-section {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}

.reveal.is-visible,
.animate-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.cards .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.cards .reveal:nth-child(4) {
  transition-delay: 270ms;
}

.feature-list .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.feature-list .reveal:nth-child(3) {
  transition-delay: 180ms;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: transform 600ms ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.study-tips-card li {
  transition: transform 220ms ease;
}

.study-tips-card li:hover {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .animate-section {
    opacity: 1;
    transform: none;
  }
}


.trust-list a {
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.trust-list a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.48);
}


.service-jump-section {
  background: #edf6fc;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.service-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-jump a {
  text-decoration: none;
  font-weight: 900;
  color: var(--primary-dark);
  background: white;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 999px;
  padding: 10px 15px;
  box-shadow: 0 8px 20px rgba(1,36,82,0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-jump a:nth-child(2) {
  border-left-color: var(--green);
}

.service-jump a:nth-child(3) {
  border-left-color: var(--primary);
}

.service-jump a:nth-child(4) {
  border-left-color: var(--accent);
}

.service-jump a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(1,36,82,0.13);
}

#apoio-estudo,
#explicacoes-individuais,
#explicacoes-grupo,
#preparacao-exames {
  scroll-margin-top: 105px;
}


.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* Hero claro — mantém azul, mas com aspeto mais leve */
.hero .eyebrow {
  color: var(--primary-dark);
  background: rgba(255,255,255,0.82);
  border-color: rgba(1,76,164,0.18);
  box-shadow: 0 8px 18px rgba(1,36,82,0.08);
}

.hero p {
  color: #334155;
}

.hero .lead {
  color: #25364d;
}

.hero h1 {
  color: var(--primary-dark);
}

.hero .trust-list a,
.hero .trust-list span {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(1,76,164,0.18);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(1,36,82,0.08);
}

.hero .trust-list a:hover {
  background: white;
  border-color: rgba(1,76,164,0.32);
}


@media (max-width: 980px) {
  .site-nav .nav-link {
    color: var(--primary-dark);
  }

  .site-nav .nav-link:hover,
  .site-nav .nav-link.active {
    background: var(--primary-soft);
    color: var(--primary);
  }
}

.hero h1,
.hero h2,
.page-hero h1,
.page-hero h2 {
  color: var(--primary-dark);
}

.hero .lead {
  color: #2e4964;
}


.hero-card p,
.contact-panel p,
.contact-form p,
.card p,
.testimonial-card span,
.small-note {
  color: #43576c;
}


/* Fundo claro uniforme nos cabeçalhos das páginas do menu */
.page-hero h1 {
  color: var(--primary-dark);
}

.page-hero p {
  color: #2f4056;
}

.page-hero .eyebrow {
  color: var(--primary-dark);
  background: rgba(255,255,255,0.78);
  border-color: rgba(1,76,164,0.14);
}


.steps > div:nth-child(1) span,
.steps > div:nth-child(4) span {
  background: var(--primary);
  color: white;
}
.map-frame {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: white;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
}
.mini-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.mini-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
}

.mini-form input,
.mini-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: white;
}

.mini-form input:focus,
.mini-form textarea:focus {
  outline: 3px solid rgba(247,141,68,0.20);
  border-color: var(--accent);
}
.recruitment-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 38px;
  align-items: start;
}

.recruitment-card {
  margin-top: 8px;
}

.form-section {
  max-width: 780px;
}

.form-section .section-heading {
  margin-bottom: 28px;
}

#formulario-candidatura {
  scroll-margin-top: 110px;
}

.vagas-section {
  padding-top: 60px;
  padding-bottom: 65px;
}

.vagas-section h2 {
  margin-bottom: 22px;
}

.vagas-texto {
  margin-top: 0;
  max-width: 1050px;
}

.vagas-texto p {
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .recruitment-grid {
    grid-template-columns: 1fr;
  }
}
