:root {
  --navy: #06265b;
  --navy-deep: #031a41;
  --navy-soft: #0b3979;
  --yellow: #ffbf00;
  --yellow-light: #ffd34e;
  --white: #ffffff;
  --off-white: #f6f7fb;
  --ink: #0c2350;
  --muted: #667085;
  --radius: 24px;
  --shadow: 0 20px 50px rgba(4, 31, 75, .15);
}

* { box-sizing: border-box; }
*, *::before, *::after { box-sizing: border-box; }
html {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}
main, section, header, footer, div {
  max-width: 100%;
  box-sizing: border-box;
}


a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  max-width: 100%;
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px max(16px, calc((100vw - 1180px) / 2));
  background: rgba(3, 26, 65, .86);
  backdrop-filter: blur(16px);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-sizing: border-box;
}
.brand {
  width: 145px;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.brand img {
  width: 60px;
  transform: translateY(-1px);
  mix-blend-mode: screen;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-size: .9rem;
  font-weight: 700;
}
.main-nav a { opacity: .9; }
.main-nav a:hover { color: var(--yellow); }
.menu-button { display: none; }
.desktop-cta { margin-left: 5px; }

.button img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  word-break: break-word;
  white-space: normal;
  text-align: center;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .8rem; }
.button-yellow {
  background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
  color: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(255, 191, 0, .26);
}
.button-outline { border-color: rgba(255,255,255,.75); color: white; }
.button-navy { background: var(--navy); color: white; }

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3,26,65,.98) 0%, rgba(3,26,65,.9) 45%, rgba(3,26,65,.15) 78%),
    url("assets/header.png") center 10% / cover no-repeat;
  color: white;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(14,68,145,.35), transparent 40%),
    linear-gradient(0deg, rgba(3,26,65,.2), transparent);
}
.hero-content { position: relative; z-index: 2; padding-top: 45px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-copy { max-width: 800px; display: flex; flex-direction: column; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 38px; height: 2px;
  background: currentColor;
}
.eyebrow.dark { color: var(--navy); }
.hero h1, h2 {
  font-family: Montserrat, Inter, sans-serif;
  text-wrap: balance;
}
.hero h1 {
  margin: 20px 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: .93;
  letter-spacing: -.055em;
  font-weight: 600;
}
.hero h1 strong { display: block; color: var(--yellow); }
.hero p {
  max-width: 650px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,.88);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.hero-actions2 { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 28px; align-items: center; }
.hero-action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 700;
  color: white;
}
.hero-action-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.hero-action-item span { line-height: 1.2; text-align: left; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.hero-badges span {
  padding: 9px 13px;
  border: 1px solid rgba(255,191,0,.6);
  border-radius: 999px;
  background: rgba(3,26,65,.55);
  font-size: .78rem;
  font-weight: 800;
}
.hero-curve {
  position: absolute;
  left: 0; right: 0; bottom: -68px;
  width: 100%;
  height: 135px;
  background: white;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-top: 12px solid var(--yellow);
}

.stats { background: white; padding: 32px 0 46px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stats article { padding: 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.16); }
.stats article:last-child { border-right: 0; }
.stats strong { display: block; color: var(--yellow); font-size: 1.55rem; }
.stats span { font-size: .85rem; color: rgba(255,255,255,.76); }

.section { padding: 100px 0; }
.white-section { background: var(--white); }
.yellow-section { background: linear-gradient(135deg, var(--yellow-light), var(--yellow)); }
.navy-section { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: white; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.light p { color: rgba(255,255,255,.75); }
.section-heading h2 {
  margin: 12px 0;
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 40px;
  align-items: end;
}
.split-heading p { color: rgba(3,26,65,.75); font-weight: 600; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid #edf0f6;
  box-shadow: 0 14px 34px rgba(4,31,75,.06);
}
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.3rem;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.video-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px; }
.video-card {
  position: relative;
  min-height: 230px;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(3,26,65,.35), rgba(3,26,65,.85)),
    url("assets/pagina-referencia.png") center / cover;
  box-shadow: var(--shadow);
  color: white;
}
.video-large { grid-row: span 2; min-height: 478px; }
.video-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 3rem;
}
.video-label {
  position: absolute; left: 20px; right: 20px; bottom: 18px;
  text-align: left; font-weight: 800;
}

.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.concept-copy h2, .founders-copy h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 16px 0 28px;
}
.concept-points { display: grid; gap: 18px; margin-bottom: 30px; }
.concept-points div { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.concept-points strong { display: block; color: var(--yellow); font-size: 1.1rem; }
.concept-points span { color: rgba(255,255,255,.74); }
.concept-video-card { min-height: 430px; background-position: top center; }

.visual-section { overflow: hidden; }
.full-visual {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(2,19,48,.24);
}

.imagine-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3,26,65,.96), rgba(3,26,65,.58)),
    url("assets/hero.jpg") center 65% / cover no-repeat;
  color: white;
}
.imagine-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 75% 50%, transparent, rgba(3,26,65,.4)); }
.imagine-content { position: relative; max-width: 820px; margin-left: max(20px, calc((100% - 1180px)/2)); }
.imagine-content h2 { font-size: clamp(2.6rem, 5vw, 5rem); line-height: 1; }
.imagine-content ul { list-style: none; padding: 0; display: grid; gap: 12px; }
.imagine-content li::before { content: "✓"; color: var(--yellow); font-weight: 900; margin-right: 10px; }

.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card { padding: 30px; border-radius: 22px; background: var(--off-white); }
.partner-card > span { color: var(--yellow); font-weight: 900; font-size: 2.3rem; }
.partner-card p { color: var(--muted); }

.founders-section { background: linear-gradient(135deg, var(--navy-deep), #082f68); color: white; overflow: hidden; }
.founders-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 68px; align-items: center; }
.founders-photo { max-height: 780px; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.founders-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founders-lead { color: rgba(255,255,255,.78); font-size: 1.05rem; }
.story-list {
  display: grid; gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,191,0,.28);
  border-radius: 24px;
  margin: 28px 0;
}
.story-list p { margin: 0; padding: 19px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.story-list p:last-child { border-bottom: 0; }
.story-list strong { color: var(--yellow); }
.founder-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.founder-credentials article { padding: 22px; border-radius: 18px; border: 1px solid rgba(255,191,0,.35); }
.founder-credentials strong { display: block; color: var(--yellow); text-transform: uppercase; }
.founder-credentials span { display: block; color: rgba(255,255,255,.74); margin-top: 8px; }

.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; }
.location-grid h2 { font-size: clamp(2.5rem, 5vw, 5rem); margin: 8px 0; }
.map-placeholder {
  min-height: 360px;
  border-radius: 26px;
  display: grid; place-items: center;
  color: white;
  background:
    linear-gradient(rgba(3,26,65,.45), rgba(3,26,65,.8)),
    url("assets/pagina-referencia.png") center bottom / cover;
  box-shadow: var(--shadow);
}

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.accordion { display: grid; gap: 12px; }
details { background: var(--off-white); padding: 20px 24px; border-radius: 16px; border: 1px solid #e8ebf2; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); margin-bottom: 0; }

.final-cta { background: var(--navy-deep); color: white; padding: 75px 0; }
.final-cta-content { display: flex; justify-content: space-between; gap: 50px; align-items: center; }
.final-cta h2 { margin: 10px 0; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1; }
.final-cta p { color: rgba(255,255,255,.76); }
.final-actions { display: flex; flex-direction: column; gap: 12px; min-width: 270px; }

.site-footer { background: #020f28; color: rgba(255,255,255,.72); padding: 35px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.footer-grid strong { color: white; }
.footer-grid span { display: block; color: var(--yellow); font-size: .8rem; font-weight: 800; text-transform: uppercase; }

.floating-whatsapp {
  position: fixed; z-index: 999;
  right: 22px; bottom: 22px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25D366;
  color: white; font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.video-modal {
  width: min(780px, calc(100% - 30px));
  border: 0;
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}
.video-modal::backdrop { background: rgba(1,11,30,.75); }
.modal-content { min-height: 360px; display: grid; place-items: center; padding: 30px; background: var(--navy); color: white; }
.modal-close { position: absolute; right: 12px; top: 7px; z-index: 2; border: 0; background: transparent; color: white; font-size: 2rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .desktop-cta { display: none; }
  .menu-button {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    border: 0; background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }
  .menu-button span:not(.sr-only) { width: 26px; height: 2px; background: white; display: block; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 22px 20px;
    background: var(--navy-deep);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .main-nav.open { display: flex; }
  .hero { min-height: 720px; background-position: 63% 20%; overflow: clip; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hero-copy { max-width: 580px; }
  .stats-grid, .feature-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-large { grid-column: span 2; grid-row: auto; }
  .concept-grid, .founders-grid, .location-grid, .faq-grid { grid-template-columns: 1fr; }
  .founders-photo { max-height: 520px; }
  .split-heading, .final-cta-content { grid-template-columns: 1fr; display: grid; }
  .final-actions { min-width: 0; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .site-header { padding-inline: 16px; }
  .brand { width: 120px; }
  .hero {
    min-height: 520px;
    align-items: center;
    padding-bottom: 20px;
    background: var(--navy-deep);
  }
  .hero-content { padding-top: 80px; text-align: center; }
  .hero-copy { text-align: center; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
  .eyebrow { justify-content: center; }
  .hero h1 { font-size: clamp(1.75rem, 7.2vw, 2.5rem); line-height: 1.1; word-break: break-word; text-align: center; }
  .hero p { font-size: 0.98rem; text-align: center; margin-inline: auto; }
  .hero-actions { width: 100%; flex-direction: column; justify-content: center; align-items: center; gap: 10px; }
  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.88rem;
    letter-spacing: .04em;
  }
  .hero-actions2 { width: 100%; gap: 14px; justify-content: center; }
  .hero-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    text-align: center;
  }
  .hero-action-item img { width: 52px; height: 52px; }
  .hero-action-item span { text-align: center; }
  .stats-grid, .feature-grid, .partner-grid, .video-grid, .founder-credentials, .footer-grid { grid-template-columns: 1fr; }
  .video-large { grid-column: auto; min-height: 280px; }
  .stats article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .section { padding: 56px 0; }
  .section-heading h2 { font-size: 2rem; text-align: center; }
  .section-heading p { text-align: center; }
  .full-visual { border-radius: 16px; }
  .concept-video-card { min-height: 280px; }
  .imagine-section { min-height: 520px; }
  .imagine-content { margin-left: 0; text-align: center; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}

@media (max-width: 768px) {
  .subjects-section::before,
  .subjects-section::after,
  .events-section::after,
  .legacy-location-section::after {
    display: none !important;
  }
}

/* Rodapé responsivo */
@media (max-width: 900px) {
  .visit-footer-inner { grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important; gap: 28px 24px !important; padding: 36px 20px !important; }
}
@media (max-width: 600px) {
  .visit-footer-inner { grid-template-columns: minmax(0,1fr) !important; gap: 24px !important; padding: 32px 20px !important; text-align: center !important; }
  .visit-footer-logo { margin: 0 auto 14px !important; display: block !important; }
  .footer-col-brand { display: flex; flex-direction: column; align-items: center; }
}

:root {
  --navy: #12346b;
  --gold: #f5b821;
  --text: #19345f;
  --muted: #385172;
  --card: #ffffff;
  --bg: #f8fafc;
  --shadow: 0 14px 35px rgba(18, 52, 107, 0.10);
  --radius: 26px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.formation-section {
  padding: 42px 20px 56px;
  background:
    radial-gradient(circle at 15% 90%, rgba(245, 184, 33, 0.08), transparent 22%),
    radial-gradient(circle at 90% 0%, rgba(18, 52, 107, 0.06), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-top: 0px solid transparent;
  border-image: linear-gradient(90deg, var(--navy), var(--gold)) 1;
}

.formation-container {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.formation-heading {
  text-align: center;
  margin-bottom: 30px;
}

.formation-heading .eyebrow2 {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
}

.formation-heading h2 {
  max-width: 980px;
  margin: 4px auto 0;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.formation-heading .line {
  display: block;
  width: 126px;
  height: 5px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: var(--gold);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 340px;
  padding: 30px 22px 26px;
  border: 1px solid rgba(18, 52, 107, 0.06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(18, 52, 107, 0.16);
}

.benefit-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: clamp(1.15rem, 1.35vw, 1.62rem);
  line-height: 1.08;
  color: var(--navy);
}

.benefit-card .subline {
  display: block;
  margin-top: 4px;
  font-size: 0.7em;
}

.benefit-card p {
  margin-top: 16px;
  font-size: clamp(0.95rem, 1vw, 1.15rem);
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 1250px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .formation-section {
    padding: 34px 16px 44px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-card h3 {
    min-height: auto;
  }
}

/* estilo dos videos */

:root{--blue:#18366f;--yellow:#f4b93b;--white:#fff;--shadow:0 18px 45px rgba(24,54,111,.18)}
    *{box-sizing:border-box;margin:0;padding:0}
    body{font-family:Arial,Helvetica,sans-serif;background:#f5f5f5}
    .testimonials-section{padding:48px 20px 56px;background:var(--yellow)}
    .testimonials-container{width:min(1180px,100%);margin:0 auto}
    .testimonials-title{margin-bottom:30px;text-align:center;font-size:clamp(2rem,5vw,4.5rem);line-height:1;font-weight:900;text-transform:uppercase;color:#fff}
    .videos-layout{display:grid;gap:24px}
    .main-video{width:min(920px,100%);margin:0 auto;aspect-ratio:16/9}
    .small-videos{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
    .small-video{aspect-ratio:9/16}
    .video-card{position:relative;overflow:hidden;background:#0f1f42;box-shadow:var(--shadow);cursor:pointer}
    .video-card video{display:block;width:100%;height:100%;object-fit:cover;background:#0f1f42}
    .video-card::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(7,19,48,.02),rgba(7,19,48,.12));pointer-events:none;transition:opacity .25s ease}
    .video-card.is-playing::after{opacity:0}
    .play-button{position:absolute;top:50%;left:50%;z-index:3;width:clamp(74px,9vw,128px);height:clamp(74px,9vw,128px);transform:translate(-50%,-50%);border:0;border-radius:50%;background:rgba(24,54,111,.94);box-shadow:0 10px 30px rgba(0,0,0,.25);cursor:pointer;transition:.2s ease}
    .small-video .play-button{width:clamp(66px,7vw,96px);height:clamp(66px,7vw,96px)}
    .play-button:hover{transform:translate(-50%,-50%) scale(1.08)}
    .play-button::before{content:"";position:absolute;top:50%;left:54%;transform:translate(-50%,-50%);border-top:22px solid transparent;border-bottom:22px solid transparent;border-left:34px solid #fff}
    .small-video .play-button::before{border-top-width:17px;border-bottom-width:17px;border-left-width:27px}
    .video-card.is-playing .play-button{opacity:0;pointer-events:none}
    @media(max-width:680px){.small-videos{grid-template-columns:1fr}.small-video{aspect-ratio:9/13}.videos-layout{gap:18px}.testimonials-section{padding:38px 16px 44px}}
  </style>

/* estilo dos intercultural */

 :root {
      --legacy-blue: #1b2f59;
      --legacy-yellow: #f5bd23;
      --text-soft: rgba(255, 255, 255, 0.94);
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .intercultural-section {
      padding: 54px 24px 60px;
      overflow: hidden;
      background: #1b2f59;
      color: var(--white);
    }

    .intercultural-container {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .intercultural-title {
      max-width: 1050px;
      margin-bottom: 34px;
      font-size: clamp(2.1rem, 4.6vw, 4.2rem);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .intercultural-grid {
      display: grid;
      grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
      gap: 44px;
      align-items: center;
    }

    .video-card-phil {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border-radius: 6px;
      background: #101d37;
      box-shadow: var(--shadow);
      cursor: pointer;
    }

    .video-card-phil video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #101d37;
    }

  
    .intercultural-copy {
      max-width: 760px;
      font-size: clamp(1.05rem, 1.65vw, 1.45rem);
      line-height: 1.55;
      font-weight: 700;
      color: var(--text-soft);
    }

    .intercultural-copy p + p {
      margin-top: 26px;
    }

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

    @media (max-width: 900px) {
      .intercultural-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .video-card-phil {
        width: min(360px, 100%);
        margin: 0 auto;
      }

      .intercultural-copy {
        max-width: none;
      }
    }

    @media (max-width: 560px) {
      .intercultural-section {
        padding: 38px 18px 46px;
      }

      .intercultural-title {
        margin-bottom: 26px;
      }

      .intercultural-copy {
        font-size: 1rem;
        line-height: 1.58;
      }
    }


    /* estilo AULAS */

    :root{
      --blue:#0b2b63;
      --blue-2:#112f68;
      --yellow:#f7b916;
      --yellow-2:#ffc928;
      --white:#ffffff;
      --ink:#16213b;
      --muted:#4e5d78;
      --radius:20px;
      --shadow:0 18px 45px rgba(0,0,0,.16);
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    body{
      font-family:Arial, Helvetica, sans-serif;
      background:#f4f6fb;
      color:var(--ink);
    }

    /*img{
      width:100%;
      display:block;
    }*/

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

    .section-shell{
      width:min(1180px, calc(100% - 32px));
      margin:0 auto;
    }

    /* DISCIPLINAS */

    .subjects-section{
      position:relative;
      overflow:hidden;
      padding:58px 0 44px;
      background:
        radial-gradient(circle at 10% 15%, rgba(255,255,255,.28), transparent 22%),
        radial-gradient(circle at 92% 72%, rgba(255,255,255,.18), transparent 24%),
        linear-gradient(135deg, var(--yellow-2), var(--yellow));
    }

    .subjects-section::before,
    .subjects-section::after{
      content:"";
      position:absolute;
      width:210px;
      height:210px;
      border-radius:50%;
      background:var(--blue);
      opacity:.98;
      z-index:0;
    }

    .subjects-section::before{
      left:-120px;
      top:-90px;
    }

    .subjects-section::after{
      right:-130px;
      bottom:-110px;
    }

    .subjects-content{
      position:relative;
      z-index:1;
    }

    .eyebrow-b{
      text-align:center;
      font-size:clamp(1.35rem, 2.3vw, 2rem);
      line-height:1.1;
      font-weight:900;
      color:var(--blue);
    }

    .subjects-title{
      text-align:center;
      font-size:clamp(2rem, 4.2vw, 4rem);
      line-height:1.02;
      font-weight:900;
      color:var(--white);
      margin-top:4px;
    }

    .subjects-subtitle{
      text-align:center;
      margin:10px auto 28px;
      color:var(--blue);
      font-size:1rem;
      font-weight:700;
    }

    .subjects-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:16px;
    }

    .subject-card{
      overflow:hidden;
      background:var(--white);
      border-radius:18px;
      box-shadow:var(--shadow);
      transition:transform .22s ease, box-shadow .22s ease;
    }

    .subject-card:hover{
      transform:translateY(-6px);
      box-shadow:0 24px 50px rgba(0,0,0,.18);
    }

    .subject-image{
      aspect-ratio:16/8.5;
      overflow:hidden;
      background:#d7dbe4;
    }

    .subject-image img{
      height:100%;
      object-fit:cover;
    }

    .subject-body{
      display:grid;
      grid-template-columns:58px 1fr;
      gap:14px;
      align-items:center;
      padding:14px 16px 16px;
    }

    .subject-icon,
    .event-icon{
      display:grid;
      place-items:center;
      width:48px;
      height:48px;
      border-radius:50%;
      background:var(--blue);
      color:var(--yellow);
      font-size:1.35rem;
      font-weight:900;
    }

    .subject-body h3{
      color:var(--blue);
      font-size:1.05rem;
      font-weight:900;
      text-transform:uppercase;
      margin-bottom:4px;
    }

    .subject-body p{
      color:var(--muted);
      font-size:.88rem;
      line-height:1.35;
    }

    .subjects-cta{
      margin:24px auto 0;
      max-width:900px;
      display:flex;
      justify-content:space-between;
      gap:20px;
      align-items:center;
      padding:14px 18px;
      border-radius:16px;
      background:var(--blue);
      color:var(--white);
    }

    .subjects-cta p{
      display:flex;
      gap:12px;
      align-items:center;
      font-size:.98rem;
      line-height:1.35;
    }

    .heart{
      font-size:1.55rem;
      color:var(--yellow);
    }

    .cta-button{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:0 22px;
      border-radius:10px;
      background:var(--yellow);
      color:var(--blue);
      font-weight:900;
      text-transform:uppercase;
      font-size:.82rem;
      transition:transform .2s ease;
    }

    .cta-button:hover{
      transform:translateY(-2px);
    }

    /* EVENTOS */

    .events-section{
      position:relative;
      overflow:hidden;
      padding:60px 0 70px;
      background:
        radial-gradient(circle at 88% 10%, rgba(255,255,255,.05), transparent 25%),
        linear-gradient(180deg, #0b2b63 0%, #071f49 100%);
      color:var(--white);
    }

    .events-section::after{
      content:"";
      position:absolute;
      right:-80px;
      top:30px;
      width:420px;
      height:420px;
      border-radius:50%;
      border:38px solid rgba(255,255,255,.035);
      box-shadow:
        inset 0 0 0 32px rgba(255,255,255,.025),
        inset 0 0 0 68px rgba(255,255,255,.018);
      pointer-events:none;
    }

    .events-header{
      text-align:center;
      position:relative;
      z-index:1;
      margin-bottom:34px;
    }

    .events-kicker{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:14px;
      color:var(--yellow);
      letter-spacing:.24em;
      font-weight:900;
      text-transform:uppercase;
      font-size:.95rem;
    }

    .events-kicker::before,
    .events-kicker::after{
      content:"";
      width:48px;
      height:2px;
      background:var(--yellow);
    }

    .events-title{
      margin-top:12px;
      font-size:clamp(2.4rem, 5.2vw, 5rem);
      line-height:.96;
      text-transform:uppercase;
      font-weight:900;
    }

    .events-title span{
      display:block;
      color:var(--yellow);
    }

    .events-description{
      max-width:800px;
      margin:18px auto 0;
      color:rgba(255,255,255,.85);
      line-height:1.55;
      font-size:1rem;
    }

    .events-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:18px;
    }

    .event-card{
      overflow:hidden;
      border-radius:18px;
      background:var(--white);
      color:var(--ink);
      box-shadow:var(--shadow);
      transition:transform .22s ease;
    }

    .event-card:hover{
      transform:translateY(-6px);
    }

    .event-image{
      aspect-ratio:16/10;
      overflow:hidden;
      background:#dfe3eb;
    }

    .event-image img{
      height:100%;
      object-fit:cover;
    }

    .event-body{
      position:relative;
      text-align:center;
      padding:34px 22px 22px;
      min-height:250px;
    }

    .event-icon{
      position:absolute;
      top:-25px;
      left:50%;
      transform:translateX(-50%);
      background:var(--yellow);
      color:var(--blue);
      border:4px solid var(--white);
    }

    .event-body h3{
      color:var(--blue);
      font-size:1.08rem;
      font-weight:900;
      text-transform:uppercase;
      margin-bottom:10px;
    }

    .event-body p{
      color:var(--muted);
      font-size:.92rem;
      line-height:1.48;
    }

    .event-link{
      display:inline-flex;
      gap:8px;
      align-items:center;
      margin-top:18px;
      color:var(--blue);
      font-size:.9rem;
      font-weight:900;
    }

    .event-link span{
      color:var(--yellow);
      font-size:1.05rem;
    }

    @media (max-width:900px){
      .subjects-grid,
      .events-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }

      .subjects-cta{
        flex-direction:column;
        text-align:center;
      }
    }

    @media (max-width:620px){
      .subjects-section,
      .events-section{
        padding-left:0;
        padding-right:0;
      }

      .subjects-grid,
      .events-grid{
        grid-template-columns:1fr;
      }

      .subjects-title{
        font-size:2.2rem;
      }

      .events-title{
        font-size:2.7rem;
      }

      .subjects-cta p{
        align-items:flex-start;
      }
    }

    /*parcerias internacionais*/
    :root{--lp-blue:#182a5b;--lp-gold:#f4b91f;--lp-text:#202535;--lp-border:#e7e9ef;--lp-bg:#fff;--lp-shadow:0 14px 40px rgba(24,42,91,.10)}
    *{box-sizing:border-box} body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#f7f8fb;color:var(--lp-text)} img{display:block;width:100%} a{color:inherit;text-decoration:none}
    .legacy-partners-section{padding:64px 20px 72px;background:var(--lp-bg)}
    .legacy-partners-container{width:min(1460px,100%);margin:0 auto}
    .legacy-partners-title{margin:0 0 38px;font-size:clamp(2.3rem,5vw,5.2rem);line-height:.98;letter-spacing:.02em;font-weight:900;text-transform:uppercase;color:#252525}
    .legacy-partners-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;align-items:stretch}
    .legacy-partners-card{display:flex;flex-direction:column;overflow:hidden;border:1px solid var(--lp-border);border-radius:24px;background:#fff;box-shadow:var(--lp-shadow);transition:transform .25s ease,box-shadow .25s ease}
    .legacy-partners-card:hover{transform:translateY(-7px);box-shadow:0 24px 55px rgba(24,42,91,.16)}
    .legacy-partners-image{position:relative;aspect-ratio:16/9;overflow:hidden;background:#dfe5ef}
    .legacy-partners-image img{width:100%;height:100%;object-fit:cover}
    .legacy-partners-logo{position:absolute;right:18px;bottom:18px;width:auto!important;max-width:150px;max-height:64px;padding:10px 14px;border-radius:14px;background:rgba(255,255,255,.94);box-shadow:0 8px 24px rgba(0,0,0,.12);object-fit:contain!important}
    .legacy-partners-body{display:flex;flex-direction:column;flex:1;padding:24px 24px 26px}
    .legacy-partners-body h3{margin:0 0 12px;font-size:clamp(1.35rem,2vw,2rem);line-height:1.1;color:var(--lp-blue)}
    .legacy-partners-body p{margin:0;font-size:1rem;line-height:1.58;color:var(--lp-text)}
    .legacy-partners-body p+p{margin-top:16px}
    .legacy-partners-link{display:inline-flex;align-items:center;gap:8px;margin-top:auto;padding-top:22px;color:var(--lp-blue);font-size:.95rem;font-weight:800}
    .legacy-partners-link span{color:var(--lp-gold);font-size:1.15rem;transition:transform .2s ease}
    .legacy-partners-link:hover span{transform:translateX(4px)}
    .legacy-partners-highlight{border-top:6px solid var(--lp-gold)}
    @media(max-width:1100px){.legacy-partners-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.legacy-partners-card:last-child{grid-column:1/-1}}
    @media(max-width:720px){.legacy-partners-section{padding:44px 16px 52px}.legacy-partners-title{margin-bottom:26px}.legacy-partners-grid{grid-template-columns:1fr;gap:20px}.legacy-partners-card:last-child{grid-column:auto}.legacy-partners-body{padding:20px}.legacy-partners-logo{max-width:120px;max-height:54px}}

    /* MANTENEDORES */

    :root{
      --maintainers-blue:#12264d;
      --maintainers-blue-dark:#0a1b38;
      --maintainers-gold:#f5b91c;
      --maintainers-white:#ffffff;
      --maintainers-soft:rgba(255,255,255,.90);
      --maintainers-line:rgba(245,185,28,.28);
      --maintainers-radius:24px;
    }

    *{
      box-sizing:border-box;
    }

    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:#eef1f6;
    }

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

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

    .legacy-maintainers-section{
      overflow:hidden;
      padding:58px 22px 28px;
      background:
        radial-gradient(circle at 7% 86%, rgba(245,185,28,.30), transparent 25%),
        linear-gradient(135deg, var(--maintainers-blue-dark), var(--maintainers-blue));
      color:var(--maintainers-white);
    }

    .legacy-maintainers-container{
      width:min(1440px, 100%);
      margin:0 auto;
    }

    .legacy-maintainers-grid{
      display:grid;
      grid-template-columns:minmax(350px, 500px) minmax(0,1fr);
      gap:52px;
      align-items:start;
    }

    .legacy-maintainers-photo-column{
      align-self:end;
    }

    .legacy-maintainers-photo{
      position:relative;
      overflow:hidden;
      min-height:610px;
      border-radius:8px 8px 0 0;
      background:#e7e3dc;
    }

    .legacy-maintainers-photo img{
      width:100%;
      height:100%;
      min-height:610px;
      object-fit:cover;
      object-position:center top;
    }

    .legacy-maintainers-credentials{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:1fr 1fr;
      margin:-1px 26px 0;
      overflow:hidden;
      border:1px solid var(--maintainers-gold);
      border-radius:0 0 24px 24px;
      background:rgba(7,24,51,.94);
      backdrop-filter:blur(10px);
    }

    .legacy-maintainers-credential{
      padding:24px 22px 26px;
      text-align:center;
    }

    .legacy-maintainers-credential + .legacy-maintainers-credential{
      border-left:1px solid rgba(245,185,28,.45);
    }

    .legacy-maintainers-icon{
      display:grid;
      place-items:center;
      width:58px;
      height:58px;
      margin:0 auto 12px;
      border:2px solid var(--maintainers-gold);
      border-radius:50%;
      color:var(--maintainers-gold);
      font-size:1.7rem;
    }

    .legacy-maintainers-credential h3{
      margin:0;
      font-size:1rem;
      line-height:1.2;
      text-transform:uppercase;
    }

    .legacy-maintainers-credential h3 span{
      display:block;
      margin-top:4px;
      color:var(--maintainers-gold);
    }

    .legacy-maintainers-credential p{
      margin:12px 0 0;
      color:var(--maintainers-soft);
      font-size:.86rem;
      line-height:1.45;
    }

    .legacy-maintainers-copy{
      padding-top:2px;
    }

    .legacy-maintainers-kicker{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:12px;
      color:var(--maintainers-gold);
      font-size:.9rem;
      font-weight:900;
      letter-spacing:.08em;
      text-transform:uppercase;
    }

    .legacy-maintainers-kicker::before{
      content:"";
      width:86px;
      height:2px;
      background:var(--maintainers-gold);
    }

    .legacy-maintainers-title{
      margin:0;
      font-size:clamp(3rem, 5.8vw, 6.2rem);
      line-height:.95;
      font-weight:900;
      letter-spacing:-.03em;
      text-transform:uppercase;
    }

    .legacy-maintainers-subtitle{
      margin:14px 0 34px;
      font-size:clamp(1.2rem, 2vw, 2rem);
      line-height:1.25;
      font-weight:900;
      text-transform:uppercase;
    }

    .legacy-maintainers-subtitle span{
      color:var(--maintainers-gold);
    }

    .legacy-maintainers-quotes{
      display:grid;
      gap:0;
    }

    .legacy-maintainers-quote{
      position:relative;
      padding:24px 0 24px 68px;
      border-bottom:1px solid var(--maintainers-line);
    }

    .legacy-maintainers-quote:last-child{
      border-bottom:0;
    }

    .legacy-maintainers-quote::before{
      content:"“";
      position:absolute;
      left:0;
      top:8px;
      color:var(--maintainers-gold);
      font-size:5.2rem;
      line-height:1;
      font-weight:900;
    }

    .legacy-maintainers-quote::after{
      content:"";
      position:absolute;
      left:46px;
      top:34px;
      bottom:30px;
      width:1px;
      background:rgba(245,185,28,.45);
    }

    .legacy-maintainers-quote p{
      margin:0;
      color:var(--maintainers-soft);
      font-size:clamp(1.05rem, 1.7vw, 1.55rem);
      line-height:1.48;
    }

    .legacy-maintainers-quote.featured p{
      font-size:clamp(1.05rem, 1.55vw, 1.42rem);
      line-height:1.55;
    }

    .legacy-maintainers-cta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      margin-top:34px;
      padding:18px 22px;
      border:1px solid rgba(245,185,28,.72);
      border-radius:22px;
      background:rgba(7,24,51,.55);
    }

    .legacy-maintainers-cta-copy{
      display:flex;
      align-items:center;
      gap:18px;
      color:var(--maintainers-soft);
      font-size:1rem;
      line-height:1.4;
    }

    .legacy-maintainers-heart{
      color:var(--maintainers-gold);
      font-size:2.6rem;
      line-height:1;
    }

    .legacy-maintainers-cta-copy strong{
      color:var(--maintainers-gold);
    }

    .legacy-maintainers-button{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:50px;
      padding:0 28px;
      border-radius:10px;
      background:var(--maintainers-gold);
      color:var(--maintainers-blue-dark);
      font-size:.95rem;
      font-weight:900;
      text-transform:uppercase;
      transition:transform .2s ease, box-shadow .2s ease;
    }

    .legacy-maintainers-button:hover{
      transform:translateY(-2px);
      box-shadow:0 12px 24px rgba(0,0,0,.20);
    }

    @media (max-width:1050px){
      .legacy-maintainers-grid{
        grid-template-columns:1fr;
      }

      .legacy-maintainers-photo-column{
        width:min(620px,100%);
        margin:0 auto;
      }

      .legacy-maintainers-copy{
        max-width:900px;
        margin:0 auto;
      }
    }

    @media (max-width:700px){
      .legacy-maintainers-section{
        padding:38px 16px 22px;
      }

      .legacy-maintainers-title{
        font-size:2.8rem;
      }

      .legacy-maintainers-subtitle{
        font-size:1.15rem;
      }

      .legacy-maintainers-photo{
        min-height:460px;
      }

      .legacy-maintainers-photo img{
        min-height:460px;
      }

      .legacy-maintainers-credentials{
        grid-template-columns:1fr;
        margin:0;
        border-radius:0 0 20px 20px;
      }

      .legacy-maintainers-credential + .legacy-maintainers-credential{
        border-left:0;
        border-top:1px solid rgba(245,185,28,.45);
      }

      .legacy-maintainers-quote{
        padding-left:54px;
      }

      .legacy-maintainers-quote::after{
        left:38px;
      }

      .legacy-maintainers-cta{
        flex-direction:column;
        align-items:stretch;
        text-align:center;
      }

      .legacy-maintainers-cta-copy{
        flex-direction:column;
      }

      .legacy-maintainers-button{
        width:100%;
      }
    }

    /* LOCALIZACAO */
     :root{
      --legacy-location-blue:#102a57;
      --legacy-location-blue-dark:#081b39;
      --legacy-location-yellow:#f4b936;
      --legacy-location-white:#ffffff;
      --legacy-location-text:#172746;
      --legacy-location-muted:#5c6678;
      --legacy-location-border:#e7e9ee;
      --legacy-location-shadow:0 18px 48px rgba(16,42,87,.13);
      --legacy-location-radius:26px;
    }

    *{
      box-sizing:border-box;
    }

    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:#f4f6fa;
      color:var(--legacy-location-text);
    }

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

    .legacy-location-section{
      position:relative;
      overflow:hidden;
      padding:68px 20px;
      background:
        radial-gradient(circle at 8% 88%, rgba(244,185,54,.18), transparent 26%),
        linear-gradient(180deg,#ffffff 0%,#fbfbfc 100%);
    }

    .legacy-location-section::after{
      content:"";
      position:absolute;
      left:-120px;
      bottom:-180px;
      width:430px;
      height:430px;
      border-radius:50%;
      background:var(--legacy-location-yellow);
      opacity:.92;
      z-index:0;
    }

    .legacy-location-container{
      position:relative;
      z-index:1;
      width:min(1460px,100%);
      margin:0 auto;
    }

    .legacy-location-grid{
      display:grid;
      grid-template-columns:minmax(320px,.82fr) minmax(0,1.35fr);
      gap:44px;
      align-items:stretch;
    }

    .legacy-location-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:18px 8px 18px 4px;
    }

    .legacy-location-kicker{
      display:flex;
      align-items:center;
      gap:12px;
      margin:0 0 24px;
      color:var(--legacy-location-yellow);
      font-size:1.15rem;
      font-weight:900;
      letter-spacing:.03em;
      text-transform:uppercase;
    }

    .legacy-location-pin-small{
      width:28px;
      height:28px;
      display:grid;
      place-items:center;
      color:var(--legacy-location-yellow);
      font-size:1.75rem;
    }

    .legacy-location-title{
      margin:0;
      color:var(--legacy-location-blue);
      font-size:clamp(3.5rem,6vw,7rem);
      line-height:.94;
      letter-spacing:-.05em;
      font-weight:900;
    }

    .legacy-location-city{
      display:block;
      margin-top:18px;
      color:var(--legacy-location-yellow);
      font-size:clamp(2.7rem,5vw,5.4rem);
      line-height:1;
    }

    .legacy-location-divider{
      width:58px;
      height:4px;
      margin:28px 0 22px;
      border-radius:999px;
      background:var(--legacy-location-yellow);
    }

    .legacy-location-description{
      max-width:600px;
      margin:0;
      color:var(--legacy-location-text);
      font-size:1.12rem;
      line-height:1.65;
    }

    .legacy-location-features{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:0;
      margin-top:34px;
    }

    .legacy-location-feature{
      padding:0 20px;
      text-align:center;
    }

    .legacy-location-feature:first-child{
      padding-left:0;
    }

    .legacy-location-feature + .legacy-location-feature{
      border-left:1px solid #d8dce5;
    }

    .legacy-location-feature-icon{
      display:grid;
      place-items:center;
      width:68px;
      height:68px;
      margin:0 auto 14px;
      border-radius:50%;
      background:var(--legacy-location-blue);
      color:var(--legacy-location-yellow);
      font-size:1.8rem;
    }

    .legacy-location-feature h3{
      margin:0 0 8px;
      color:var(--legacy-location-blue);
      font-size:.96rem;
      text-transform:uppercase;
    }

    .legacy-location-feature p{
      margin:0;
      color:var(--legacy-location-muted);
      font-size:.88rem;
      line-height:1.45;
    }

    .legacy-location-google-card{
      margin-top:32px;
      display:flex;
      align-items:center;
      gap:18px;
      padding:22px;
      border-radius:22px;
      background:linear-gradient(135deg,var(--legacy-location-blue-dark),var(--legacy-location-blue));
      color:#fff;
      box-shadow:var(--legacy-location-shadow);
    }

    .legacy-location-google-icon{
      flex:0 0 auto;
      display:grid;
      place-items:center;
      width:64px;
      height:64px;
      border-radius:50%;
      background:var(--legacy-location-yellow);
      color:var(--legacy-location-blue-dark);
      font-size:2rem;
    }

    .legacy-location-google-card h3{
      margin:0 0 6px;
      font-size:1.35rem;
    }

    .legacy-location-google-card p{
      margin:0;
      color:rgba(255,255,255,.85);
      font-size:.94rem;
      line-height:1.45;
    }

    .legacy-location-map-column{
      display:grid;
      grid-template-rows:minmax(420px,1fr) auto;
      gap:20px;
    }

    .legacy-location-map{
      overflow:hidden;
      min-height:520px;
      border-radius:var(--legacy-location-radius);
      border:1px solid var(--legacy-location-border);
      background:#e7ebf2;
      box-shadow:var(--legacy-location-shadow);
    }

    .legacy-location-map iframe{
      display:block;
      width:100%;
      height:100%;
      min-height:520px;
      border:0;
    }

    .legacy-location-bottom{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }

    .legacy-location-info-card{
      display:flex;
      align-items:center;
      gap:18px;
      padding:22px;
      border:1px solid rgba(244,185,54,.65);
      border-radius:20px;
      background:#fff;
    }

    .legacy-location-info-icon{
      flex:0 0 auto;
      display:grid;
      place-items:center;
      width:62px;
      height:62px;
      border-radius:50%;
      background:var(--legacy-location-yellow);
      color:var(--legacy-location-blue);
      font-size:1.7rem;
    }

    .legacy-location-info-card h3{
      margin:0 0 7px;
      color:var(--legacy-location-blue);
      font-size:.95rem;
      text-transform:uppercase;
    }

    .legacy-location-info-card p{
      margin:0;
      color:var(--legacy-location-text);
      font-size:.95rem;
      line-height:1.45;
    }

    .legacy-location-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:20px;
    }

    .legacy-location-button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:48px;
      padding:0 22px;
      border-radius:10px;
      background:var(--legacy-location-yellow);
      color:var(--legacy-location-blue-dark);
      font-size:.92rem;
      font-weight:900;
      text-transform:uppercase;
      transition:transform .2s ease,box-shadow .2s ease;
    }

    .legacy-location-button.secondary{
      background:transparent;
      color:var(--legacy-location-white);
      border:2px solid var(--legacy-location-white);
    }

    .legacy-location-button:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 22px rgba(16,42,87,.14);
    }

    @media (max-width:1050px){
      .legacy-location-grid{
        grid-template-columns:1fr;
      }

      .legacy-location-copy{
        max-width:850px;
      }

      .legacy-location-map{
        min-height:460px;
      }

      .legacy-location-map iframe{
        min-height:460px;
      }
    }

    @media (max-width:720px){
      .legacy-location-section{
        padding:44px 16px 52px;
      }

      .legacy-location-title{
        font-size:3.6rem;
      }

      .legacy-location-city{
        font-size:2.8rem;
      }

      .legacy-location-features{
        grid-template-columns:1fr;
        gap:20px;
      }

      .legacy-location-feature{
        padding:0;
      }

      .legacy-location-feature + .legacy-location-feature{
        border-left:0;
        border-top:1px solid #d8dce5;
        padding-top:20px;
      }

      .legacy-location-google-card{
        align-items:flex-start;
      }

      .legacy-location-bottom{
        grid-template-columns:1fr;
      }

      .legacy-location-map,
      .legacy-location-map iframe{
        min-height:390px;
      }

      .legacy-location-actions{
        flex-direction:column;
      }

      .legacy-location-button{
        width:100%;
      }
    }

    /* TAG */

    :root{--family-blue:#173167;--family-blue-dark:#102755;--family-yellow:#f6bd2f;--family-white:#fff;--family-bg:#f4f8fb;--family-text:#193460;--family-muted:#4e6282;--family-shadow:0 16px 38px rgba(18,48,101,.12);--family-radius:26px}
    *{box-sizing:border-box} body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#fff;color:var(--family-text)} img{display:block;max-width:100%}
    .legacy-family-section{position:relative;overflow:hidden;padding:36px 20px 48px;background:radial-gradient(circle at 8% 88%,rgba(246,189,47,.08),transparent 24%),linear-gradient(180deg,#fff 0%,var(--family-bg) 100%)}
    .legacy-family-container{width:min(1650px,100%);margin:0 auto}
    .legacy-family-stats{display:grid;grid-template-columns:repeat(4, 1fr);overflow:hidden;min-height:320px;border-radius:30px;background:linear-gradient(135deg,var(--family-blue-dark),var(--family-blue));box-shadow:var(--family-shadow)}
    .legacy-family-stat{position:relative;display:flex;align-items:center;justify-content:center;padding:28px 22px;text-align:center;color:var(--family-white)}
    .legacy-family-stat:not(:last-child)::after{content:"";position:absolute;top:17%;right:0;width:1px;height:66%;background:rgba(255,255,255,.22)}
    .legacy-family-stat-icon{display:grid;place-items:center;width:58px;height:58px;margin:0 auto 12px;color:var(--family-yellow);font-size:2.2rem;line-height:1}
    .legacy-family-stat strong{display:block;font-size:clamp(1.75rem,2.4vw,3rem);line-height:1;color:var(--family-white)}
    .legacy-family-stat-title{display:block;margin-top:6px;font-size:clamp(1.05rem,1.5vw,1.7rem);line-height:1.1;font-weight:900;color:var(--family-white)}
    .legacy-family-stat p{margin:12px auto 0;max-width:180px;font-size:.98rem;line-height:1.42;color:rgba(255,255,255,.82)}
    .legacy-family-stat-image{min-height:320px;background:#dce3ee}.legacy-family-stat-image img{width:100%;height:100%;object-fit:cover;object-position:center}
    .legacy-family-content{display:grid;grid-template-columns:minmax(280px,.85fr) minmax(0,2.5fr);gap:34px;align-items:stretch;margin-top:38px}
    .legacy-family-intro{display:flex;flex-direction:column;justify-content:center;padding:24px 14px 24px 8px}
    .legacy-family-title{margin:0;max-width:420px;font-size:clamp(2.2rem,4vw,4.2rem);line-height:1.02;letter-spacing:-.04em;color:var(--family-blue)}
    .legacy-family-line{width:110px;height:5px;margin:22px 0 18px;border-radius:999px;background:var(--family-yellow)}
    .legacy-family-subtitle{margin:0;max-width:420px;font-size:1.12rem;line-height:1.5;color:var(--family-muted)}
    .legacy-family-rating{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-top:24px;font-weight:800;color:var(--family-blue)}
    .legacy-family-stars{color:var(--family-yellow);font-size:1.8rem;letter-spacing:2px;line-height:1}
    .legacy-family-testimonials{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
    .legacy-family-card{position:relative;display:grid;grid-template-columns:100px 1fr;gap:18px;align-items:center;min-width:0;padding:34px 28px 30px;border:1px solid rgba(23,49,103,.06);border-radius:var(--family-radius);background:rgba(255,255,255,.98);box-shadow:var(--family-shadow);transition:transform .25s ease,box-shadow .25s ease}
    .legacy-family-card:hover{transform:translateY(-6px);box-shadow:0 24px 48px rgba(18,48,101,.16)}
    .legacy-family-quote{position:absolute;top:12px;left:24px;color:var(--family-yellow);font-size:4.4rem;line-height:1;font-weight:900}
    .legacy-family-avatar{width:100px;height:100px;margin-top:24px;overflow:hidden;border-radius:50%;background:#dde5ee}.legacy-family-avatar img{width:100%;height:100%;object-fit:cover}
    .legacy-family-card blockquote{margin:20px 0 0;font-size:1rem;line-height:1.55;color:var(--family-text)}
    .legacy-family-name{display:block;margin-top:18px;font-size:.96rem;font-weight:800;color:var(--family-blue)}
    @media(max-width:1250px){.legacy-family-stats{grid-template-columns:repeat(4,minmax(0,1fr))}.legacy-family-stat-image{grid-column:1/-1;min-height:300px}.legacy-family-content{grid-template-columns:1fr}.legacy-family-intro{text-align:center;align-items:center}.legacy-family-line{margin-left:auto;margin-right:auto}.legacy-family-testimonials{grid-template-columns:repeat(3,minmax(0,1fr))}}
    @media(max-width:900px){.legacy-family-stats{grid-template-columns:repeat(2,minmax(0,1fr))}.legacy-family-stat:nth-child(2)::after{display:none}.legacy-family-testimonials{grid-template-columns:1fr}.legacy-family-card{grid-template-columns:90px 1fr}}
    @media(max-width:600px){.legacy-family-section{padding:24px 14px 36px}.legacy-family-stats{grid-template-columns:1fr;border-radius:22px}.legacy-family-stat{min-height:210px}.legacy-family-stat::after{top:auto!important;right:12%!important;bottom:0!important;left:12%!important;width:auto!important;height:1px!important}
    .legacy-family-stat-image{min-height:250px}
    .legacy-family-card{grid-template-columns:1fr;text-align:center;padding:34px 22px 26px}
    .legacy-family-avatar{margin:28px auto 0}
    .legacy-family-quote{left:50%;transform:translateX(-50%)}.legacy-family-card blockquote{margin-top:0}}

    /*footer*/

    .visit-footer{background:var(--navy-deep);color:#fff}
    .visit-footer-inner{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.3fr);gap:34px;padding:42px 20px}
    .visit-footer-inner * { min-width: 0; }
    .footer-col-brand{display:flex;flex-direction:column;align-items:center;text-align:center}
    .visit-footer-logo{width:160px;margin-bottom:14px}
    .visit-footer p{margin:0;color:rgba(255,255,255,.72);font-size:.88rem;line-height:1.5}
    .visit-footer h3{margin:0 0 12px;color:var(--family-yellow);font-size:.82rem;text-transform:uppercase;letter-spacing:.08em}
    .visit-footer-links{display:grid;gap:8px;color:rgba(255,255,255,.78);font-size:.85rem;word-break:break-word;overflow-wrap:anywhere}
    .visit-footer-bottom{padding:14px 20px;text-align:center;background:var(--family-yellow);color:var(--navy-deep);font-size:.82rem}

    @media (max-width:900px){
      .visit-footer-inner{grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:28px 24px;padding:36px 20px}
    }
    @media (max-width:600px){
      .visit-footer-inner{grid-template-columns:minmax(0,1fr);gap:24px;padding:32px 20px;text-align:center}
      .visit-footer-logo{margin:0 auto 14px}
    }

    /* 
     * GLOBAL OVERFLOW FIX
     * Forçando no final do arquivo para sobrepor todas as re-declarações anteriores
     */
    html, body {
      overflow-x: hidden !important;
      position: relative !important;
    }
