:root {
  color-scheme: light;
  --brand-dark: #19323c;
  --brand-accent: #e4341c;
  --text-strong: #101828;
  --text-muted: #667085;
  --border-subtle: #e4e7ec;
  --surface-base: #f6f7f9;
  --surface-card: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-card: 0 18px 45px rgba(16, 24, 40, 0.08);
  --enroll-modal-width: min(960px, 90vw);
  --enroll-modal-height: min(640px, 90vh);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Segoe UI Variable", -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
  background: var(--surface-base);
  color: var(--text-strong);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: block;
}

.skip-link {
  position: absolute;
  top: -200px;
  left: 16px;
  padding: 12px 20px;
  background: var(--brand-accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: top 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

body.nav-open {
  overflow: hidden;
}

body.has-enroll-modal {
  overflow: hidden;
}

body.has-curriculum-modal {
  overflow: hidden;
}

.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;
}

.faq-page main {
  padding: 56px 0 80px;
}

.faq-hero__card {
  background: linear-gradient(140deg, rgba(25, 50, 60, 0.08), rgba(228, 52, 28, 0.06));
  border: 1px solid rgba(25, 50, 60, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.faq-hero__eyebrow {
  margin: 0 0 8px;
  color: var(--brand-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.faq-hero h1 {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.faq-hero__lead {
  margin: 14px 0 0;
  color: rgba(16, 24, 40, 0.78);
  max-width: 70ch;
}

.faq {
  margin-top: 26px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.06);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(228, 52, 28, 0.28);
  box-shadow: 0 18px 45px rgba(228, 52, 28, 0.12);
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
  color: var(--brand-dark);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--brand-accent);
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(1px);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(228, 52, 28, 0.35);
  outline-offset: 2px;
  border-radius: calc(var(--radius-md) - 4px);
}

.faq-item__answer {
  padding: 0 20px 20px;
  color: rgba(16, 24, 40, 0.88);
}

.faq-item__answer p {
  margin: 0;
}

@media (max-width: 680px) {
  .faq-page main {
    padding: 40px 0 64px;
  }

  .faq-hero__card {
    padding: 22px;
  }

  .faq-item summary {
    padding: 16px 16px;
  }

  .faq-item__answer {
    padding: 0 16px 16px;
  }
}

.app-nav__mobile-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: none;
  background: none;
  color: var(--text-strong);
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.app-nav__mobile-button:hover,
.app-nav__mobile-button:focus-visible {
  background: rgba(25, 50, 60, 0.08);
}

.app-nav__mobile-icon,
.app-nav__mobile-icon::before,
.app-nav__mobile-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-nav__mobile-icon {
  position: relative;
}

.app-nav__mobile-icon::before,
.app-nav__mobile-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.app-nav__mobile-icon::before {
  top: -6px;
}

.app-nav__mobile-icon::after {
  top: 6px;
}

.app-nav__mobile-button.is-active .app-nav__mobile-icon {
  background: transparent;
}

.app-nav__mobile-button.is-active .app-nav__mobile-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.app-nav__mobile-button.is-active .app-nav__mobile-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.top-banner {
  background: #19323c;
  color: #ffffff;
  font-size: 0.92rem;
  padding: 10px 0;
}

.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.top-banner__col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-banner__col--flags {
  gap: 0;
}

.top-banner__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 2px 0 0;
}

.top-banner__flag img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.top-banner__flag:last-child {
  margin-right: 0;
}

.top-banner__col--ticker {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.top-banner__ticker-text {
  display: inline-block;
  font-weight: 600;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.top-banner__ticker-text.is-leaving {
  opacity: 0;
  transform: translateY(-6px);
}

.top-banner__col--actions {
  gap: 12px;
  flex-wrap: wrap;
}

.top-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.top-banner__cta--primary {
  background: #e4341c;
  color: #ffffff;
  border: none;
}

.top-banner__cta--primary:hover,
.top-banner__cta--primary:focus-visible {
  background: #edb11d;
  color: #19323c;
}

.top-banner__cta--secondary {
  background: #19323c;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.top-banner__cta--secondary:hover,
.top-banner__cta--secondary:focus-visible {
  background: #edb11d;
  color: #19323c;
  border-color: #edb11d;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 231, 236, 0.7);
}

.app-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.app-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.app-header__brand img {
  height: 30px;
  width: auto;
}

.app-nav {
  position: relative;
}

.app-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.app-nav__item {
  position: relative;
}

.app-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4341c;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.app-nav__link:hover,
.app-nav__link:focus-visible {
  color: #ffffff;
  background: #e4341c;
}

.app-nav__item--has-children.is-open > .app-nav__link {
  color: #ffffff;
  background: #e4341c;
}

.app-submenu {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  margin: 0;
  padding: 16px 18px;
  list-style: none;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(16, 24, 40, 0.14);
  min-width: 220px;
  z-index: 70;
}

.app-nav__item--has-children:focus-within .app-submenu,
.app-nav__item--has-children.is-open .app-submenu {
  display: block;
}

.app-submenu li + li {
  margin-top: 10px;
}

.app-submenu__link {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e4341c;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.app-submenu__link:hover,
.app-submenu__link:focus-visible {
  color: #ffffff;
  background: #e4341c;
}

.app-mobile-menu {
  position: fixed;
  inset: 0;
  padding: 32px clamp(18px, 6vw, 40px) 28px;
  background: var(--brand-dark);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 4000;
  color: #ffffff;
  visibility: hidden;
}

.app-mobile-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.app-mobile-menu[hidden] {
  display: none !important;
}

.app-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.app-mobile-menu__header img {
  height: 34px;
  width: auto;
}

.app-mobile-menu__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.app-mobile-menu__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.app-mobile-menu__close:hover,
.app-mobile-menu__close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.app-mobile-menu__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
}

.app-mobile-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: inherit;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-mobile-menu__section {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 16px;
}

.app-mobile-menu__accordion {
  width: 100%;
  background: transparent;
  color: inherit;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.app-mobile-menu__chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.app-mobile-menu__accordion[aria-expanded="true"] .app-mobile-menu__chevron {
  transform: rotate(-135deg);
}

.app-mobile-menu__panel {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.app-mobile-menu__accordion[aria-expanded="true"] + .app-mobile-menu__panel {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
  padding: 4px 0 16px;
}

.app-mobile-menu__panel-link {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-mobile-menu__panel-link:last-child {
  border-bottom: none;
}

.app-mobile-menu__panel-link:hover,
.app-mobile-menu__panel-link:focus-visible {
  color: #ffffff;
}

.app-mobile-menu__footer {
  padding: 8px 0 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}


.hero-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.hero-slider input {
  display: none;
}

.hero-slider .slider-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 1px 1px 4px rgba(16, 24, 40, 0.3);
  background: #fcfff4;
  transform: translateZ(0);
  transition: all 500ms ease-out;
  min-height: 420px;
}

.hero-slider .slider-wrapper .inner {
  width: 500%;
  line-height: 0;
  transform: translateZ(0);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slider article {
  width: 20%;
  float: left;
  position: relative;
  min-height: 420px;
}

.hero-slider article picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slider article picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider .info {
  position: absolute;
  font-style: italic;
  line-height: 20px;
  opacity: 0;
  color: #000;
  text-align: left;
  transition: all 1000ms ease-out 600ms;
}

.hero-slider .info h3 {
  color: #fcfff4;
  margin: 0 0 5px;
  font-weight: normal;
  font-size: 1.5em;
  font-style: normal;
}

.hero-slider .info.top-left {
  top: 30px;
  left: 30px;
}

.hero-slider .info.top-right {
  top: 30px;
  right: 30px;
}

.hero-slider .info.bottom-left {
  bottom: 30px;
  left: 30px;
}

.hero-slider .info.bottom-right {
  bottom: 30px;
  right: 30px;
}

.slider-prev-next-control {
  height: 50px;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.slider-prev-next-control label {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-prev-next-control label:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.slider-prev-next-control label::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.slider-dot-control {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

.slider-dot-control label {
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  transition: all 0.3s;
}

.slider-dot-control label:hover {
  background: #ccc;
  border-color: #777;
}

#hero-slide-5:checked ~ .slider-prev-next-control label:nth-child(1)::after,
#hero-slide-4:checked ~ .slider-prev-next-control label:nth-child(5)::after,
#hero-slide-3:checked ~ .slider-prev-next-control label:nth-child(4)::after,
#hero-slide-2:checked ~ .slider-prev-next-control label:nth-child(3)::after,
#hero-slide-1:checked ~ .slider-prev-next-control label:nth-child(2)::after {
  background-image: url("../img/next.svg");
}

#hero-slide-5:checked ~ .slider-prev-next-control label:nth-child(1),
#hero-slide-4:checked ~ .slider-prev-next-control label:nth-child(5),
#hero-slide-3:checked ~ .slider-prev-next-control label:nth-child(4),
#hero-slide-2:checked ~ .slider-prev-next-control label:nth-child(3),
#hero-slide-1:checked ~ .slider-prev-next-control label:nth-child(2) {
  display: block;
  float: right;
  margin-right: 5px;
}

#hero-slide-1:checked ~ .slider-prev-next-control label:nth-child(5),
#hero-slide-5:checked ~ .slider-prev-next-control label:nth-child(4),
#hero-slide-4:checked ~ .slider-prev-next-control label:nth-child(3),
#hero-slide-3:checked ~ .slider-prev-next-control label:nth-child(2),
#hero-slide-2:checked ~ .slider-prev-next-control label:nth-child(1) {
  display: block;
  float: left;
  margin-left: 5px;
}

#hero-slide-1:checked ~ .slider-prev-next-control label:nth-child(5)::after,
#hero-slide-5:checked ~ .slider-prev-next-control label:nth-child(4)::after,
#hero-slide-4:checked ~ .slider-prev-next-control label:nth-child(3)::after,
#hero-slide-3:checked ~ .slider-prev-next-control label:nth-child(2)::after,
#hero-slide-2:checked ~ .slider-prev-next-control label:nth-child(1)::after {
  background-image: url("../img/prev.svg");
}

#hero-slide-5:checked ~ .slider-dot-control label:nth-child(5),
#hero-slide-4:checked ~ .slider-dot-control label:nth-child(4),
#hero-slide-3:checked ~ .slider-dot-control label:nth-child(3),
#hero-slide-2:checked ~ .slider-dot-control label:nth-child(2),
#hero-slide-1:checked ~ .slider-dot-control label:nth-child(1) {
  background: #333;
}

#hero-slide-5:checked ~ .slider-wrapper article:nth-child(5) .info,
#hero-slide-4:checked ~ .slider-wrapper article:nth-child(4) .info,
#hero-slide-3:checked ~ .slider-wrapper article:nth-child(3) .info,
#hero-slide-2:checked ~ .slider-wrapper article:nth-child(2) .info,
#hero-slide-1:checked ~ .slider-wrapper article:nth-child(1) .info {
  opacity: 1;
}

#hero-slide-1:checked ~ .slider-wrapper .inner {
  margin-left: 0%;
}

#hero-slide-2:checked ~ .slider-wrapper .inner {
  margin-left: -100%;
}

#hero-slide-3:checked ~ .slider-wrapper .inner {
  margin-left: -200%;
}

#hero-slide-4:checked ~ .slider-wrapper .inner {
  margin-left: -300%;
}

#hero-slide-5:checked ~ .slider-wrapper .inner {
  margin-left: -400%;
}

@media only screen and (max-width: 850px) and (min-width: 450px) {
  .hero-slider .slider-wrapper {
    border-radius: 0;
  }
}

@media only screen and (max-width: 450px) {
  .hero-slider .slider-wrapper {
    border-radius: 0;
  }

  .hero-slider .info {
    opacity: 0;
  }
}
.hero__banner {
  position: relative;
  height: 265px;
  border-radius: 0;
  overflow: hidden;
  background: url("../img/polo/anapolis/banner_heroi_polo_anapolis.jpg") center / cover no-repeat;
}

.hero__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(228, 51, 28, 0.7);
  pointer-events: none;
}

.hero__banner-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: center;
}

.hero__banner-copy {
  color: #fff;
  text-align: center;
  width: min(640px, 100%);
}

.hero__banner-copy h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  line-height: 1.2;
}

.hero__banner-copy h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__details {
  min-height: 140px;
  background: #f1f3f6;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.hero__details-inner {
  width: min(1200px, 100%);
  height: 100%;
  padding: 48px 32px;
  box-sizing: border-box;
}

.hero__card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
  height: 100%;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card--image {
  padding: 0;
  display: block;
  height: 100%;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.15);
}

.hero-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.hero-card__label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-card__value {
  margin: 6px 0 0;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-strong);
}

.hero-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(228, 52, 28, 0.12);
  display: grid;
  place-items: center;
}

.hero-card__icon i {
  font-size: 32px;
  line-height: 1;
  color: var(--brand-accent);
}

.hero-card--info {
  align-items: center;
  text-align: center;
  gap: 8px;
  justify-content: center;
}

.hero-card--info .hero-card__icon {
  margin: 0 auto;
  margin-bottom: 6px;
}

@media (max-width: 1200px) {
  .hero__card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero__banner-inner {
    padding: 0 16px;
  }

  .hero__details {
    min-height: auto;
  }

  .hero__details-inner {
    padding: 32px 0;
  }

.hero__card-grid {
    grid-template-columns: 1fr;
  }
}

.course-hero {
  position: relative;
  min-height: 650px;
  height: 650px;
  background-image:
    linear-gradient(180deg, rgba(25, 50, 60, 0), rgba(25, 50, 60, 0.7)),
    var(--course-hero-image, url("../img/courses/graduacao-ead/administracao-publica.jpg"));
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
}

.course-hero__content {
  width: 100%;
}

.course-hero__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 56px);
  align-items: flex-start;
}

.course-hero__copy {
  max-width: 52ch;
}

.course-hero__eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
}

.course-hero__copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.2;
}

.course-hero__description {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
}

.course-hero__card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-strong);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.course-hero__card-label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-dark);
}

.course-hero__card-price {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

.course-hero__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  background: var(--brand-accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(228, 52, 28, 0.35);
}

.course-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(228, 52, 28, 0.45);
}

.course-hero__card-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .course-hero {
    height: auto;
    min-height: 520px;
    padding: 48px 0;
  }

  .course-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-hero__card {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .course-hero__inner {
    padding: 0 16px;
  }
}

.course-details {
  padding: 72px 0;
  background: var(--surface-card);
}

.course-details__inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.course-details__content {
  max-width: 72ch;
}

.course-details__sidebar {
  align-self: stretch;
}

.course-details__title {
  margin: 0 0 14px;
  font-size: 1.75rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.course-details__content p {
  margin: 0 0 16px;
  color: var(--text-strong);
}

.course-details__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: var(--brand-accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(228, 52, 28, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-details__cta:hover,
.course-details__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(228, 52, 28, 0.45);
}

.course-details__form {
  position: sticky;
  top: 106px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(228, 231, 236, 0.9);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.course-details__iframe {
  display: block;
  width: 100%;
  height: min(760px, calc(100vh - 140px));
  border: 0;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .course-details__inner {
    grid-template-columns: 1fr;
  }

  .course-details__content {
    max-width: none;
  }

  .course-details__form {
    position: static;
  }

  .course-details__iframe {
    height: 720px;
  }
}

.section {
  padding: 72px 0;
}

#certificacoes {
  background: var(--brand-dark);
  color: #fff;
}

#certificacoes .section__header {
  align-items: center;
  text-align: center;
}

#certificacoes .section__header h2,
#certificacoes .section__header p {
  color: #fff;
}

#certificacoes .section__header p {
  margin-left: auto;
  margin-right: auto;
}

#ingresso {
  background: var(--brand-accent);
  color: #ffffff;
  text-align: center;
}

#ingresso .section__header {
  align-items: center;
}

#ingresso .section__header h2,
#ingresso .section__header p {
  color: #ffffff;
}

#ingresso.ingresso--semipresencial {
  background: var(--brand-dark);
  color: #ffffff;
}

#ingresso.ingresso--semipresencial .section__header h2,
#ingresso.ingresso--semipresencial .section__header p {
  color: #ffffff;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section__header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
}

.section__header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 640px;
}

#beneficios .section__header {
  align-items: center;
  text-align: center;
}

#beneficios .section__header p {
  margin-left: auto;
  margin-right: auto;
}

#grad .section__title--accent,
#pos .section__title--accent {
  color: var(--brand-accent);
}

.filter-bar {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: end;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(25, 50, 60, 0.08);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}

.filter-bar__group {
  display: grid;
  gap: 6px;
}

.filter-bar label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.filter-bar__group--wide {
  grid-column: span 2;
}

.filter-bar__control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  font: inherit;
  color: var(--text-strong);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select.filter-bar__control {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

select.filter-bar__control:focus {
  background-image: linear-gradient(45deg, transparent 50%, var(--brand-accent) 50%), linear-gradient(135deg, var(--brand-accent) 50%, transparent 50%);
}

.filter-bar__control:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(228, 52, 28, 0.15);
}

.filter-bar__control::placeholder {
  color: var(--text-muted);
}

input.filter-bar__control {
  cursor: text;
}

.filter-meta {
  grid-column: 1 / -1;
  justify-self: flex-end;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.course-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.course-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 12px;
}

.course-pagination__control,
.course-pagination__page,
.course-pagination__all {
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-strong);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.course-pagination__control {
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.course-pagination__icon {
  width: 18px;
  height: 18px;
  display: block;
}

.course-pagination__pages {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.course-pagination__page.is-active,
.course-pagination__all.is-active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

.course-pagination__control[disabled],
.course-pagination__page[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.course-pagination button:hover:not([disabled]),
.course-pagination button:focus-visible:not([disabled]) {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}

.enroll-modal[hidden] {
  display: none;
}

.enroll-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enroll-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 50, 60, 0.5);
}

.enroll-modal__dialog {
  position: relative;
  width: var(--enroll-modal-width);
  height: var(--enroll-modal-height);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 80px rgba(16, 24, 40, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.enroll-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(16, 24, 40, 0.08);
  color: #19323c;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.enroll-modal__close:hover,
.enroll-modal__close:focus-visible {
  background: #19323c;
  color: #ffffff;
}

.enroll-modal__dialog iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #ffffff;
  overflow: hidden;
}

.curriculum-modal .enroll-modal__dialog {
  height: auto;
  max-height: min(720px, 90vh);
}

.curriculum-modal__body {
  padding: 46px 32px 32px;
  overflow: auto;
}

.curriculum-modal__title {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.6rem;
  line-height: 1.25;
}

.curriculum-modal__lead {
  margin: 0 0 22px;
  color: var(--text-muted);
}

.curriculum-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.curriculum-modal__block {
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 16px;
}

.curriculum-modal__block h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.curriculum-modal__block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-strong);
}

@media (max-width: 680px) {
  .curriculum-modal__body {
    padding: 46px 20px 20px;
  }

  .curriculum-modal__grid {
    grid-template-columns: 1fr;
  }
}

fluent-card.course-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

fluent-card.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(16, 24, 40, 0.12);
}

.course-card__flag {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #1fd4a1;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(31, 212, 161, 0.35);
  z-index: 2;
}

.course-card__flag svg {
  width: 14px;
  height: 14px;
  display: block;
}

.course-card__flag path {
  fill: currentColor;
}

.course-card__flag span {
  line-height: 1;
}

.course-card__media {
  width: 100%;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(25, 50, 60, 0.12);
}

.course-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.course-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.course-card__badge-wrapper {
  display: inline-flex;
  padding: 4px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: #ffffff;
  margin-bottom: 8px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.course-card__badge::part(control) {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.course-card__title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-strong);
  text-align: center;
}

.course-card__meta {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.course-card__meta-separator {
  color: rgba(16, 24, 40, 0.32);
}

.course-card__model-chip {
  margin: 12px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: #fff;
  width: fit-content;
}

.course-card__summary {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.course-card__info {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: none;
}

.course-card__info p {
  margin: 0;
}

.course-card__info strong {
  font-weight: 600;
  color: var(--text-strong);
  margin-right: 4px;
}

.course-card__pricing {
  display: grid;
  gap: 6px;
  background: #ffe8e2;
  border: 1px solid #8b1c0d;
  padding: 12px 16px;
  border-radius: 12px;
}

.course-card__pricing-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-accent);
}

.course-card__pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.course-card--pos .course-card__pricing {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

.course-card--pos .course-card__pricing-lead {
  color: #ffffff;
}

.course-card--pos .course-card__pricing-note {
  color: rgba(255, 255, 255, 0.78);
}

.course-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.course-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  border: 2px solid transparent;
  cursor: pointer;
}

.course-card__cta:focus-visible {
  outline: 3px solid rgba(228, 52, 28, 0.35);
  outline-offset: 2px;
}

.course-card__cta--dark {
  background: #ffffff;
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
}

.course-card__cta--dark:hover,
.course-card__cta--dark:focus-visible {
  background: var(--brand-dark);
  color: #ffffff;
}

.course-card__cta--accent {
  background: var(--brand-accent);
  color: #ffffff;
}

.course-card__cta--accent:hover,
.course-card__cta--accent:focus-visible {
  background: #c32a17;
}

.course-card--pos .course-card__cta--accent {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #ffffff;
}

.course-card--pos .course-card__cta--accent:hover,
.course-card--pos .course-card__cta--accent:focus-visible {
  background: #ffffff;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.course-card__cta:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .course-card__actions {
    flex-direction: column;
  }

  .course-card__cta {
    width: 100%;
  }
}

fluent-button::part(control),
fluent-anchor::part(control) {
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  min-height: 44px;
  padding: 0 18px;
}

.cta-banner {
  margin-top: 42px;
}

fluent-card.cta-banner {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(228, 52, 28, 0.92), rgba(25, 50, 60, 0.95));
  color: #fff;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-banner__title {
  margin: 0;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.3rem);
  font-weight: 700;
  text-align: center;
}

.cta-banner__suffix {
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cta-banner__suffix.is-changing {
  transform: translateY(8px) scale(0.98);
  opacity: 0;
}

.cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-banner__price {
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
  font-weight: 700;
}

.cta-banner__note {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
}

.cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  border: 2px solid var(--brand-dark);
  background: var(--brand-dark);
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.cta-banner__button:hover,
.cta-banner__button:focus-visible {
  background: #ffffff;
  color: var(--brand-dark);
  border-color: #ffffff;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.cert-card {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card img {
  width: 92px;
  height: auto;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.ingresso-grid,
.benefits-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ingresso-grid {
  margin-top: 32px;
}

.ingresso-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--brand-dark);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 14px;
  color: #ffffff;
  text-align: center;
}

.ingresso-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.ingresso-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #ffffff;
}

.ingresso-card__cta {
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  background: #ffffff;
  color: var(--brand-accent);
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ingresso-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  background: transparent;
  color: #ffffff;
}

#ingresso.ingresso--semipresencial .ingresso-card {
  background: #ffffff;
  color: var(--brand-dark);
}

#ingresso.ingresso--semipresencial .ingresso-card h3,
#ingresso.ingresso--semipresencial .ingresso-card p {
  color: var(--brand-dark);
}

#ingresso.ingresso--semipresencial .ingresso-card__cta {
  background: var(--brand-accent);
  color: #ffffff;
  border-color: var(--brand-accent);
}

#ingresso.ingresso--semipresencial .ingresso-card__cta:hover {
  background: transparent;
  color: var(--brand-accent);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benefit-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--brand-accent);
  color: #ffffff;
  display: grid;
  gap: 14px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(228, 52, 28, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(228, 52, 28, 0.35);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.contact-section {
  padding: 0;
  margin-top: 0;
  background: transparent;
  min-height: 40px;
}

.contact-bar {
  background: var(--brand-dark);
  color: #ffffff;
  width: 100%;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.contact-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px clamp(8px, 4vw, 16px);
  min-height: 40px;
}

.contact-bar__text h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.contact-bar__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.contact-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 4px 12px;
  font-weight: 600;
  font-size: 0.78rem;
  min-height: 28px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-bar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.contact-bar__btn--whatsapp {
  background: #25d366;
  color: #0b3b24;
}

.contact-bar__btn--outline {
  background: #ffffff;
  color: var(--brand-accent);
  border: 1px solid var(--brand-accent);
}

.contact-bar__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.contact-bar__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-bar--floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

@media (max-width: 768px) {
  .contact-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-bar__actions {
    justify-content: center;
    width: 100%;
  }

  .contact-bar__btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
}

.contact-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.contact-section fluent-anchor::part(control) {
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
}

.site-footer {
  margin-top: 0;
  padding: 64px 0 32px;
  background: #0f1f2a;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__info {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-card {
  background: var(--brand-dark);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 14px;
}

.footer-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #f8f8f8;
}

.footer-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__polos {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-polo-card {
  background: rgba(12, 23, 33, 0.85);
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 8px;
}

.footer-polo-card h4 {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.footer-polo-card__phone {
  margin: 0;
  font-weight: 600;
  color: #ffb347;
}

.footer-polo-card address {
  margin: 0;
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .app-nav__mobile-button {
    display: inline-flex;
    color: var(--text-strong);
  }

  .app-nav__mobile-button:hover,
  .app-nav__mobile-button:focus-visible {
    background: rgba(25, 50, 60, 0.12);
  }

  body.nav-open .app-nav__mobile-button {
    color: #ffffff;
  }

  .app-header__inner {
    gap: 12px;
    padding: 14px 0;
  }

  .app-header__brand {
    flex: 1;
    margin-left: 6%;
  }

  .app-nav {
    display: none !important;
    visibility: hidden !important;
  }

  .hero__picture img {
    border-radius: 0;
    box-shadow: none;
  }

  .hero__content {
    margin-top: clamp(20px, 5vw, 32px);
  }
}

@media (max-width: 768px) {
  .contact-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-bar__actions {
    justify-content: center;
    width: 100%;
  }

  .contact-bar__btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
}

.contact-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.contact-section fluent-anchor::part(control) {
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
}

.site-footer {
  margin-top: 0;
  padding: 64px 0 32px;
  background: #0f1f2a;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__info {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-card {
  background: var(--brand-dark);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 14px;
}

.footer-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #f8f8f8;
}

.footer-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__polos {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-polo-card {
  background: rgba(12, 23, 33, 0.85);
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 8px;
}

.footer-polo-card h4 {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.footer-polo-card__phone {
  margin: 0;
  font-weight: 600;
  color: #ffb347;
}

.footer-polo-card address {
  margin: 0;
  font-style: normal;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .site-footer__polos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-footer__polos {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.site-footer__inner {
  display: grid;
  gap: 32px;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.site-footer__bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer__logo {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.site-footer__social-link svg {
  width: 18px;
  height: 18px;
}

.site-footer__social-link svg path {
  fill: currentColor;
}

.site-footer__social-link svg rect,
.site-footer__social-link svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.site-footer__brand p {
  margin: 0;
}

.site-footer__disclaimer {
  margin: 0;
  max-width: 420px;
  text-align: right;
}

@media (max-width: 768px) {
  .site-footer__social {
    margin: 8px 0 0;
  }

  .site-footer__disclaimer {
    text-align: left;
  }
}

@media (min-width: 1025px) {
  .app-mobile-menu,
  .app-mobile-menu.is-open {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 640px) {
  .app-mobile-menu {
    padding: 24px 16px 20px;
  }

  .app-mobile-menu__body {
    gap: 12px;
  }

  .app-mobile-menu__section {
    padding: 2px 12px;
  }
}

@media (max-width: 768px) {
  .top-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .top-banner__col {
    justify-content: center;
  }

  .top-banner__col--actions {
    justify-content: center;
  }
  .top-banner__col--flags {
    display: none;
  }

  .hero {
    padding: 0 0 28px;
  }

  .hero__content {
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  }

  .hero__note {
    background: rgba(25, 50, 60, 0.12);
  }

  .section {
    padding: 56px 0;
  }

  .filter-bar {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .filter-bar__group--wide {
    grid-column: 1;
  }

  .filter-meta {
    justify-self: flex-start;
  }

  .cta-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
.hero-subtitle--brand-dark {
  color: var(--brand-dark);
  font-weight: 700;
}


