@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, html, h1, h2, h3, h4, h5, h6, ul, figure, p {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  background: none;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

select, input[type=text], input[type=submit], input[type=number], input[type=phone], input[type=email], input[type=password],
input[type=mail], input[type=tel], textarea {
  outline: none;
  margin: 0;
  border-radius: 0;
  font-family: inherit;
}

input::placeholder, textarea::placeholder {
  font-family: inherit;
}

input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
}

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

table {
  border-collapse: collapse;
}

iframe {
  border: none;
}

.u-displaynone {
  display: none !important;
}

.u-displayflex {
  display: flex !important;
}

.u-displayblock {
  display: block !important;
}

.u-displayinline {
  display: inline !important;
}

.u-displayinlineblock {
  display: inline-block !important;
}

.u-hidden {
  visibility: hidden !important;
}

.u-visible {
  visibility: visible !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-uppercase {
  text-transform: uppercase !important;
}

.u-text-lowercase {
  text-transform: lowercase !important;
}

.u-text-capitalize {
  text-transform: capitalize !important;
}

.u-text-bold {
  font-weight: 700 !important;
}

.u-text-normal {
  font-weight: 400 !important;
}

.u-overflow-hidden {
  overflow: hidden !important;
}

.u-overflow-auto {
  overflow: auto !important;
}

.u-w-full {
  width: 100% !important;
}

.u-h-full {
  height: 100% !important;
}

.u-c-main {
  color: var(--color-main) !important;
}

.u-bg-main {
  background: var(--color-main) !important;
}

.u-c-second {
  color: var(--color-second) !important;
}

.u-bg-second {
  background: var(--color-second) !important;
}

.u-c-third {
  color: var(--color-third) !important;
}

.u-bg-third {
  background: var(--color-third) !important;
}

.u-hide-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .u-hide-mobile {
    display: initial !important;
  }
}

.u-hide-desktop {
  display: initial !important;
}
@media (min-width: 768px) {
  .u-hide-desktop {
    display: none !important;
  }
}

:root {
  --color-success: #3b82f6;
  --color-success-bg: #eff6ff;
  --color-success-text: #1e40af;
  --color-success-border: #bfdbfe;
  --color-error: #ef4444;
  --color-error-bg: #fef2f2;
  --color-error-text: #991b1b;
  --color-error-border: #fecaca;
  --color-warning: #f59e0b;
  --color-warning-bg: #fffbeb;
  --color-warning-text: #92400e;
  --color-warning-border: #fde68a;
  --color-info: #6366f1;
  --color-info-bg: #eef2ff;
  --color-info-text: #3730a3;
  --color-info-border: #c7d2fe;
  --color-main: #222d55;
  --color-second: #2c808c;
  --color-third: #4cbab2;
  --color-four: #bd4e1d;
  --color-five: #feead8;
  --color-card-info-bg: #f0f7ff;
  --color-card-info-bg-light: #e3f2fd;
  --color-card-info-text: #1565c0;
  --color-card-warning-bg-light: #fff9e6;
  --color-card-warning-text-dark: #c77700;
  --color-online-bg: #88bff9;
  --color-online-text: #164990;
  --color-offline-text: #991b1b;
  --color-incident-bg: #fef3c7;
  --color-incident-border: #fde68a;
  --color-incident-text: #92400e;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text: #333333;
  --color-text-secondary: #666666;
  --color-text-tertiary: #999999;
  --color-bg: #FFFFFF;
  --color-bg-light: #F5F5F5;
  --color-bg-hover: #F0F0F0;
  --color-border: #DDDDDD;
  --color-border-light: #EEEEEE;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  --transition-fast: all 0.15s ease;
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --font-size-xs: 12px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 20px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
}

:root {
  --color-main: #222d55;
  --color-second: #2c808c;
  --color-third: #4cbab2;
  --color-four: #bd4e1d;
  --color-five: #feead8;
}

body, p, a, ul, li, button, label, table {
  font-family: Roboto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Outfit;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  max-width: 100%;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--color-second);
  outline-offset: 2px;
}

.s-topbar {
  display: none;
  background: #2c808c;
  height: 44px;
  z-index: 200;
  position: relative;
  transition: transform 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .s-topbar {
    display: flex;
    align-items: center;
  }
}
.s-topbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-topbar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.s-topbar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
}
.s-topbar__link:hover {
  color: #fff;
}
.s-topbar__link:hover .s-topbar__icon {
  color: #fff;
  transform: scale(1.15);
}
.s-topbar__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #4cbab2;
  transition: transform 0.3s ease;
}
.s-topbar__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.s-topbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4cbab2;
  transition: all 0.3s ease;
}
.s-topbar__social-link:hover {
  color: #fff;
  transform: scale(1.2);
}
.s-topbar__social-link svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .s-topbar--hidden {
    display: flex;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
}

.s-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  height: 90px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 1024px) {
  .s-header {
    height: 110px;
  }
}
.s-header--scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.s-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.s-header__logo-img {
  height: 70px;
  width: auto;
}
@media (min-width: 1024px) {
  .s-header__logo-img {
    height: 90px;
  }
}
.s-header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: -0.5px;
}
@media (min-width: 1024px) {
  .s-header__logo-text {
    font-size: 24px;
  }
}
.s-header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .s-header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}
.s-header__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-main);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.s-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-second);
  transition: width 0.3s ease;
}
.s-header__nav-link:hover:not(.s-header__nav-link--active) {
  color: var(--color-second);
}
.s-header__nav-link:hover:not(.s-header__nav-link--active)::after {
  width: 100%;
}
.s-header__nav-link--active {
  color: var(--color-second);
  pointer-events: none;
}
.s-header__nav-link--active::after {
  width: 100%;
}
.s-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.s-header__cta {
  display: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--color-main);
  background: transparent;
  padding: 10px 32px;
  border: 1.5px solid var(--color-main);
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .s-header__cta {
    display: inline-flex;
    align-items: center;
  }
}
.s-header__cta:hover {
  color: #fff;
  background: var(--color-second);
  border-color: var(--color-second);
}
.s-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 1024px) {
  .s-header__hamburger {
    display: none;
  }
}
.s-header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.s-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .s-mobile-menu {
    display: none;
  }
}
.s-mobile-menu--open {
  visibility: visible;
  pointer-events: auto;
}
.s-mobile-menu--open .s-mobile-menu__overlay {
  opacity: 1;
}
.s-mobile-menu--open .s-mobile-menu__panel {
  transform: translateX(0);
}
.s-mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.s-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100%;
  background: var(--color-main);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.s-mobile-menu__panel-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px;
  min-height: 64px;
}
.s-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
}
.s-mobile-menu__close svg {
  width: 24px;
  height: 24px;
}
.s-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}
.s-mobile-menu__nav-link {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  padding: 14px 20px;
  transition: background 0.3s ease;
}
.s-mobile-menu__nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.s-mobile-menu__nav-link--active {
  color: var(--color-second);
}
.s-mobile-menu__cta {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--color-second);
  text-align: center;
  padding: 14px 20px;
  margin: 24px 20px 0;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.s-mobile-menu__cta:hover {
  opacity: 0.85;
}

.s-newsletter {
  position: relative;
  width: 100%;
  padding: 72px 24px;
  overflow: hidden;
  background-color: #222d55;
  background-image: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(76, 186, 178, 0.12) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .s-newsletter {
    padding: 80px 24px;
  }
}
.s-newsletter__lines {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255, 255, 255, 0.05) 100px, rgba(255, 255, 255, 0.05) 101px), repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(255, 255, 255, 0.05) 100px, rgba(255, 255, 255, 0.05) 101px);
}
.s-newsletter__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(76, 186, 178, 0.15);
  border-radius: 50%;
  animation: nl-ring-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
.s-newsletter__ring--outer {
  width: 500px;
  height: 500px;
}
.s-newsletter__ring--inner {
  width: 340px;
  height: 340px;
  animation-delay: -3s;
  border-color: rgba(76, 186, 178, 0.08);
}
.s-newsletter__content {
  position: relative;
  z-index: 2;
}
.s-newsletter__heading {
  font-family: "Raela", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .s-newsletter__heading {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .s-newsletter__heading {
    font-size: 42px;
  }
}
.s-newsletter__sub {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}
.s-newsletter__form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: calc(480px - 1px)) {
  .s-newsletter__form {
    flex-direction: column;
    gap: 12px;
  }
}
.s-newsletter__input {
  flex: 1;
  padding: 15px 20px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  outline: none;
  border-radius: 12px 0 0 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transition: border-color 0.3s ease;
}
.s-newsletter__input[type=email] {
  border-radius: 12px 0 0 12px;
}
@media (max-width: calc(480px - 1px)) {
  .s-newsletter__input {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }
  .s-newsletter__input[type=email] {
    border-radius: 6px;
  }
}
.s-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.s-newsletter__input:focus {
  border-color: rgba(76, 186, 178, 0.5);
}
.s-newsletter__btn {
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  border: none;
  cursor: pointer;
  border-radius: 0 12px 12px 0;
  background: #fff;
  color: var(--color-main);
  box-shadow: none;
  transition: all 0.3s ease;
}
@media (max-width: calc(480px - 1px)) {
  .s-newsletter__btn {
    border-radius: 6px;
  }
}
.s-newsletter__btn:hover {
  background: #247078;
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  .s-newsletter .s-newsletter__ring {
    animation: none;
  }
}

@keyframes nl-ring-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }
}
.s-footer {
  margin-top: 0;
}
.s-footer__accent {
  height: 4px;
  background: #2c808c;
}
.s-footer__newsletter {
  background: #1a2344;
  padding: 40px 24px;
  text-align: center;
}
.s-footer__newsletter-container {
  max-width: 700px;
  margin: 0 auto;
}
.s-footer__newsletter-title {
  font-family: "Raela", sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .s-footer__newsletter-title {
    font-size: 26px;
  }
}
.s-footer__newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.s-footer input.s-footer__newsletter-input {
  flex: 1 1 260px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
.s-footer input.s-footer__newsletter-input::placeholder {
  color: #94a3b8;
}
.s-footer input.s-footer__newsletter-input:focus {
  outline: none;
  border-color: #4cbab2;
}
.s-footer__newsletter-btn {
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  background: #fff;
  color: #222d55;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.s-footer__newsletter-btn:hover {
  background: #e2e8f0;
}
.s-footer__newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.s-footer__newsletter-feedback {
  margin-top: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
}
.s-footer__newsletter-feedback--success {
  color: #4cbab2;
}
.s-footer__newsletter-feedback--error {
  color: #f87171;
}
.s-footer__main {
  background-color: #222d55;
  background-image: radial-gradient(circle at 12% 40%, rgba(76, 186, 178, 0.08) 0%, transparent 50%), radial-gradient(circle at 88% 30%, rgba(76, 186, 178, 0.06) 0%, transparent 45%);
  position: relative;
  overflow: hidden;
}
.s-footer__main::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 10%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.2) 0%, rgba(44, 128, 140, 0.08) 40%, transparent 70%);
  animation: footer-drift-1 25s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
}
.s-footer__main::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.24) 0%, rgba(44, 128, 140, 0.08) 35%, transparent 65%);
  animation: footer-drift-2 20s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .s-footer__main::before, .s-footer__main::after {
    animation: none;
  }
}
.s-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .s-footer__container {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr 1fr;
    grid-template-areas: "brand programas cursos" "brand institucional contato";
    column-gap: 48px;
    row-gap: 40px;
    padding: 64px 24px;
  }
}
@media (min-width: 1024px) {
  .s-footer__container {
    column-gap: 72px;
    padding: 72px 24px;
  }
}
.s-footer__brand {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s-footer__logo {
  display: inline-block;
}
.s-footer__logo-img {
  height: 60px;
  width: auto;
}
@media (min-width: 1024px) {
  .s-footer__logo-img {
    height: 68px;
  }
}
.s-footer__desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 260px;
}
.s-footer__social {
  display: flex;
  gap: 10px;
}
.s-footer__social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #94a3b8;
  transition: all 0.3s ease;
}
.s-footer__social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
.s-footer__social-link svg {
  width: 18px;
  height: 18px;
}
.s-footer__social-link:hover {
  border-color: #2c808c;
  color: #ffffff;
  background: #2c808c;
  transform: translateY(-2px);
}
.s-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.s-footer__col--cursos {
  grid-area: cursos;
}
.s-footer__col--programas {
  grid-area: programas;
}
.s-footer__col--institucional {
  grid-area: institucional;
}
.s-footer__col--contato {
  grid-area: contato;
}
.s-footer__heading {
  font-family: "Raela", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  padding-bottom: 14px;
  position: relative;
}
.s-footer__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #2c808c;
}
.s-footer__link {
  position: relative;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #e2e8f0;
  transition: all 0.25s ease;
  padding-left: 0;
}
.s-footer__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 44px;
  transform: translateY(-50%);
}
.s-footer__link:hover {
  color: #2c808c;
  padding-left: 6px;
}
.s-footer__contact-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #e2e8f0;
  transition: color 0.2s ease;
}
.s-footer__contact-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 44px;
  transform: translateY(-50%);
}
.s-footer__contact-item:hover {
  color: #2c808c;
}
.s-footer__contact-icon {
  width: 16px;
  height: 16px;
  color: #2c808c;
  flex-shrink: 0;
}
.s-footer__bottom {
  background: #1a2344;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.s-footer__bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media (min-width: 768px) {
  .s-footer__bottom-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.s-footer__copyright {
  font-size: 14px;
  color: #94a3b8;
}
.s-footer__legal {
  display: flex;
  gap: 24px;
}
.s-footer__legal-link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.2s ease;
}
.s-footer__legal-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 44px;
  transform: translateY(-50%);
}
.s-footer__legal-link:hover {
  color: #2c808c;
}

@keyframes footer-drift-1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-30px, 20px);
  }
}
@keyframes footer-drift-2 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(25px, -15px);
  }
}
@keyframes s-whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.s-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: s-whatsapp-pulse 2.5s infinite;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.s-whatsapp:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.s-whatsapp--scrolling {
  opacity: 0;
  pointer-events: none;
}
.s-whatsapp svg {
  width: 28px;
  height: 28px;
}

@keyframes s-cookie-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes s-cookie-slide-down {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.s-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  padding: 16px;
  animation: s-cookie-slide-up 0.4s ease forwards;
}
@media (min-width: 768px) {
  .s-cookie-consent {
    padding: 20px;
  }
}
.s-cookie-consent--hiding {
  animation: s-cookie-slide-down 0.35s ease forwards;
}
.s-cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.s-cookie-consent__main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .s-cookie-consent__main {
    gap: 24px;
  }
}
.s-cookie-consent__text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.s-cookie-consent__text a {
  color: var(--color-second);
  font-weight: 600;
  text-decoration: underline;
}
.s-cookie-consent__text a:hover {
  color: var(--color-main);
}
.s-cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
@media (max-width: calc(768px - 1px)) {
  .s-cookie-consent__main {
    flex-direction: column;
    align-items: stretch;
  }
  .s-cookie-consent__actions {
    flex-direction: column;
  }
  .s-cookie-consent__btn {
    width: 100%;
    justify-content: center;
  }
}
.s-cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.s-cookie-consent__btn--accept {
  background: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
}
.s-cookie-consent__btn--accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.s-cookie-consent__btn--configure {
  background: transparent;
  color: var(--color-main);
  border-color: var(--color-main);
}
.s-cookie-consent__btn--configure:hover {
  background: var(--color-main);
  color: #fff;
  transform: translateY(-1px);
}
.s-cookie-consent__btn--save {
  background: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
  width: 100%;
  margin-top: 8px;
}
.s-cookie-consent__btn--save:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.s-cookie-consent__panel {
  display: none;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #e9ecef;
}
.s-cookie-consent__panel--open {
  display: block;
}
.s-cookie-consent__panel-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.s-cookie-consent__toggles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.s-cookie-consent__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.s-cookie-consent__toggle-info {
  flex: 1;
  min-width: 0;
}
.s-cookie-consent__toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-main);
  display: block;
  margin-bottom: 2px;
}
.s-cookie-consent__toggle-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
.s-cookie-consent__switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.s-cookie-consent__switch input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.s-cookie-consent__switch input[type=checkbox]:checked + .s-cookie-consent__track {
  background: var(--color-main);
}
.s-cookie-consent__switch input[type=checkbox]:checked + .s-cookie-consent__track .s-cookie-consent__thumb {
  transform: translateX(22px);
}
.s-cookie-consent__switch input[type=checkbox]:focus-visible + .s-cookie-consent__track {
  outline: 3px solid var(--color-second);
  outline-offset: 2px;
}
.s-cookie-consent__switch input[type=checkbox]:disabled + .s-cookie-consent__track {
  background: #c8d0d8;
  cursor: not-allowed;
  opacity: 0.7;
}
.s-cookie-consent__track {
  display: block;
  width: 46px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  border-radius: 12px;
}
.s-cookie-consent__thumb {
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.c-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}
@media (min-width: 768px) {
  .c-carousel {
    padding: 0 70px;
  }
}
.c-carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .c-carousel__track {
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .c-carousel__track {
    gap: 30px;
  }
}
.c-carousel__card {
  display: block;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}
@media (min-width: 768px) {
  .c-carousel__card {
    width: calc(50% - 12px);
    border-radius: 18px;
  }
}
@media (min-width: 1024px) {
  .c-carousel__card {
    width: calc(33.333% - 20px);
    border-radius: 20px;
  }
}
@media (min-width: 1440px) {
  .c-carousel__card {
    width: calc(25% - 22.5px);
  }
}
.c-carousel__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
}
.c-carousel__card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  border-radius: inherit;
}
.c-carousel__card:hover {
  transform: translateY(-8px) scale(1.02);
}
.c-carousel__card:hover img {
  transform: scale(1.08);
}
.c-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0.9;
}
.c-carousel__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .c-carousel__btn {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1024px) {
  .c-carousel__btn {
    width: 60px;
    height: 60px;
  }
}
.c-carousel__btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .c-carousel__btn svg {
    width: 26px;
    height: 26px;
  }
}
@media (min-width: 1024px) {
  .c-carousel__btn svg {
    width: 32px;
    height: 32px;
  }
}
.c-carousel__btn--prev {
  left: 0;
}
.c-carousel__btn--next {
  right: 0;
}
.c-carousel__btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}
.c-carousel__btn:hover svg {
  transform: scale(1.15);
}
.c-carousel__btn:active {
  transform: translateY(-50%) scale(0.95);
  background: rgba(0, 0, 0, 0.9);
}
.c-carousel__card--video {
  cursor: pointer;
}
.c-carousel__card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
}
.c-carousel__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-carousel__card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.c-carousel__card-play:hover {
  background: rgba(220, 38, 38, 0.9);
}
.c-carousel__card-play svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.c-carousel__card-title {
  font-size: 14px;
  margin: 8px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s-section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
@media (min-width: 1024px) {
  .s-section-header {
    margin-bottom: 80px;
  }
}

.s-section-title {
  font-family: "Raela", sans-serif;
  font-size: 35px;
  font-weight: 500;
  color: #2c808c;
  line-height: 1.1;
  margin-bottom: 15px;
  opacity: 0;
}
@media (min-width: 768px) {
  .s-section-title {
    font-size: 35px;
  }
}
@media (min-width: 1024px) {
  .s-section-title {
    font-size: 35px;
  }
}

.s-section-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #3F3F41;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
}
@media (min-width: 1024px) {
  .s-section-subtitle {
    font-size: 23px;
  }
}

@keyframes horizon-expand {
  0% {
    width: 0;
  }
  100% {
    width: 56px;
  }
}
@keyframes horizon-expand-lg {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}
@keyframes horizon-diamond {
  0% {
    opacity: 0;
    transform: rotate(45deg) scale(0);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes title-reveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.s-section-header::before {
  display: none;
}
.s-section-header .s-section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .s-section-header .s-section-ornament {
    gap: 20px;
    margin-bottom: 36px;
  }
}
.s-section-header .s-section-ornament::before {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-third);
  border-radius: 2px;
}
.s-section-header .s-section-ornament::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-third);
  border-radius: 2px;
}
.s-section-header .s-section-diamond {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: #2c808c;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  border-radius: 2px;
  box-shadow: none;
}
.s-section-header .s-section-subtitle {
  position: relative;
  z-index: 1;
}
.s-section-header.is-visible .s-section-title {
  animation: title-reveal 0.7s ease forwards;
}
.s-section-header.is-visible .s-section-ornament::before,
.s-section-header.is-visible .s-section-ornament::after {
  animation: horizon-expand 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}
@media (min-width: 1024px) {
  .s-section-header.is-visible .s-section-ornament::before,
  .s-section-header.is-visible .s-section-ornament::after {
    animation-name: horizon-expand-lg;
  }
}
.s-section-header.is-visible .s-section-diamond {
  animation: horizon-diamond 0.6s ease 0.7s forwards;
}
.s-section-header.is-visible .s-section-subtitle {
  animation: fade-up 0.6s ease 0.9s forwards;
}

.s-section-header--inverted .s-section-title {
  color: #fff;
}
.s-section-header--inverted .s-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.s-section-header--inverted::before {
  display: none;
}
.s-section-header--inverted .s-section-ornament::before {
  background: linear-gradient(90deg, transparent, #4cbab2, #4cbab2);
}
.s-section-header--inverted .s-section-ornament::after {
  background: linear-gradient(90deg, #4cbab2, #4cbab2, transparent);
}
.s-section-header--inverted .s-section-diamond {
  background: #4cbab2;
  box-shadow: 0 0 16px rgba(76, 186, 178, 0.4);
}

.s-section-header--compact {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .s-section-header--compact {
    margin-bottom: 32px;
  }
}
.s-section-header--compact .s-section-title {
  font-size: 26px;
  margin-bottom: 8px;
}

.s-page-intro {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px 0;
  text-align: center;
}
.s-page-intro__accent {
  color: var(--color-second);
}

@media (prefers-reduced-motion: reduce) {
  .s-section-header.is-visible .s-section-title,
  .s-section-header.is-visible .s-section-subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .s-section-header.is-visible .s-section-ornament::before,
  .s-section-header.is-visible .s-section-ornament::after {
    animation: none;
    width: 56px;
  }
}
@media (prefers-reduced-motion: reduce) and (min-width: 1024px) {
  .s-section-header.is-visible .s-section-ornament::before,
  .s-section-header.is-visible .s-section-ornament::after {
    width: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .s-section-header.is-visible .s-section-diamond {
    animation: none;
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}
@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroShimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
@keyframes overlayDrift {
  0% {
    background-position: 0% 0%, 0% 0%;
  }
  50% {
    background-position: 5% 8%, -5% -6%;
  }
  100% {
    background-position: 0% 0%, 0% 0%;
  }
}
.s-hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .s-hero {
    height: 560px;
  }
}
@media (min-width: 1024px) {
  .s-hero {
    height: 680px;
  }
}
.s-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.s-hero__slide--active {
  opacity: 1;
  z-index: 2;
}
.s-hero__slide--active .s-hero__image,
.s-hero__slide--active .s-hero__bg-fallback {
  animation: heroKenBurns 12s ease forwards;
}
.s-hero__slide--active .s-hero__title {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.s-hero__slide--active .s-hero__accent {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.s-hero__slide--active .s-hero__subtitle {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.s-hero__slide--active .s-hero__text {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}
.s-hero__slide--active .s-hero__date {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.s-hero__slide--active .s-hero__cta {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}
.s-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 15, 31, 0.92) 0%, rgba(21, 29, 56, 0.9) 15%, rgba(34, 45, 85, 0.88) 30%, rgba(34, 45, 85, 0.82) 40%, rgba(38, 75, 100, 0.72) 50%, rgba(40, 100, 120, 0.62) 58%, rgba(44, 128, 140, 0.55) 66%, rgba(44, 128, 140, 0.5) 74%, rgba(44, 128, 140, 0.5) 82%, rgba(44, 128, 140, 0.6) 88%, rgba(44, 128, 140, 0.78) 94%, rgba(44, 128, 140, 0.92) 100%);
}
.s-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0 24px;
  z-index: 3;
}
@media (min-width: 768px) {
  .s-hero__content {
    padding: 0 100px;
  }
}
@media (min-width: 1024px) {
  .s-hero__content {
    padding: 0 140px;
  }
}
.s-hero__title {
  font-family: "Raela", sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  max-width: 620px;
  line-height: 1.18;
  letter-spacing: -0.3px;
  opacity: 0;
}
@media (min-width: 768px) {
  .s-hero__title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .s-hero__title {
    font-size: 55px;
    letter-spacing: -0.8px;
  }
}
.s-hero__accent {
  width: 80px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(76, 186, 178, 0.8), transparent);
  background-size: 200px 100%;
  animation-iteration-count: 1;
  opacity: 0;
}
@media (min-width: 768px) {
  .s-hero__accent {
    width: 100px;
  }
}
.s-hero__accent--shimmer {
  animation: heroShimmer 2s ease-in-out 1.5s infinite;
}
.s-hero__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  max-width: 480px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  opacity: 0;
}
@media (min-width: 768px) {
  .s-hero__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .s-hero__subtitle {
    font-size: 35px;
  }
}
.s-hero__text {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
  max-width: 480px;
  line-height: 1.6;
  opacity: 0;
}
@media (min-width: 768px) {
  .s-hero__text {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .s-hero__text {
    font-size: 27px;
  }
}
.s-hero__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 32px;
  opacity: 0;
}
.s-hero__date svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .s-hero__date {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .s-hero__date {
    font-size: 27px;
  }
  .s-hero__date svg {
    width: 24px;
    height: 24px;
  }
}
.s-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.s-hero__cta {
  display: inline-flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-main);
  background: #FFFFFF;
  padding: 16px 40px;
  border: 1.5px solid #FFFFFF;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  opacity: 0;
}
@media (min-width: 768px) {
  .s-hero__cta {
    font-size: 13px;
    padding: 18px 48px;
  }
}
.s-hero__cta:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
}
.s-hero__cta--outline {
  color: #FFFFFF;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}
.s-hero__cta--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}
.s-hero__dots {
  position: absolute;
  bottom: 32px;
  left: 24px;
  display: flex;
  gap: 10px;
  z-index: 4;
}
@media (min-width: 768px) {
  .s-hero__dots {
    left: 60px;
  }
}
@media (min-width: 1024px) {
  .s-hero__dots {
    left: 100px;
  }
}
.s-hero__dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.s-hero__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
.s-hero__dot--active {
  background: #FFFFFF;
  border-color: #FFFFFF;
  transform: scale(1.2);
}
.s-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .s-hero__nav {
    display: flex;
  }
}
.s-hero__nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.s-hero__nav--prev {
  left: 24px;
}
.s-hero__nav--next {
  right: 24px;
}
.s-hero__bg-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-main) 0%, #1a2345 40%, var(--color-second) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .s-hero__slide--active .s-hero__image,
  .s-hero__slide--active .s-hero__bg-fallback {
    animation: none;
  }
  .s-hero__slide--active .s-hero__title,
  .s-hero__slide--active .s-hero__accent,
  .s-hero__slide--active .s-hero__subtitle,
  .s-hero__slide--active .s-hero__text,
  .s-hero__slide--active .s-hero__date,
  .s-hero__slide--active .s-hero__cta {
    animation: none;
    opacity: 1;
  }
  .s-hero__accent--shimmer {
    animation: none;
  }
}

@keyframes specialtyRipple {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}
.s-specialties {
  background: #FFFFFF;
  padding: 0;
  margin: 40px 0;
}
@media (min-width: 1024px) {
  .s-specialties {
    margin: 56px 0;
  }
}
.s-specialties__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .s-specialties__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.s-specialties__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 20px;
  text-decoration: none;
  position: relative;
}
@media (min-width: 768px) {
  .s-specialties__item {
    padding: 48px 24px;
  }
}
.s-specialties__item:not(:last-child) {
  border-right: 1px solid rgba(34, 45, 85, 0.08);
}
@media (max-width: calc(768px - 1px)) {
  .s-specialties__item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(34, 45, 85, 0.08);
  }
  .s-specialties__item:nth-child(odd) {
    border-right: 1px solid rgba(34, 45, 85, 0.08);
  }
  .s-specialties__item:nth-child(even) {
    border-right: none;
  }
}
.s-specialties__item:hover .s-specialties__icon-wrap::before {
  animation: specialtyRipple 0.8s ease-out;
}
.s-specialties__item:hover .s-specialties__icon {
  transform: scale(1.15);
}
.s-specialties__item:hover .s-specialties__name {
  color: var(--color-main);
}
.s-specialties__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 45, 85, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.s-specialties__icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-second);
  opacity: 0;
  transform: scale(1);
}
.s-specialties__icon {
  width: 36px;
  height: 36px;
  color: var(--color-second);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.s-specialties__name {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(34, 45, 85, 0.85);
  line-height: 1.45;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.s-video {
  padding: 50px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .s-video {
    padding: 80px 0;
  }
}
.s-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.025) 0px, rgba(0, 0, 0, 0.025) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
}
.s-video__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.s-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #101830;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.s-video__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.s-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(circle at 50% 45%, rgba(44, 128, 140, 0.35) 0%, transparent 60%), #101830;
}
.s-video__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}
.s-video__play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}
.s-video__placeholder:hover .s-video__play {
  transform: scale(1.06);
  background: rgba(44, 128, 140, 0.5);
}
.s-video__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
}
.s-video__footer {
  text-align: center;
  margin-top: 32px;
}
.s-video__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-second);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.s-video__cta svg {
  width: 18px;
  height: 18px;
}
.s-video__cta:hover {
  transform: scale(1.05);
}

.s-courses {
  padding: 50px 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.06) 39px, rgba(255, 255, 255, 0.06) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, 0.06) 39px, rgba(255, 255, 255, 0.06) 40px), linear-gradient(135deg, #1e5f5f 0%, #2c808c 40%, #237a7a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .s-courses {
    padding: 80px 0;
  }
}
.s-courses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-courses__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.s-courses__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 2px solid #e0e0e0;
  border-left: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}
@media (min-width: 768px) {
  .s-courses__card {
    width: calc(50% - 16px);
  }
}
@media (min-width: 1024px) {
  .s-courses__card {
    width: calc(33.333% - 22px);
  }
}
.s-courses__card:hover {
  transform: translateY(-8px);
  border-top-color: #c9c9c9;
  border-left-color: #c9c9c9;
  box-shadow: 0 8px 20px rgba(44, 128, 140, 0.08), 0 20px 50px rgba(34, 45, 85, 0.1);
}
.s-courses__card:hover .s-courses__image,
.s-courses__card:hover .s-courses__image-placeholder {
  transform: scale(1.05);
}
.s-courses__card:hover .s-courses__arrow {
  background: var(--color-second);
  transform: translateX(4px);
}
.s-courses__card:hover .s-courses__arrow svg {
  stroke: #fff;
}
.s-courses__image-wrap {
  margin: 18px 18px 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.s-courses__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(44, 128, 140, 0.2) 100%);
  pointer-events: none;
}
.s-courses__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.s-courses__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.s-courses__image-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-courses__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.s-courses__eyebrow {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.s-courses__modality {
  color: rgba(34, 45, 85, 0.7);
  font-size: 13px;
  line-height: 1.5;
  height: 19.5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.s-courses__category {
  color: var(--color-third);
  font-size: 13px;
  line-height: 1.5;
  height: 39px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-courses__title {
  font-family: "Raela", sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.3;
  margin-bottom: 12px;
  height: 49.4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.s-courses__status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-self: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.s-courses__enrollment {
  display: inline-block;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
}
.s-courses__enrollment--open {
  background: var(--color-second);
}
.s-courses__enrollment--waitlist {
  background: var(--color-four);
}
.s-courses__next-class {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: #757575;
}
.s-courses__next-class svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s-courses__desc {
  font-size: 15px;
  color: #757575;
  line-height: 1.65;
  margin-bottom: 20px;
  height: 49.5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.s-courses__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}
.s-courses__duration {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-second);
  display: flex;
  align-items: center;
  gap: 6px;
}
.s-courses__duration svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.s-courses__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-second);
  margin-bottom: 16px;
}
.s-courses__price--free {
  color: #6b7280;
  font-weight: 500;
}
.s-courses__actions {
  text-align: center;
  margin-top: 40px;
}
.s-courses__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-main);
  background: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-courses__view-all:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.s-courses__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-five);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.s-courses__arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-second);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.s-programs {
  padding: 50px 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.06) 39px, rgba(255, 255, 255, 0.06) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, 0.06) 39px, rgba(255, 255, 255, 0.06) 40px), linear-gradient(135deg, #1e5f5f 0%, #2c808c 40%, #237a7a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .s-programs {
    padding: 80px 0;
  }
}
.s-programs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-programs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.s-programs__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 2px solid #e0e0e0;
  border-left: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .s-programs__card {
    width: calc(50% - 16px);
  }
}
.s-programs__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(44, 128, 140, 0.08), 0 20px 50px rgba(34, 45, 85, 0.1);
}
.s-programs__name {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-main);
  margin-bottom: 6px;
}
.s-programs__tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-second);
  margin-bottom: 14px;
}
.s-programs__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
  flex: 1;
}
.s-programs__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-second);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-programs__cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.s-numbers {
  padding: 50px 0;
  background: radial-gradient(circle at center, rgba(76, 186, 178, 0.08) 1px, transparent 1px), #222d55;
  background-size: 22px 22px, 100% 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .s-numbers {
    padding: 80px 0;
  }
}
.s-numbers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.s-numbers__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
@media (min-width: 768px) {
  .s-numbers__list {
    gap: 0;
  }
}
.s-numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(50% - 20px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (min-width: 768px) {
  .s-numbers__item {
    width: 25%;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 24px;
  }
  .s-numbers__item:last-child {
    border-right: none;
  }
}
.s-numbers__item:nth-child(1) {
  transition-delay: 0s;
}
.s-numbers__item:nth-child(2) {
  transition-delay: 0.15s;
}
.s-numbers__item:nth-child(3) {
  transition-delay: 0.3s;
}
.s-numbers__item:nth-child(4) {
  transition-delay: 0.45s;
}
.s-numbers--visible .s-numbers__item {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .s-numbers .s-numbers__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.s-numbers__icon-wrap {
  display: none;
}
.s-numbers__icon {
  display: none;
}
.s-numbers__value {
  font-family: "Raela", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .s-numbers__value {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  .s-numbers__value {
    font-size: 48px;
  }
}
.s-numbers__label {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .s-numbers__label {
    font-size: 14px;
    letter-spacing: 2.5px;
  }
}

.s-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a2344 0%, #222d55 35%, #2c808c 100%);
  background-size: 100% 100%;
  text-align: center;
  position: relative;
}
.s-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .s-cta-section {
    padding: 80px 0;
  }
}
.s-cta-section__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-cta-section__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.s-cta-section__breadcrumb a {
  position: relative;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.s-cta-section__breadcrumb a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}
.s-cta-section__breadcrumb a:hover {
  color: #fff;
}
.s-cta-section__breadcrumb span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.s-cta-section__breadcrumb svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.s-cta-section__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.s-cta-section__title {
  font-family: "Raela", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .s-cta-section__title {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .s-cta-section__title {
    font-size: 32px;
  }
}
.s-cta-section__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .s-cta-section__text {
    font-size: 18px;
  }
}
.s-cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-main);
  background: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .s-cta-section__btn {
    font-size: 16px;
    padding: 16px 40px;
  }
}
.s-cta-section__btn:hover {
  transform: scale(1.05);
}

.s-instructors {
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .s-instructors {
    padding: 80px 0;
  }
}
.s-instructors__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-instructors__carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}
.s-instructors__carousel .c-carousel__viewport {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .s-instructors__carousel .c-carousel__track {
    gap: 60px;
  }
}
.s-instructors__carousel .c-carousel__btn {
  width: 28px;
  height: 28px;
  background: rgba(44, 128, 140, 0.35);
}
@media (min-width: 768px) {
  .s-instructors__carousel .c-carousel__btn {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1024px) {
  .s-instructors__carousel .c-carousel__btn {
    width: 36px;
    height: 36px;
  }
}
.s-instructors__carousel .c-carousel__btn:hover {
  transform: translateY(-50%);
  background: rgba(44, 128, 140, 0.6);
}
.s-instructors__carousel .c-carousel__btn svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .s-instructors__carousel .c-carousel__btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1024px) {
  .s-instructors__carousel .c-carousel__btn svg {
    width: 18px;
    height: 18px;
  }
}
.s-instructors__carousel .c-carousel__btn--prev {
  left: 60px;
}
@media (min-width: 768px) {
  .s-instructors__carousel .c-carousel__btn--prev {
    left: 70px;
  }
}
@media (min-width: 1440px) {
  .s-instructors__carousel .c-carousel__btn--prev {
    left: -40px;
  }
}
.s-instructors__carousel .c-carousel__btn--next {
  right: 60px;
}
@media (min-width: 768px) {
  .s-instructors__carousel .c-carousel__btn--next {
    right: 70px;
  }
}
@media (min-width: 1440px) {
  .s-instructors__carousel .c-carousel__btn--next {
    right: -40px;
  }
}
.s-instructors__carousel .c-carousel__card {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
}
.s-instructors__carousel .c-carousel__card img {
  height: auto;
}
@media (min-width: 1024px) {
  .s-instructors__carousel .c-carousel__card {
    width: calc(20% - 48px);
  }
}
.s-instructors__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.s-instructors__photo {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.s-instructors__overlay {
  padding: 16px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.s-instructors__name {
  font-family: "Raela", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-second);
  margin: 0 0 4px;
  line-height: 1.2;
  height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-instructors__role {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(34, 45, 85, 0.68);
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .s-instructors__role {
    font-size: 14px;
  }
}
.s-instructors .c-carousel__card:hover {
  transform: none;
}
.s-instructors .c-carousel__card:hover img {
  transform: none;
}
.s-instructors__footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding: 0 20px;
}
.s-instructors__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-second);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-instructors__view-all:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.s-testimonials {
  background: radial-gradient(circle at center, rgba(44, 128, 140, 0.08) 1px, transparent 1px), #FFFFFF;
  background-size: 22px 22px, 100% 100%;
  padding: 50px 0;
  position: relative;
}
@media (min-width: 1024px) {
  .s-testimonials {
    padding: 80px 0;
  }
}
.s-testimonials::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.09), transparent 70%);
  top: -120px;
  right: -80px;
  border-radius: 50%;
}
.s-testimonials::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.08), transparent 70%);
  bottom: -100px;
  left: -50px;
  border-radius: 50%;
}
.s-testimonials__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.s-testimonials__viewport {
  overflow: hidden;
}
.s-testimonials__carousel .c-carousel__btn {
  width: 28px;
  height: 28px;
  background: rgba(44, 128, 140, 0.35);
}
@media (min-width: 768px) {
  .s-testimonials__carousel .c-carousel__btn {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1024px) {
  .s-testimonials__carousel .c-carousel__btn {
    width: 36px;
    height: 36px;
  }
}
.s-testimonials__carousel .c-carousel__btn:hover {
  transform: translateY(-50%);
  background: rgba(44, 128, 140, 0.6);
}
.s-testimonials__carousel .c-carousel__btn svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .s-testimonials__carousel .c-carousel__btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1024px) {
  .s-testimonials__carousel .c-carousel__btn svg {
    width: 18px;
    height: 18px;
  }
}
.s-testimonials__card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 32px 28px 28px;
  border: 1px solid #E5E5E5;
  border-top: 3px solid var(--color-second);
  aspect-ratio: auto;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.s-testimonials__card:hover {
  transform: none;
}
.s-testimonials__mark {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-second);
  opacity: 0.35;
  margin-bottom: 8px;
}
.s-testimonials__quote {
  font-family: "Raela", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 24px;
  flex: 0 0 364px;
  height: 364px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 13;
  overflow: hidden;
}
.s-testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #E5E5E5;
}
.s-testimonials__info {
  display: flex;
  flex-direction: column;
}
.s-testimonials__name {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-main);
}
.s-testimonials__role {
  font-size: 13px;
  color: #666666;
  margin-top: 2px;
}

.s-partners {
  padding: 50px 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .s-partners {
    padding: 80px 0;
  }
}
.s-partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-partners__list {
  display: flex;
  flex-wrap: wrap;
}
.s-partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 32px 24px;
  background: #f8f9fa;
  border: 1px solid #f0f1f3;
  text-decoration: none;
  transition: background 0.3s ease;
}
@media (min-width: 768px) {
  .s-partners__item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .s-partners__item {
    width: 33.3333333333%;
  }
}
.s-partners__item:hover {
  background: #f0f1f3;
}
.s-partners__logo {
  max-height: 70px;
  max-width: 80%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
@media (min-width: 1024px) {
  .s-partners__logo {
    max-height: 90px;
  }
}
.s-partners__item:hover .s-partners__logo {
  filter: grayscale(0%);
}

.s-faq {
  padding: 50px 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .s-faq {
    padding: 80px 0;
  }
}
.s-faq__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 1024px) {
  .s-faq__container {
    flex-wrap: nowrap;
    gap: 80px;
  }
}
.s-faq__left {
  flex: 0 0 100%;
}
@media (min-width: 1024px) {
  .s-faq__left {
    flex: 0 0 320px;
    position: sticky;
    top: 40px;
    align-self: flex-start;
  }
}
.s-faq__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-third);
  margin-bottom: 16px;
}
.s-faq__title {
  font-family: "Raela", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.25;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .s-faq__title {
    font-size: 36px;
  }
}
.s-faq__subtitle {
  font-size: 16px;
  color: #757575;
  line-height: 1.6;
  margin-bottom: 32px;
}
.s-faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--color-second);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-faq__cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.s-faq__cta svg {
  width: 16px;
  height: 16px;
}
.s-faq__right {
  flex: 1;
  min-width: 0;
}
.s-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.s-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-main);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}
.s-faq__question:hover {
  color: var(--color-second);
}
.s-faq__question[aria-expanded=true] {
  color: var(--color-second);
}
.s-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #bbb;
  transition: transform 0.3s ease;
}
.s-faq__question[aria-expanded=true] + .s-faq__answer {
  padding-bottom: 24px;
}
.s-faq__question[aria-expanded=true] .s-faq__chevron {
  transform: rotate(180deg);
}
.s-faq__answer {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  padding: 0;
}

.s-faq-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.s-faq-page__category {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .s-faq-page__category {
    flex-direction: row;
    gap: 60px;
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}
.s-faq-page__category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.s-faq-page__category-left {
  flex: 0 0 100%;
}
@media (min-width: 1024px) {
  .s-faq-page__category-left {
    flex: 0 0 35%;
    position: sticky;
    top: 40px;
    align-self: flex-start;
  }
}
.s-faq-page__eyebrow {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-third);
  margin-bottom: 12px;
}
.s-faq-page__category-title {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--color-second);
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 1024px) {
  .s-faq-page__category-title {
    font-size: 22px;
  }
}
.s-faq-page__category-right {
  flex: 1;
  min-width: 0;
}
.s-faq-page__list {
  display: flex;
  flex-direction: column;
}
.s-faq-page__item {
  border-bottom: 1px solid #e5e7eb;
}
.s-faq-page__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.s-faq-page__question:hover {
  color: var(--color-main);
}
.s-faq-page__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}
.s-faq-page__item--open .s-faq-page__icon {
  transform: rotate(180deg);
  color: var(--color-main);
}
.s-faq-page__item--open .s-faq-page__question {
  color: var(--color-main);
}
.s-faq-page__answer {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  padding: 0 0 18px;
  display: none;
}
.s-faq-page__item--open .s-faq-page__answer {
  display: block;
}
.s-faq-page__empty {
  text-align: center;
  padding: 80px 20px;
  color: #9ca3af;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.s-articles {
  padding: 50px 0;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .s-articles {
    padding: 80px 0;
  }
}
.s-articles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-articles__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.s-articles__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid #DBDDDE;
  border-top: 3px solid var(--color-second);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .s-articles__card {
    width: calc(50% - 12px);
  }
}
.s-articles__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34, 45, 85, 0.12);
}
.s-articles__card:focus-visible {
  outline: 3px solid var(--color-second);
  outline-offset: 2px;
}
.s-articles__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 8px;
  line-height: 1.3;
}
.s-articles__excerpt {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 12px;
}
.s-articles__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #767676;
}
.s-articles__author, .s-articles__date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.s-articles__footer {
  text-align: center;
  margin-top: 40px;
}
.s-articles__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-second);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-articles__view-all:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.m-blog {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}
@media (max-width: calc(1024px - 1px)) {
  .m-blog {
    flex-direction: column;
    gap: 24px;
  }
}
.m-blog__sidebar {
  flex: 0 0 220px;
}
@media (max-width: calc(1024px - 1px)) {
  .m-blog__sidebar {
    flex: none;
    width: 100%;
  }
}
.m-blog__sidebar-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #222d55;
  margin: 0 0 16px;
}
.m-blog__sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: calc(1024px - 1px)) {
  .m-blog__sidebar-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}
.m-blog__sidebar-list a {
  color: #6C6D70;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.m-blog__sidebar-list a:hover {
  color: #2c808c;
}
.m-blog__content {
  flex: 1;
  min-width: 0;
}
.m-blog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.m-blog__title {
  font-size: 32px;
  font-weight: 700;
  color: #222d55;
  margin: 0;
}
.m-blog__search {
  display: flex;
  gap: 8px;
}
.m-blog__search-input {
  height: 42px;
  padding: 0 16px;
  border: 1px solid #DBDDDE;
  border-radius: 4px;
  font-size: 14px;
}
.m-blog__search-input:focus {
  outline: none;
  border-color: #2c808c;
}
.m-blog__search-btn {
  height: 42px;
  padding: 0 20px;
  background: #2c808c;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.m-blog__search-btn:hover {
  opacity: 0.9;
}
.m-blog__posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: calc(768px - 1px)) {
  .m-blog__posts {
    grid-template-columns: 1fr;
  }
}
.m-blog__post {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid #DBDDDE;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}
.m-blog__post:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34, 45, 85, 0.1);
}
.m-blog__post-category {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2c808c;
  text-decoration: none;
  margin-bottom: 10px;
}
.m-blog__post-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
}
.m-blog__post-title a {
  color: #222d55;
  text-decoration: none;
  transition: color 0.3s ease;
}
.m-blog__post-title a:hover {
  color: #2c808c;
}
.m-blog__post-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 0 14px;
}
.m-blog__post-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 128, 140, 0.85) 0%, rgba(44, 128, 140, 0.45) 40%, transparent 75%);
  pointer-events: none;
}
.m-blog__post-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-blog__post-intro {
  font-size: 14px;
  line-height: 1.6;
  color: #6C6D70;
  margin: 0 0 16px;
  flex: 1;
}
.m-blog__post-meta {
  font-size: 12px;
  color: #929497;
  margin-bottom: 14px;
}
.m-blog__post-link {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
  color: #2c808c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.m-blog__post-link:hover {
  color: #222d55;
}
.m-blog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.m-blog__pagination-btn {
  padding: 10px 18px;
  border: 1px solid #DBDDDE;
  border-radius: 4px;
  color: #222d55;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.m-blog__pagination-btn:hover {
  background: #222d55;
  color: #fff;
  border-color: #222d55;
}
.m-blog__pagination-info {
  font-size: 14px;
  color: #6C6D70;
}
.m-blog__empty {
  text-align: center;
  font-size: 16px;
  color: #929497;
  padding: 60px 20px;
}
.m-blog__article {
  flex: 1;
  min-width: 0;
}
.m-blog__article-header {
  margin-bottom: 4px;
}
.m-blog__article-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #222d55;
  margin: 10px 0 12px;
}
.m-blog__article-meta {
  font-size: 13px;
  color: #929497;
}
.m-blog__article-image {
  width: 100%;
  max-height: 420px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin: 20px 0 28px;
}
.m-blog__article-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #222d55;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #DBDDDE;
}
.m-blog__article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #6C6D70;
}
.m-blog__article-content p {
  margin: 0 0 20px;
}
.m-blog__article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #222d55;
  margin: 36px 0 14px;
}
.m-blog__article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222d55;
  margin: 28px 0 12px;
}
.m-blog__article-content ul, .m-blog__article-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.m-blog__article-content li {
  margin-bottom: 8px;
}
.m-blog__article-content a {
  color: #2c808c;
  text-decoration: underline;
}
.m-blog__article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.m-blog__article-content blockquote {
  border-left: 4px solid #2c808c;
  padding-left: 20px;
  margin: 24px 0;
  color: #6C6D70;
  font-style: italic;
}
.m-blog__share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid #DBDDDE;
  border-bottom: 1px solid #DBDDDE;
}
.m-blog__share-label {
  font-size: 14px;
  font-weight: 600;
  color: #222d55;
}
.m-blog__share-btn {
  font-size: 13px;
  font-weight: 600;
  color: #2c808c;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid #DBDDDE;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.m-blog__share-btn:hover {
  background: #2c808c;
  color: #fff;
  border-color: #2c808c;
}
.m-blog__related {
  margin: 40px 0;
}
.m-blog__related-title {
  font-size: 20px;
  font-weight: 700;
  color: #222d55;
  margin: 0 0 20px;
}
.m-blog__related-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: calc(768px - 1px)) {
  .m-blog__related-list {
    grid-template-columns: 1fr;
  }
}
.m-blog__related-item {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #DBDDDE;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.m-blog__related-item:hover {
  border-color: #2c808c;
  transform: translateY(-2px);
}
.m-blog__related-link {
  font-size: 16px;
  font-weight: 700;
  color: #222d55;
  text-decoration: none;
  transition: color 0.3s ease;
}
.m-blog__related-link:hover {
  color: #2c808c;
}
.m-blog__related-intro {
  font-size: 13px;
  line-height: 1.5;
  color: #6C6D70;
  margin: 8px 0 0;
}
.m-blog__nav {
  display: flex;
  gap: 16px;
  margin: 40px 0;
  padding-top: 28px;
  border-top: 1px solid #DBDDDE;
}
@media (max-width: calc(768px - 1px)) {
  .m-blog__nav {
    flex-direction: column;
  }
}
.m-blog__nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #DBDDDE;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.m-blog__nav-link:hover {
  border-color: #2c808c;
}
.m-blog__nav-next {
  text-align: right;
  align-items: flex-end;
}
.m-blog__nav-placeholder {
  flex: 1;
  background: none;
  border: none;
}
.m-blog__nav-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2c808c;
}
.m-blog__nav-title {
  font-size: 14px;
  font-weight: 600;
  color: #222d55;
}
.m-blog__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: #2c808c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.m-blog__back:hover {
  color: #222d55;
}

.m-blog--destaque {
  display: block;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}
.m-blog--destaque .m-blog__filters-row {
  margin-bottom: 24px;
}
.m-blog--destaque .m-blog__search {
  display: block;
  max-width: 560px;
  margin: 0 auto;
}
.m-blog--destaque .m-blog__search-field {
  display: flex;
  gap: 8px;
}
.m-blog--destaque .m-blog__search-input {
  flex: 1;
  min-width: 0;
  border-radius: 4px;
}
.m-blog--destaque .m-blog__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.m-blog--destaque .m-blog__category-pill {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid #DBDDDE;
  color: #6C6D70;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.m-blog--destaque .m-blog__category-pill:hover {
  border-color: #2c808c;
  color: #2c808c;
}
.m-blog--destaque .m-blog__category-pill--active {
  background: #2c808c;
  border-color: #2c808c;
  color: #fff;
}
.m-blog--destaque .m-blog__posts {
  display: block;
}
.m-blog--destaque .m-blog__card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: #F0F1F1;
  margin-bottom: 20px;
  border-top: 3px solid #2c808c;
  transition: transform 0.3s ease;
}
.m-blog--destaque .m-blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34, 45, 85, 0.12);
}
.m-blog--destaque .m-blog__card:focus-visible {
  outline: 3px solid #2c808c;
  outline-offset: 2px;
}
.m-blog--destaque .m-blog__card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.m-blog--destaque .m-blog__card-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 15, 31, 0.92) 0%, rgba(20, 80, 90, 0.65) 45%, rgba(44, 128, 140, 0.75) 100%);
  color: #fff;
}
.m-blog--destaque .m-blog__card--hero {
  aspect-ratio: 16/9;
}
.m-blog--destaque .m-blog__card--hero .m-blog__card-title {
  font-size: 22px;
  line-height: 28px;
  height: 56px;
}
@media (min-width: 1024px) {
  .m-blog--destaque .m-blog__card--hero {
    aspect-ratio: 21/9;
  }
  .m-blog--destaque .m-blog__card--hero .m-blog__card-title {
    font-size: 30px;
    line-height: 38px;
    height: 76px;
  }
}
.m-blog--destaque .m-blog__card--no-image {
  aspect-ratio: auto;
  background: #fff;
  border: 1px solid #DBDDDE;
  border-top: 3px solid #2c808c;
}
.m-blog--destaque .m-blog__card--no-image .m-blog__card-overlay {
  position: static;
  height: auto;
  padding: 24px;
  background: none;
  color: inherit;
}
.m-blog--destaque .m-blog__card--no-image .m-blog__card-title {
  color: #222d55;
}
.m-blog--destaque .m-blog__card--no-image .m-blog__card-intro {
  color: #6C6D70;
  -webkit-line-clamp: 3;
  height: 63px;
}
.m-blog--destaque .m-blog__card--no-image .m-blog__card-meta {
  color: #929497;
}
.m-blog--destaque .m-blog__card--no-image .m-blog__card-category {
  color: #2c808c;
}
.m-blog--destaque .m-blog__card--no-image .m-blog__card-cta {
  color: #2c808c;
}
.m-blog--destaque .m-blog__duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .m-blog--destaque .m-blog__duo {
    grid-template-columns: repeat(2, 1fr);
  }
}
.m-blog--destaque .m-blog__card--duo {
  aspect-ratio: 4/3;
  margin-bottom: 0;
}
.m-blog--destaque .m-blog__card-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 8px;
}
.m-blog--destaque .m-blog__card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  height: 48px;
  margin: 0 0 8px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.m-blog--destaque .m-blog__card-intro {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
}
.m-blog--destaque .m-blog__card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.m-blog--destaque .m-blog__card-cta {
  display: block;
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.m-blog--destaque .m-blog__card-cta::after {
  content: " →";
}
.m-blog--destaque .m-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .m-blog--destaque .m-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .m-blog--destaque .m-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.m-blog--destaque .m-blog__card--grid {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #DBDDDE;
  border-top: 3px solid #2c808c;
  margin-bottom: 0;
}
.m-blog--destaque .m-blog__card--grid .m-blog__card-category {
  color: #2c808c;
}
.m-blog--destaque .m-blog__card--grid .m-blog__card-title {
  color: #222d55;
}
.m-blog--destaque .m-blog__card--grid .m-blog__card-intro {
  color: #6C6D70;
}
.m-blog--destaque .m-blog__card--grid .m-blog__card-meta {
  color: #929497;
}
.m-blog--destaque .m-blog__card--grid .m-blog__card-cta {
  color: #2c808c;
}
.m-blog--destaque .m-blog__card-image-wrap {
  position: relative;
  overflow: hidden;
}
.m-blog--destaque .m-blog__card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 128, 140, 0.85) 0%, rgba(44, 128, 140, 0.45) 40%, transparent 75%);
  pointer-events: none;
}
.m-blog--destaque .m-blog__card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.m-blog--destaque .m-blog__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}
.m-blog--destaque .m-blog__card-body .m-blog__card-meta {
  margin-top: auto;
}
.m-blog--destaque .m-blog__pagination-page,
.m-blog--destaque .m-blog__pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #DBDDDE;
  border-radius: 4px;
  color: #222d55;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.m-blog--destaque .m-blog__pagination-page:hover,
.m-blog--destaque .m-blog__pagination-arrow:hover {
  background: #222d55;
  color: #fff;
  border-color: #222d55;
}
.m-blog--destaque .m-blog__pagination-page:focus-visible,
.m-blog--destaque .m-blog__pagination-arrow:focus-visible {
  outline: 3px solid #2c808c;
  outline-offset: 2px;
}
.m-blog--destaque .m-blog__pagination-page--active {
  background: #222d55;
  color: #fff;
  border-color: #222d55;
}
@media (prefers-reduced-motion: reduce) {
  .m-blog--destaque .m-blog__card,
  .m-blog--destaque .m-blog__category-pill,
  .m-blog--destaque .m-blog__pagination-page,
  .m-blog--destaque .m-blog__pagination-arrow {
    transition: none;
  }
  .m-blog--destaque .m-blog__card:hover {
    transform: none;
  }
}

.s-blog {
  padding: 50px 0;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .s-blog {
    padding: 80px 0;
  }
}
.s-blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-blog__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.s-blog__card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #F8FAFC;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .s-blog__card {
    width: calc(50% - 12px);
  }
}
@media (min-width: 1024px) {
  .s-blog__card {
    width: calc(33.333% - 16px);
  }
}
.s-blog__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: var(--color-second);
}
.s-blog__image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.s-blog__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 128, 140, 0.85) 0%, rgba(44, 128, 140, 0.45) 40%, transparent 75%);
  pointer-events: none;
}
.s-blog__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-blog__image-placeholder {
  width: 100%;
  height: 200px;
  background: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsla(0, 0%, 100%, 0.3);
}
.s-blog__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.s-blog__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 8px;
  line-height: 1.3;
}
.s-blog__excerpt {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 12px;
  height: 63px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.s-blog__date {
  font-size: 13px;
  color: #707070;
  margin-top: auto;
}
.s-blog__footer {
  text-align: center;
  margin-top: 40px;
}
.s-blog__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-second);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-blog__view-all:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.m-blog--artigos {
  display: block;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}
.m-blog--artigos .m-blog__filters-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .m-blog--artigos .m-blog__filters-row {
    flex-direction: row;
    gap: 0;
  }
}
.m-blog--artigos .m-blog__search {
  display: block;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .m-blog--artigos .m-blog__search {
    flex: 0 0 70%;
  }
}
.m-blog--artigos .m-blog__search-field {
  display: flex;
  gap: 8px;
}
.m-blog--artigos .m-blog__search-input {
  flex: 1;
  min-width: 0;
}
.m-blog--artigos .m-blog__year-filter {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .m-blog--artigos .m-blog__year-filter {
    flex: 0 0 20%;
    margin-left: 10%;
  }
}
.m-blog--artigos .m-blog__year-select {
  width: 100%;
  height: 42px;
  padding: 0 40px 0 16px;
  border: 1px solid #DBDDDE;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: #222d55;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.m-blog--artigos .m-blog__year-select:hover {
  border-color: #2c808c;
}
.m-blog--artigos .m-blog__year-select:focus-visible {
  outline: none;
  border-color: #2c808c;
  box-shadow: 0 0 0 3px rgba(44, 128, 140, 0.15);
}
.m-blog--artigos .m-blog__posts {
  display: block;
}
.m-blog--artigos .m-blog__card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: #F0F1F1;
  margin-bottom: 20px;
  border-top: 3px solid #2c808c;
  transition: transform 0.3s ease;
}
.m-blog--artigos .m-blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(34, 45, 85, 0.12);
}
.m-blog--artigos .m-blog__card:focus-visible {
  outline: 3px solid #2c808c;
  outline-offset: 2px;
}
.m-blog--artigos .m-blog__card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.m-blog--artigos .m-blog__card-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 15, 31, 0.92) 0%, rgba(10, 15, 31, 0.5) 60%, rgba(10, 15, 31, 0.1) 100%);
  color: #fff;
}
.m-blog--artigos .m-blog__card--hero {
  aspect-ratio: 16/9;
}
.m-blog--artigos .m-blog__card--hero .m-blog__card-title {
  font-size: 22px;
}
@media (min-width: 1024px) {
  .m-blog--artigos .m-blog__card--hero {
    aspect-ratio: 21/9;
  }
  .m-blog--artigos .m-blog__card--hero .m-blog__card-title {
    font-size: 30px;
  }
}
.m-blog--artigos .m-blog__card--no-image {
  aspect-ratio: auto;
  background: #fff;
  border: 1px solid #DBDDDE;
  border-top: 3px solid #2c808c;
}
.m-blog--artigos .m-blog__card--no-image .m-blog__card-overlay {
  position: static;
  height: auto;
  padding: 24px;
  background: none;
  color: inherit;
}
.m-blog--artigos .m-blog__card--no-image .m-blog__card-title {
  color: #222d55;
}
.m-blog--artigos .m-blog__card--no-image .m-blog__card-intro {
  color: #6C6D70;
  -webkit-line-clamp: 3;
}
.m-blog--artigos .m-blog__card--no-image .m-blog__card-meta {
  color: #929497;
}
.m-blog--artigos .m-blog__card--no-image .m-blog__card-cta {
  color: #2c808c;
}
.m-blog--artigos .m-blog__duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .m-blog--artigos .m-blog__duo {
    grid-template-columns: repeat(2, 1fr);
  }
}
.m-blog--artigos .m-blog__card--duo {
  aspect-ratio: 4/3;
  margin-bottom: 0;
}
.m-blog--artigos .m-blog__card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #fff;
}
.m-blog--artigos .m-blog__card-intro {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.m-blog--artigos .m-blog__card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.m-blog--artigos .m-blog__card-cta {
  display: block;
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.m-blog--artigos .m-blog__card-cta::after {
  content: " →";
}
.m-blog--artigos .m-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .m-blog--artigos .m-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .m-blog--artigos .m-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.m-blog--artigos .m-blog__card--grid {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #DBDDDE;
  border-top: 3px solid #2c808c;
  margin-bottom: 0;
}
.m-blog--artigos .m-blog__card--grid .m-blog__card-title {
  color: #222d55;
}
.m-blog--artigos .m-blog__card--grid .m-blog__card-intro {
  color: #6C6D70;
}
.m-blog--artigos .m-blog__card--grid .m-blog__card-meta {
  color: #929497;
}
.m-blog--artigos .m-blog__card--grid .m-blog__card-cta {
  color: #2c808c;
}
.m-blog--artigos .m-blog__card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.m-blog--artigos .m-blog__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}
.m-blog--artigos .m-blog__card-body .m-blog__card-meta {
  margin-top: auto;
}
.m-blog--artigos .m-blog__pagination-page,
.m-blog--artigos .m-blog__pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #DBDDDE;
  border-radius: 4px;
  color: #222d55;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.m-blog--artigos .m-blog__pagination-page:hover,
.m-blog--artigos .m-blog__pagination-arrow:hover {
  background: #222d55;
  color: #fff;
  border-color: #222d55;
}
.m-blog--artigos .m-blog__pagination-page:focus-visible,
.m-blog--artigos .m-blog__pagination-arrow:focus-visible {
  outline: 3px solid #2c808c;
  outline-offset: 2px;
}
.m-blog--artigos .m-blog__pagination-page--active {
  background: #222d55;
  color: #fff;
  border-color: #222d55;
}
@media (prefers-reduced-motion: reduce) {
  .m-blog--artigos .m-blog__card,
  .m-blog--artigos .m-blog__year-select,
  .m-blog--artigos .m-blog__pagination-page,
  .m-blog--artigos .m-blog__pagination-arrow {
    transition: none;
  }
  .m-blog--artigos .m-blog__card:hover {
    transform: none;
  }
}

.m-blog-feedback {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 32px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.m-blog-feedback__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.m-blog-feedback__subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 28px;
}
.m-blog-feedback__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.m-blog-feedback__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 160px;
}
.m-blog-feedback__btn--approve {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.25);
}
.m-blog-feedback__btn--approve:hover {
  background: #15803d;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
  transform: translateY(-1px);
}
.m-blog-feedback__btn--revise {
  background: #fff;
  color: #475569;
  border-color: #cbd5e1;
}
.m-blog-feedback__btn--revise:hover {
  border-color: #94a3b8;
  color: #1e293b;
  background: #f1f5f9;
}
.m-blog-feedback__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.m-blog-feedback__notes {
  margin-top: 24px;
  display: none;
}
.m-blog-feedback__notes.is-visible {
  display: block;
}
.m-blog-feedback__textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
  background: #fff;
  color: #334155;
  line-height: 1.5;
}
.m-blog-feedback__textarea:focus {
  outline: none;
  border-color: #005aaa;
  box-shadow: 0 0 0 3px rgba(0, 90, 170, 0.12);
}
.m-blog-feedback__textarea::placeholder {
  color: #94a3b8;
}
.m-blog-feedback__submit {
  margin-top: 12px;
  padding: 12px 24px;
  background: #005aaa;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.m-blog-feedback__submit:hover {
  background: #004a8f;
  box-shadow: 0 2px 8px rgba(0, 90, 170, 0.25);
}
.m-blog-feedback__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.m-blog-feedback__char-count {
  margin-top: 6px;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: right;
}
.m-blog-feedback__result {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 20px;
}
.m-blog-feedback__result--success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.m-blog-feedback__result--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.m-blog-feedback__current {
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.m-blog-feedback__current--aprovado {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.m-blog-feedback__current--revisao {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}
.m-blog-feedback__current--enderecado {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.m-blog-feedback__current-label {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1rem;
}
.m-blog-feedback__current-notes {
  margin-top: 8px;
  font-style: italic;
  color: #78716c;
}
.m-blog-feedback__resend {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #005aaa;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.m-blog-feedback__resend:hover {
  color: #004a8f;
}
@media (min-width: 768px) {
  .m-blog-feedback {
    padding: 40px 32px;
  }
}

.m-cursos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
@media (min-width: 1024px) {
  .m-cursos {
    padding: 60px 20px 80px;
  }
}
.m-cursos__filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.m-cursos__tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
@media (min-width: 1024px) {
  .m-cursos__tabs {
    gap: 32px;
  }
}
.m-cursos__tabs::-webkit-scrollbar {
  display: none;
}
.m-cursos__tab {
  font-size: 15px;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.m-cursos__tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}
.m-cursos__tab:hover {
  color: var(--color-main);
}
.m-cursos__tab--active {
  color: var(--color-main);
}
.m-cursos__tab--active::after {
  background: var(--color-second);
}
.m-cursos__tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.m-cursos__tags::-webkit-scrollbar {
  display: none;
}
.m-cursos__tag {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #d1d5db;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.m-cursos__tag:hover {
  color: #9ca3af;
}
.m-cursos__tag--active, .m-cursos__tag--active:hover {
  color: var(--color-second);
}
.m-cursos__empty {
  color: #6b7280;
  font-size: 16px;
  padding: 40px 0;
  text-align: center;
}
.m-cursos__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 56px;
}
.m-cursos__pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-main);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.m-cursos__pagination-arrow:hover {
  background: #f3f4f6;
}
.m-cursos__pagination-page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.m-cursos__pagination-page:hover {
  background: #f3f4f6;
  color: var(--color-main);
}
.m-cursos__pagination-page--active {
  background: var(--color-main);
  color: #fff;
}
.m-cursos__pagination-page--active:hover {
  background: var(--color-main);
  color: #fff;
}

.s-cd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #9ca3af;
  padding: 16px 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.s-cd-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}
.s-cd-breadcrumb a:hover {
  color: var(--color-second);
}
.s-cd-breadcrumb__sep {
  color: #d1d5db;
}
.s-cd-breadcrumb__current {
  color: var(--color-main);
  font-weight: 500;
}

.s-cd-hero {
  padding: 60px 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .s-cd-hero {
    padding: 80px 0;
  }
}
.s-cd-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .s-cd-hero__container {
    flex-wrap: nowrap;
    gap: 48px;
  }
}
.s-cd-hero__content {
  flex: 1;
  min-width: 0;
}
.s-cd-hero__badge {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-main);
  margin-bottom: 12px;
}
.s-cd-hero__badge--presential {
  background: rgba(44, 128, 140, 0.12);
  color: var(--color-second);
}
.s-cd-hero__badge--online {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.s-cd-hero__badge--hybrid {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}
.s-cd-hero__title {
  font-family: "Raela", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.15;
  margin: 0 0 12px;
}
@media (min-width: 1024px) {
  .s-cd-hero__title {
    font-size: 40px;
  }
}
.s-cd-hero__tagline {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-second);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: -8px 0 12px;
}
.s-cd-hero__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 32px;
}
@media (min-width: 1024px) {
  .s-cd-hero__subtitle {
    font-size: 20px;
  }
}
.s-cd-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.s-cd-hero__cta {
  display: inline-block;
  background: var(--color-second);
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.s-cd-hero__cta:hover {
  background: #1a5f6a;
  transform: translateY(-2px);
}
.s-cd-hero__cta-secondary {
  display: inline-block;
  background: #e5e7eb;
  color: #374151;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.s-cd-hero__cta-secondary:hover {
  background: #d1d5db;
  transform: translateY(-2px);
}
.s-cd-hero__media {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .s-cd-hero__media {
    width: 520px;
  }
}
.s-cd-hero__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.s-cd-hero__image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 14px;
  border-radius: 12px;
}
.s-cd-hero__video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}
.s-cd-hero__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.s-cd-infobar {
  padding: 0;
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.s-cd-infobar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
}
.s-cd-infobar__item {
  flex: 1;
  min-width: 140px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #e5e7eb;
  cursor: default;
}
.s-cd-infobar__item:hover .s-cd-infobar__icon {
  transform: translateY(-3px) scale(1.15);
  color: var(--color-main);
}
.s-cd-infobar__item:last-child {
  border-right: none;
}
@media (max-width: calc(768px - 1px)) {
  .s-cd-infobar__item {
    flex: 1 1 50%;
    border-bottom: 1px solid #e5e7eb;
  }
  .s-cd-infobar__item:last-child {
    border-bottom: none;
  }
}
@media (max-width: calc(480px - 1px)) {
  .s-cd-infobar__item {
    flex: 1 1 100%;
    border-right: none;
  }
}
.s-cd-infobar__icon {
  width: 28px;
  height: 28px;
  color: var(--color-second);
  margin-bottom: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.s-cd-infobar__label {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #9ca3af;
  margin-bottom: 8px;
}
.s-cd-infobar__value {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-main);
}

.s-cd-about {
  padding: 60px 0 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .s-cd-about {
    padding: 80px 0 0;
  }
}
.s-cd-about__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.s-cd-about__lead {
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.s-cd-about__lead h2 {
  font-family: "Raela", sans-serif;
  font-size: 19px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-third);
  margin: 0 0 20px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .s-cd-about__lead h2 {
    font-size: 26px;
  }
}
.s-cd-about__lead p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 16px;
}
.s-cd-about__lead p:last-child {
  margin-bottom: 0;
}
.s-cd-about__cta {
  display: inline-block;
  background: var(--color-second);
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-decoration: none;
  margin-top: 32px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.s-cd-about__cta:hover {
  background: #1a5f6a;
  transform: translateY(-2px);
}
.s-cd-about__content {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  padding: 40px 0;
  margin-top: 40px;
}
.s-cd-about__content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: #f8f9fa;
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: -1;
}
.s-cd-about__content h2 {
  font-family: "Raela", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--color-main);
  margin: 2em 0 0.5em;
  padding-bottom: 16px;
  position: relative;
  display: inline-block;
}
.s-cd-about__content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-third);
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .s-cd-about__content h2 {
    font-size: 32px;
  }
}
.s-cd-about__content h3 {
  font-family: "Raela", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin: 1.5em 0 0.5em;
}
.s-cd-about__content p {
  margin-bottom: 1em;
}
.s-cd-about__content ul, .s-cd-about__content ol {
  counter-reset: content-item;
  column-count: 1;
  column-gap: 40px;
  padding-left: 0;
  margin-bottom: 1.5em;
  list-style: none;
}
@media (min-width: 1024px) {
  .s-cd-about__content ul, .s-cd-about__content ol {
    column-count: 2;
  }
}
.s-cd-about__content li {
  counter-increment: content-item;
  position: relative;
  padding: 16px 16px 16px 56px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(34, 45, 85, 0.1);
  break-inside: avoid;
}
.s-cd-about__content li:last-child {
  border-bottom: none;
}
.s-cd-about__content li::before {
  content: counter(content-item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: "Raela", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-third);
}
.s-cd-about__content strong, .s-cd-about__content b {
  color: var(--color-main);
}
.s-cd-about__content blockquote {
  border-left: 3px solid var(--color-third);
  padding-left: 20px;
  font-style: italic;
  background: #f8f9fa;
  margin: 1.5em 0;
  padding: 16px 20px;
}
.s-cd-about__content a {
  color: var(--color-second);
  text-decoration: underline;
}
.s-cd-about__tabs {
  margin-top: 32px;
}
.s-cd-about__tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.s-cd-about__tab-nav::-webkit-scrollbar {
  display: none;
}
.s-cd-about__tab-btn {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  background: none;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .s-cd-about__tab-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}
.s-cd-about__tab-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}
.s-cd-about__tab-btn:hover {
  color: var(--color-main);
}
.s-cd-about__tab-btn.is-active {
  color: var(--color-second);
}
.s-cd-about__tab-btn.is-active::after {
  background: var(--color-second);
}
.s-cd-about__tab-panel {
  display: none;
}
.s-cd-about__tab-panel.is-active {
  display: block;
}
.s-cd-about__tab-panel p {
  margin-top: 20px;
  font-weight: 600;
  color: var(--color-main);
  font-size: 16px;
}
.s-cd-about__modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 1em;
}
@media (min-width: 768px) {
  .s-cd-about__modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .s-cd-about__modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.s-cd-about__modules-grid-item h3 {
  margin-top: 0;
}
.s-cd-about__structure {
  background: #f8f9fa;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 60px calc(50vw - 50%);
}
@media (min-width: 1024px) {
  .s-cd-about__structure {
    padding: 80px calc(50vw - 50%);
  }
}
.s-cd-about__structure-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.s-cd-about__structure-card {
  flex: 1 1 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--color-third);
  border-radius: 8px;
  padding: 20px 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (min-width: 1024px) {
  .s-cd-about__structure-card {
    flex: 1 1 calc(50% - 8px);
  }
}
.s-cd-about__structure-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.s-cd-about__structure-card svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-third);
  margin-top: 2px;
}
.s-cd-about__structure-card span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
}
.s-cd-about__structure-highlight {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 80px calc(50vw - 50%) 40px;
  background: var(--color-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-cd-about__structure-highlight::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.s-cd-about__structure-highlight::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.s-cd-about__structure-highlight-big {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Raela", sans-serif;
  font-size: 160px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 1024px) {
  .s-cd-about__structure-highlight-big {
    font-size: 220px;
  }
}
.s-cd-about__structure-highlight-text {
  position: relative;
  z-index: 1;
}
.s-cd-about__structure-highlight-label {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-third);
  margin-bottom: 16px;
}
.s-cd-about__structure-highlight-phrase {
  font-family: "Raela", sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .s-cd-about__structure-highlight-phrase {
    font-size: 36px;
  }
}
.s-cd-about__structure-highlight-accent {
  color: var(--color-third);
  font-style: normal;
  font-weight: 700;
}

.s-cd-numbers {
  padding: 60px 0;
  background: var(--color-main);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .s-cd-numbers {
    padding: 80px 0;
  }
}
.s-cd-numbers::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.15) 0%, rgba(44, 128, 140, 0.05) 40%, transparent 70%);
  pointer-events: none;
}
.s-cd-numbers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.s-cd-numbers__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .s-cd-numbers__list {
    gap: 0;
  }
}
.s-cd-numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(50% - 20px);
}
@media (min-width: 768px) {
  .s-cd-numbers__item {
    width: 33.333%;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0 24px;
  }
  .s-cd-numbers__item:last-child {
    border-right: none;
  }
}
.s-cd-numbers__value {
  font-family: "Raela", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--color-third);
  margin-bottom: 8px;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .s-cd-numbers__value {
    font-size: 60px;
  }
}
.s-cd-numbers__label {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.s-cd-numbers__text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.s-cd-benefits {
  padding: 60px 0;
  background-color: #f8f9fa;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0' fill='none' stroke='%23e8eaed' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  position: relative;
}
@media (min-width: 1024px) {
  .s-cd-benefits {
    padding: 80px 0;
  }
}
.s-cd-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.s-cd-benefits__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.s-cd-benefits__lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.s-cd-benefits__lead p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
}
.s-cd-benefits__card {
  flex: 1;
  min-width: 260px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-cd-benefits__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.s-cd-benefits__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(44, 128, 140, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-third);
}
.s-cd-benefits__icon svg {
  width: 24px;
  height: 24px;
}
.s-cd-benefits__card-title {
  font-family: "Raela", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 8px;
}
.s-cd-benefits__card-desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
.s-cd-benefits__cta {
  text-align: center;
  margin-top: 48px;
}
.s-cd-benefits__btn {
  display: inline-block;
  background: var(--color-second);
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.s-cd-benefits__btn:hover {
  background: #1a5f6a;
  transform: translateY(-2px);
}

.s-cd-testimonials {
  padding: 60px 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .s-cd-testimonials {
    padding: 80px 0;
  }
}
.s-cd-testimonials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.s-cd-testimonials__viewport {
  overflow: hidden;
}
.s-cd-testimonials__carousel {
  position: relative;
}
.s-cd-testimonials__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  height: auto;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 1024px) {
  .s-cd-testimonials__card {
    width: calc(50% - 15px);
  }
}
.s-cd-testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.s-cd-testimonials .c-carousel__btn {
  width: 28px;
  height: 28px;
  background: rgba(44, 128, 140, 0.35);
}
@media (min-width: 768px) {
  .s-cd-testimonials .c-carousel__btn {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1024px) {
  .s-cd-testimonials .c-carousel__btn {
    width: 36px;
    height: 36px;
  }
}
.s-cd-testimonials .c-carousel__btn:hover {
  transform: translateY(-50%);
  background: rgba(44, 128, 140, 0.6);
}
.s-cd-testimonials .c-carousel__btn svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .s-cd-testimonials .c-carousel__btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1024px) {
  .s-cd-testimonials .c-carousel__btn svg {
    width: 18px;
    height: 18px;
  }
}
.s-cd-testimonials__rating {
  color: var(--color-third);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.s-cd-testimonials__quote {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-cd-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-cd-testimonials__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.s-cd-testimonials__info {
  display: flex;
  flex-direction: column;
}
.s-cd-testimonials__name {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-main);
}
.s-cd-testimonials__role {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #9ca3af;
}

.s-cd-audience {
  padding: 60px 0;
  background: #f8f9fa;
}
@media (min-width: 1024px) {
  .s-cd-audience {
    padding: 80px 0;
  }
}
.s-cd-audience--white {
  background: #fff;
}
.s-cd-audience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .s-cd-audience__container--split {
    display: flex;
    gap: 60px;
  }
}
.s-cd-audience__section {
  margin-bottom: 40px;
}
.s-cd-audience__section:last-child {
  margin-bottom: 0;
}
.s-cd-audience__container--split .s-cd-audience__section {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .s-cd-audience__container--split .s-cd-audience__section {
    flex: 1;
    margin-bottom: 0;
  }
}
.s-cd-audience__section-title {
  font-family: "Raela", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 20px;
  padding-bottom: 12px;
  position: relative;
  display: inline-block;
}
.s-cd-audience__section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-third);
  border-radius: 2px;
}
.s-cd-audience__text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  white-space: pre-line;
}
.s-cd-audience__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .s-cd-audience__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}
.s-cd-audience__list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  border-bottom: 1px solid rgba(34, 45, 85, 0.08);
}
.s-cd-audience__list-item:last-child {
  border-bottom: none;
}
.s-cd-audience__list-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(76, 186, 178, 0.15);
  color: var(--color-third);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.s-cd-audience__list--accent .s-cd-audience__list-item {
  display: block;
  border-bottom: none;
  border-left: 3px solid var(--color-third);
  padding: 2px 0 2px 18px;
  margin-bottom: 22px;
  font-weight: 500;
  break-inside: avoid;
}
.s-cd-audience__list--accent .s-cd-audience__list-item:last-child {
  margin-bottom: 0;
}
.s-cd-audience__list--accent .s-cd-audience__list-item::before {
  content: none;
}
@media (min-width: 1024px) {
  .s-cd-audience__list--stack {
    grid-template-columns: 1fr;
  }
}

.s-cd-schedule {
  padding: 60px 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .s-cd-schedule {
    padding: 80px 0;
  }
}
.s-cd-schedule__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.s-cd-schedule__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #757575;
  margin: 0 0 32px;
}
.s-cd-schedule__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.s-cd-schedule__day {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}
.s-cd-schedule__day-title {
  font-family: "Raela", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-third);
}
.s-cd-schedule__block {
  margin-bottom: 16px;
}
.s-cd-schedule__block:last-child {
  margin-bottom: 0;
}
.s-cd-schedule__time {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-third);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.s-cd-schedule__block-title {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--color-main);
}
.s-cd-schedule__block-desc {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #6b7280;
}

.s-cd-instructors {
  padding: 60px 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .s-cd-instructors {
    padding: 80px 0;
  }
}
.s-cd-instructors .s-instructors__carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}
.s-cd-instructors .s-instructors__carousel .c-carousel__viewport {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .s-cd-instructors .s-instructors__carousel .c-carousel__track {
    gap: 60px;
  }
}
.s-cd-instructors .s-instructors__carousel .c-carousel__card {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
}
.s-cd-instructors .s-instructors__carousel .c-carousel__card img {
  height: auto;
}
@media (min-width: 1024px) {
  .s-cd-instructors .s-instructors__carousel .c-carousel__card {
    width: calc(20% - 48px);
  }
}
.s-cd-instructors .c-carousel__card:hover {
  transform: none;
}
.s-cd-instructors .c-carousel__card:hover img {
  transform: none;
}
.s-cd-instructors .c-carousel__btn {
  width: 28px;
  height: 28px;
  background: rgba(44, 128, 140, 0.35);
}
@media (min-width: 768px) {
  .s-cd-instructors .c-carousel__btn {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1024px) {
  .s-cd-instructors .c-carousel__btn {
    width: 36px;
    height: 36px;
  }
}
.s-cd-instructors .c-carousel__btn:hover {
  transform: translateY(-50%);
  background: rgba(44, 128, 140, 0.6);
}
.s-cd-instructors .c-carousel__btn svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .s-cd-instructors .c-carousel__btn svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1024px) {
  .s-cd-instructors .c-carousel__btn svg {
    width: 18px;
    height: 18px;
  }
}
.s-cd-instructors .c-carousel__btn--prev {
  left: 60px;
}
@media (min-width: 768px) {
  .s-cd-instructors .c-carousel__btn--prev {
    left: 70px;
  }
}
@media (min-width: 1440px) {
  .s-cd-instructors .c-carousel__btn--prev {
    left: -40px;
  }
}
.s-cd-instructors .c-carousel__btn--next {
  right: 60px;
}
@media (min-width: 768px) {
  .s-cd-instructors .c-carousel__btn--next {
    right: 70px;
  }
}
@media (min-width: 1440px) {
  .s-cd-instructors .c-carousel__btn--next {
    right: -40px;
  }
}
.s-cd-instructors__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.s-cd-instructors__header {
  margin-bottom: 32px;
}
.s-cd-instructors__title {
  font-family: "Raela", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 8px;
}
@media (min-width: 1024px) {
  .s-cd-instructors__title {
    font-size: 36px;
  }
}
.s-cd-instructors__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #757575;
  font-style: italic;
}
.s-cd-instructors__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.s-cd-instructors__card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-cd-instructors__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.s-cd-instructors__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.s-cd-instructors__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.s-cd-instructors__photo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 24px;
  flex-shrink: 0;
}
.s-cd-instructors__name {
  font-family: "Raela", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 2px;
}
.s-cd-instructors__specialty {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-second);
}
.s-cd-instructors__bio {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.s-cd-pricing {
  padding: 60px 0;
  background: var(--color-main);
}
@media (min-width: 1024px) {
  .s-cd-pricing {
    padding: 80px 0;
  }
}
.s-cd-pricing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
@media (min-width: 1024px) {
  .s-cd-pricing__container {
    flex-wrap: nowrap;
  }
}
.s-cd-pricing__features {
  flex: 1;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 40px 32px;
}
@media (min-width: 1024px) {
  .s-cd-pricing__features {
    border-radius: 16px 0 0 16px;
    padding: 48px 40px;
  }
}
.s-cd-pricing__features-title {
  font-family: "Raela", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 8px;
}
.s-cd-pricing__features-desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 24px;
  line-height: 1.6;
}
.s-cd-pricing__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.s-cd-pricing__check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #374151;
}
.s-cd-pricing__check-item:last-child {
  border-bottom: none;
}
.s-cd-pricing__check-icon {
  color: var(--color-third);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 16px;
}
.s-cd-pricing__price-side {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 16px 16px;
}
@media (min-width: 1024px) {
  .s-cd-pricing__price-side {
    flex: 0 0 440px;
    border-radius: 0 16px 16px 0;
    padding: 48px 40px;
  }
}
.s-cd-pricing__price-label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.s-cd-pricing__price-value {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .s-cd-pricing__price-value {
    font-size: 44px;
  }
}
.s-cd-pricing__price-installments {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.s-cd-pricing__price-cash {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}
.s-cd-pricing__price-free {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-third);
  margin-bottom: 32px;
}
.s-cd-pricing__price-cta {
  display: inline-block;
  width: 100%;
  background: var(--color-second);
  color: #fff;
  padding: 16px 24px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease;
}
.s-cd-pricing__price-cta:hover {
  background: #1a5f6a;
  transform: translateY(-2px);
}

.s-cd-faq {
  padding: 60px 0;
  background: #f8f9fa;
}
@media (min-width: 1024px) {
  .s-cd-faq {
    padding: 80px 0;
  }
}
.s-cd-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 1024px) {
  .s-cd-faq__container {
    flex-wrap: nowrap;
    gap: 80px;
  }
}
.s-cd-faq__left {
  flex: 0 0 100%;
}
@media (min-width: 1024px) {
  .s-cd-faq__left {
    flex: 0 0 320px;
    position: sticky;
    top: 40px;
    align-self: flex-start;
  }
}
.s-cd-faq__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-third);
  margin-bottom: 16px;
}
.s-cd-faq__title {
  font-family: "Raela", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.25;
  margin: 0 0 16px;
}
@media (min-width: 1024px) {
  .s-cd-faq__title {
    font-size: 36px;
  }
}
.s-cd-faq__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #757575;
  line-height: 1.6;
}
.s-cd-faq__right {
  flex: 1;
  min-width: 0;
}
.s-cd-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.s-cd-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-main);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}
.s-cd-faq__question:hover {
  color: var(--color-second);
}
.s-cd-faq__question[aria-expanded=true] {
  color: var(--color-second);
}
.s-cd-faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #bbb;
  transition: transform 0.3s ease;
}
.s-cd-faq__question[aria-expanded=true] .s-cd-faq__chevron {
  transform: rotate(180deg);
}
.s-cd-faq__question[aria-expanded=true] + .s-cd-faq__answer {
  padding-bottom: 24px;
}
.s-cd-faq__answer {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  padding: 0;
}
.s-cd-faq__answer ul {
  margin: 0;
  padding-left: 20px;
}
.s-cd-faq__answer li {
  margin-bottom: 6px;
}
.s-cd-faq__answer li:last-child {
  margin-bottom: 0;
}

.s-cd-final {
  padding: 60px 0;
  background: var(--color-second);
  text-align: center;
}
@media (min-width: 1024px) {
  .s-cd-final {
    padding: 80px 0;
  }
}
.s-cd-final__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.s-cd-final__title {
  font-family: "Raela", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .s-cd-final__title {
    font-size: 28px;
  }
}
.s-cd-final__text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
}
.s-cd-final__btn {
  display: inline-block;
  background: #fff;
  color: var(--color-main);
  padding: 16px 40px;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.s-cd-final__btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.s-intro {
  padding: 60px 20px;
}
.s-intro__container {
  max-width: 900px;
  margin: 0 auto;
}
.s-intro__lead {
  font-family: "Raela", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .s-intro__lead {
    font-size: 27px;
  }
}
@media (min-width: 1024px) {
  .s-intro__lead {
    font-size: 30px;
  }
}
.s-intro__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.s-intro__ornament::before, .s-intro__ornament::after {
  content: "";
  display: block;
  height: 2px;
  width: 56px;
  background: var(--color-third);
  border-radius: 2px;
}
.s-intro__diamond {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--color-second);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(44, 128, 140, 0.4);
}
.s-intro__body {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.s-growth {
  padding: 60px 20px;
  background-color: #f4f5f7;
  background-image: radial-gradient(circle, rgba(34, 45, 85, 0.12) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
}
.s-growth__container {
  max-width: 1200px;
  margin: 0 auto;
}
.s-growth__header {
  text-align: center;
  margin-bottom: 48px;
}
.s-growth__title {
  font-family: "Raela", sans-serif;
  font-size: 35px;
  font-weight: 500;
  color: #2c808c;
  margin: 0;
}
.s-growth__subtitle {
  max-width: 680px;
  margin: 16px auto 0;
  opacity: 0.85;
  line-height: 1.7;
}
.s-growth__timeline {
  position: relative;
  padding-left: 48px;
}
.s-growth__timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-third), var(--color-second));
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .s-growth__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-left: 0;
    padding-top: 48px;
  }
  .s-growth__timeline::before {
    left: 0;
    right: 0;
    top: 22px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--color-third), var(--color-second));
  }
}
@media (max-width: calc(768px - 1px)) {
  .s-growth__timeline {
    padding-left: 40px;
  }
  .s-growth__timeline::before {
    left: 11px;
  }
}
.s-growth__step {
  position: relative;
  margin-bottom: 40px;
}
.s-growth__step:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .s-growth__step {
    margin-bottom: 0;
    text-align: center;
  }
}
.s-growth__dot {
  position: absolute;
  left: -40px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-second);
  box-shadow: 0 0 0 4px rgba(44, 128, 140, 0.15);
}
@media (min-width: 1024px) {
  .s-growth__dot {
    position: relative;
    left: auto;
    top: auto;
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto 16px;
  }
}
@media (max-width: calc(768px - 1px)) {
  .s-growth__dot {
    left: -36px;
  }
}
.s-growth__step:last-child .s-growth__dot {
  background: var(--color-second);
  border-color: var(--color-second);
  box-shadow: 0 0 0 4px rgba(44, 128, 140, 0.15), 0 0 12px rgba(44, 128, 140, 0.3);
}
.s-growth__label {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-second);
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .s-growth__label {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.s-growth__step:last-child .s-growth__label {
  color: var(--color-second);
}
.s-growth__text {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}
@media (min-width: 1024px) {
  .s-growth__text {
    font-size: 14px;
    line-height: 1.6;
  }
}
.s-growth__step:last-child .s-growth__text {
  font-family: "Raela", sans-serif;
  font-size: 19px;
  color: var(--color-main);
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .s-growth__step:last-child .s-growth__text {
    font-size: 15px;
  }
}

.s-context {
  padding: 60px 20px 80px;
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}
.s-context__container {
  max-width: 1080px;
  margin: 0 auto;
}
.s-context__header {
  text-align: center;
  margin-bottom: 48px;
}
.s-context__title {
  font-family: "Raela", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .s-context__title {
    font-size: 32px;
  }
}
.s-context__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.s-context__ornament::before, .s-context__ornament::after {
  content: "";
  display: block;
  height: 2px;
  width: 56px;
  background: var(--color-third);
  border-radius: 2px;
}
.s-context__diamond {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--color-second);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(44, 128, 140, 0.4);
}
.s-context__intro {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #374151;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.s-context__subtitle {
  font-family: "Raela", sans-serif;
  font-size: 20px;
  color: var(--color-second);
  text-align: center;
  margin: 24px 0 48px;
}
.s-context__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}
.s-context__list::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-third) 15%, var(--color-third) 85%, transparent);
}
@media (max-width: calc(768px - 1px)) {
  .s-context__list {
    flex-wrap: wrap;
    gap: 24px;
  }
  .s-context__list::before {
    display: none;
  }
}
.s-context__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  position: relative;
  z-index: 1;
}
@media (max-width: calc(768px - 1px)) {
  .s-context__item {
    flex: 0 0 calc(50% - 12px);
  }
}
.s-context__item:hover .s-context__icon-wrap {
  background: var(--color-second);
  border-color: var(--color-second);
  box-shadow: 0 4px 16px rgba(44, 128, 140, 0.3);
  transform: scale(1.1);
}
.s-context__item:hover .s-context__icon {
  color: #fff;
}
.s-context__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-third);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.s-context__icon {
  width: 28px;
  height: 28px;
  color: var(--color-second);
  transition: color 0.3s ease;
}
.s-context__name {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-main);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  line-height: 1.4;
  max-width: 140px;
}
.s-context__closing {
  max-width: 700px;
  margin: 56px auto 0;
  text-align: center;
  font-family: "Raela", sans-serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-main);
}

.s-dimensions {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .s-dimensions {
    padding: 80px 20px;
  }
}
.s-dimensions {
  background: #f4f5f7;
  background-image: radial-gradient(circle, rgba(34, 45, 85, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
.s-dimensions__container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: calc(768px - 1px)) {
  .s-dimensions__container {
    flex-direction: column;
    gap: 32px;
  }
}
.s-dimensions__text {
  flex: 0 0 360px;
}
@media (max-width: calc(768px - 1px)) {
  .s-dimensions__text {
    flex: none;
  }
}
.s-dimensions__title {
  font-family: "Raela", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.3;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .s-dimensions__title {
    font-size: 32px;
  }
}
.s-dimensions__accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-second);
  border-radius: 2px;
  margin-bottom: 20px;
}
.s-dimensions__body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}
.s-dimensions__body p {
  margin-bottom: 12px;
}
.s-dimensions__cards {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.s-dimensions__card {
  width: calc(50% - 8px);
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--color-third);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: calc(768px - 1px)) {
  .s-dimensions__card {
    width: 100%;
  }
}
.s-dimensions__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.s-dimensions__card-icon {
  width: 20px;
  height: 20px;
  color: var(--color-second);
  flex-shrink: 0;
}
.s-dimensions__card-name {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.s-dimensions__card-desc {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.s-dimensions__closing {
  margin-top: 48px;
  text-align: center;
  font-family: "Raela", sans-serif;
  font-size: 19px;
  font-style: italic;
  color: var(--color-main);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.s-rebrand-text {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .s-rebrand-text {
    padding: 60px 20px;
  }
}
.s-rebrand-text__container {
  max-width: 800px;
  margin: 0 auto;
}
.s-rebrand-text__content {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}
.s-rebrand-text__content p {
  margin-bottom: 16px;
}
.s-rebrand-text__content h2 {
  font-family: "Raela", sans-serif;
  font-size: 35px;
  font-weight: 500;
  color: #2c808c;
  margin: 40px 0 16px;
}
.s-rebrand-text__content h2:first-child {
  margin-top: 0;
}
.s-rebrand-text--flush-top {
  padding-top: 0;
}
.s-rebrand-text__closing {
  max-width: 700px;
  margin: 24px auto 0;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}
@media (min-width: 1024px) {
  .s-rebrand-text__closing {
    margin-top: 32px;
  }
}
.s-rebrand-text__closing p {
  margin-bottom: 16px;
}

.s-consolidation {
  padding: 60px 20px;
  background: var(--color-main);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .s-consolidation {
    padding: 80px 20px;
  }
}
.s-consolidation::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76, 186, 178, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.s-consolidation::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.s-consolidation__container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.s-consolidation__header {
  text-align: center;
  margin-bottom: 56px;
}
.s-consolidation__title {
  font-family: "Raela", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .s-consolidation__title {
    font-size: 32px;
  }
}
.s-consolidation__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.s-consolidation__ornament::before, .s-consolidation__ornament::after {
  content: "";
  display: block;
  height: 2px;
  width: 56px;
  background: rgba(76, 186, 178, 0.5);
  border-radius: 2px;
}
.s-consolidation__diamond {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--color-second);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(44, 128, 140, 0.4);
}
.s-consolidation__intro {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto 16px;
}
.s-consolidation__intro--closing {
  font-style: italic;
  margin-top: 32px;
  text-align: center;
}
.s-consolidation__subtitle {
  font-family: "Raela", sans-serif;
  font-size: 20px;
  color: var(--color-third);
}
.s-consolidation__list {
  display: flex;
  gap: 24px;
}
@media (max-width: calc(768px - 1px)) {
  .s-consolidation__list {
    flex-direction: column;
    gap: 20px;
  }
}
.s-consolidation__card {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 28px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.s-consolidation__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(76, 186, 178, 0.3);
  transform: translateY(-4px);
}
.s-consolidation__card-number {
  font-family: "Raela", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(76, 186, 178, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.s-consolidation__card-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 2.8em;
}
.s-consolidation__card-desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.s-manifesto {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .s-manifesto {
    padding: 80px 20px;
  }
}
.s-manifesto__container {
  max-width: 1080px;
  margin: 0 auto;
}
.s-manifesto__quote {
  max-width: 800px;
  margin: 0 auto 56px;
  position: relative;
  padding: 0 60px;
  text-align: center;
}
.s-manifesto__quote::before {
  content: "“";
  font-family: "Raela", sans-serif;
  font-size: 120px;
  color: rgba(76, 186, 178, 0.15);
  position: absolute;
  top: -40px;
  left: 0;
  line-height: 1;
}
@media (max-width: calc(768px - 1px)) {
  .s-manifesto__quote {
    padding: 0 20px;
  }
  .s-manifesto__quote::before {
    font-size: 80px;
    left: -5px;
    top: -25px;
  }
}
.s-manifesto__quote-text {
  font-family: "Raela", sans-serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-main);
  line-height: 1.5;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: calc(768px - 1px)) {
  .s-manifesto__quote-text {
    font-size: 22px;
  }
}
.s-manifesto__quote-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-second);
  border-radius: 2px;
  margin: 0 auto;
}
.s-manifesto__values {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
  padding: 48px 0;
  position: relative;
}
.s-manifesto__values::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #f8f9fb;
  z-index: 0;
}
.s-manifesto__values > * {
  position: relative;
  z-index: 1;
}
@media (max-width: calc(768px - 1px)) {
  .s-manifesto__values {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
  }
}
.s-manifesto__values-heading {
  flex: 0 0 300px;
}
@media (max-width: calc(768px - 1px)) {
  .s-manifesto__values-heading {
    flex: none;
  }
}
.s-manifesto__values-title {
  font-family: "Raela", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 12px;
  line-height: 1.3;
}
@media (max-width: calc(768px - 1px)) {
  .s-manifesto__values-title {
    font-size: 24px;
  }
}
.s-manifesto__values-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.s-manifesto__values-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.s-manifesto__value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(34, 45, 85, 0.08);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--color-main);
}
.s-manifesto__value-item:last-child {
  border-bottom: none;
}
.s-manifesto__value-number {
  font-family: "Raela", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-third);
  flex: 0 0 32px;
  text-align: center;
}
.s-manifesto__arch-header {
  text-align: center;
  margin-bottom: 40px;
}
.s-manifesto__arch-title {
  font-family: "Raela", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 12px;
}
@media (max-width: calc(768px - 1px)) {
  .s-manifesto__arch-title {
    font-size: 24px;
  }
}
.s-manifesto__arch-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.s-manifesto__arch-list {
  display: flex;
  gap: 24px;
}
@media (max-width: calc(768px - 1px)) {
  .s-manifesto__arch-list {
    flex-direction: column;
  }
}
.s-manifesto__arch-card {
  flex: 1;
  border-top: 4px solid var(--color-second);
  background: #f8f9fb;
  border-radius: 0 0 14px 14px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-manifesto__arch-card:nth-child(2) {
  border-top-color: var(--color-third);
}
.s-manifesto__arch-card:nth-child(3) {
  border-top-color: var(--color-second);
}
.s-manifesto__arch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.s-manifesto__arch-icon {
  width: 24px;
  height: 24px;
  color: var(--color-second);
  margin-bottom: 12px;
}
.s-manifesto .s-manifesto__arch-card:nth-child(2) .s-manifesto__arch-icon {
  color: var(--color-third);
}
.s-manifesto .s-manifesto__arch-card:nth-child(3) .s-manifesto__arch-icon {
  color: var(--color-second);
}
.s-manifesto__arch-name {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 8px;
}
.s-manifesto__arch-desc {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.s-rebranding-cta {
  padding: 60px 20px;
  background: var(--color-main);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .s-rebranding-cta {
    padding: 80px 20px;
  }
}
.s-rebranding-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76, 186, 178, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.s-rebranding-cta::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(44, 128, 140, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.s-rebranding-cta__container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: calc(768px - 1px)) {
  .s-rebranding-cta__container {
    flex-direction: column;
    gap: 40px;
  }
}
.s-rebranding-cta__content {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid rgba(76, 186, 178, 0.15);
}
@media (max-width: calc(768px - 1px)) {
  .s-rebranding-cta__content {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(76, 186, 178, 0.15);
    padding-bottom: 40px;
  }
}
.s-rebranding-cta__eyebrow {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(76, 186, 178, 0.7);
  margin-bottom: 16px;
}
.s-rebranding-cta__title {
  font-family: "Raela", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .s-rebranding-cta__title {
    font-size: 32px;
  }
}
.s-rebranding-cta__text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 12px;
}
.s-rebranding-cta__text:last-of-type {
  margin-bottom: 36px;
}
.s-rebranding-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--color-second);
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-rebranding-cta__btn:hover {
  transform: scale(1.05);
}
.s-rebranding-cta__btn svg {
  width: 18px;
  height: 18px;
}
.s-rebranding-cta__aside {
  flex: 0 0 360px;
}
@media (max-width: calc(768px - 1px)) {
  .s-rebranding-cta__aside {
    flex: none;
    width: 100%;
  }
}
.s-rebranding-cta__quote {
  font-family: "Raela", sans-serif;
  font-size: 21px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  position: relative;
  margin: 0;
}
.s-rebranding-cta__quote::before {
  content: "“";
  font-family: "Raela", sans-serif;
  font-size: 100px;
  color: rgba(76, 186, 178, 0.15);
  position: absolute;
  top: -15px;
  left: 20px;
  line-height: 1;
}
.s-rebranding-cta__quote p {
  position: relative;
  z-index: 1;
  margin: 0;
}
@media (max-width: calc(768px - 1px)) {
  .s-rebranding-cta__quote {
    font-size: 19px;
  }
}
.s-rebranding-cta__quote-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 0 4px;
}
.s-rebranding-cta__quote-accent {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--color-second);
  border-radius: 2px;
}
.s-rebranding-cta__quote-source {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.s-methodology {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .s-methodology {
    padding: 60px 20px;
  }
}
.s-methodology__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.s-methodology__highlight {
  font-family: "Raela", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-second);
  margin-bottom: 8px;
}
.s-methodology__label {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 16px;
}
.s-methodology__text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.s-founders {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .s-founders {
    padding: 60px 20px;
  }
}
.s-founders__container {
  max-width: 900px;
  margin: 0 auto;
}
.s-founders__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
}
.s-founders__card {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.s-founders__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.s-founders__name {
  font-family: "Raela", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 4px;
}
.s-founders__role {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-second);
  margin-bottom: 12px;
}
.s-founders__bio {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  text-align: left;
}
.s-founders__tagline {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--color-main);
  text-align: center;
  margin-top: 24px;
  line-height: 1.6;
}

.s-essence {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .s-essence {
    padding: 60px 20px;
  }
}
.s-essence__container {
  max-width: 900px;
  margin: 0 auto;
}
.s-essence__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
}
.s-essence__card {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  background: #fff;
  border-radius: 8px;
  border-left: 3px solid var(--color-second);
  padding: 28px 32px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-essence__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 128, 140, 0.12);
}
.s-essence__icon {
  width: 28px;
  height: 28px;
  color: var(--color-second);
  margin-bottom: 14px;
}
.s-essence__name {
  font-family: "Raela", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 10px;
}
.s-essence__desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}

.s-base {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .s-base {
    padding: 60px 20px;
  }
}
.s-base__container {
  max-width: 900px;
  margin: 0 auto;
}
.s-base__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
}
.s-base__card {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-base__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.s-base__icon {
  width: 32px;
  height: 32px;
  color: var(--color-second);
  margin-bottom: 12px;
}
.s-base__name {
  font-family: "Raela", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 12px;
}
.s-base__desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
}

.s-values {
  padding: 40px 20px;
  background: #f8f8f8;
}
@media (min-width: 768px) {
  .s-values {
    padding: 60px 20px;
  }
}
@media (min-width: 1024px) {
  .s-values {
    padding: 80px 20px;
  }
}
.s-values__container {
  max-width: 1080px;
  margin: 0 auto;
}
.s-values__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}
.s-values__card {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .s-values__card {
    width: calc(50% - 12px);
  }
}
@media (min-width: 1024px) {
  .s-values__card {
    width: calc(33.333% - 16px);
  }
}
.s-values__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.s-values__icon {
  width: 20px;
  height: 20px;
  color: var(--color-second);
  flex-shrink: 0;
}
.s-values__name {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.s-values__desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.s-instructors__card-link {
  text-decoration: none;
  color: inherit;
}

.s-contact {
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
}
.s-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s-contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.s-contact__field--error .s-contact__input,
.s-contact__field--error .s-contact__textarea {
  border-color: #dc2626;
}
.s-contact__field--error .s-contact__error {
  display: block;
}
.s-contact__label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #222d55;
}
.s-contact input.s-contact__input, .s-contact__select, .s-contact__textarea {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  min-height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #222d55;
  transition: border-color 0.2s ease;
}
.s-contact input.s-contact__input:focus, .s-contact__select:focus, .s-contact__textarea:focus {
  outline: none;
  border-color: #2c808c;
}
.s-contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.s-contact__textarea {
  min-height: 140px;
  resize: vertical;
}
.s-contact__row {
  display: flex;
  gap: 20px;
}
.s-contact__row .s-contact__field {
  flex: 1;
}
.s-contact__submit {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  background: #2c808c;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}
.s-contact__submit:hover {
  background: #222d55;
}
.s-contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.s-contact__feedback {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  display: none;
}
.s-contact__feedback--success {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  display: block;
}
.s-contact__feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}
.s-contact__error {
  font-size: 13px;
  color: #dc2626;
  display: none;
}

.s-contact-channels {
  padding: 60px 20px;
}
.s-contact-channels__container {
  max-width: 900px;
  margin: 0 auto;
}
.s-contact-channels__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.s-contact-channels__card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.s-contact-channels__card:hover {
  border-color: #2c808c;
  box-shadow: 0 4px 12px rgba(44, 128, 140, 0.1);
}
.s-contact-channels__icon {
  width: 28px;
  height: 28px;
  color: var(--color-second);
  margin-bottom: 16px;
}
.s-contact-channels__title {
  font-family: "Raela", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #222d55;
  margin-bottom: 8px;
}
.s-contact-channels__text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
}
.s-contact-channels__link {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2c808c;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.s-contact-topics {
  padding: 60px 20px;
  background: #f9fafb;
}
.s-contact-topics__container {
  max-width: 900px;
  margin: 0 auto;
}
.s-contact-topics__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}
.s-contact-topics__card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.s-contact-topics__card:hover {
  border-color: #2c808c;
  box-shadow: 0 4px 12px rgba(44, 128, 140, 0.1);
}
.s-contact-topics__icon {
  width: 28px;
  height: 28px;
  color: var(--color-second);
  margin-bottom: 16px;
}
.s-contact-topics__name {
  font-family: "Raela", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222d55;
  margin-bottom: 8px;
}
.s-contact-topics__desc {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .s-contact__row {
    flex-direction: column;
  }
  .s-contact-channels__card {
    max-width: 100%;
  }
  .s-contact-topics__card {
    max-width: 100%;
  }
}
.s-patrocinador {
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
}
.s-patrocinador__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.s-patrocinador__label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #222d55;
}
.s-patrocinador__req {
  color: #dc2626;
  margin-left: 2px;
}
.s-patrocinador__hint {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.s-patrocinador input.s-patrocinador__input, .s-patrocinador__select {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #222d55;
  transition: border-color 0.2s ease;
}
.s-patrocinador input.s-patrocinador__input:focus, .s-patrocinador__select:focus {
  outline: none;
  border-color: #2c808c;
}
.s-patrocinador__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}
.s-patrocinador__row {
  display: flex;
  gap: 20px;
}
.s-patrocinador__row .s-patrocinador__field {
  flex: 1;
}
.s-patrocinador__phone {
  display: flex;
  gap: 10px;
}
.s-patrocinador__phone .s-patrocinador__prefix {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  color: #222d55;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.s-patrocinador__phone .s-patrocinador__input {
  flex: 1;
}
.s-patrocinador__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.s-patrocinador__field--error input.s-patrocinador__input,
.s-patrocinador__field--error .s-patrocinador__select {
  border-color: #dc2626;
}
.s-patrocinador__note {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
}
.s-patrocinador__note a {
  color: #2c808c;
  text-decoration: underline;
}
.s-patrocinador__submit {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  background: #2c808c;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}
.s-patrocinador__submit:hover {
  background: #222d55;
}
.s-patrocinador__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.s-patrocinador__feedback {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  display: none;
}
.s-patrocinador__feedback--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

@media (max-width: 576px) {
  .s-patrocinador__row {
    flex-direction: column;
  }
}
.s-confirmacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  padding: 60px 20px;
  text-align: center;
}
.s-confirmacao__icon {
  width: 72px;
  height: 72px;
  color: var(--color-second);
  margin-bottom: 24px;
}
.s-confirmacao__title {
  font-family: "Raela", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 12px;
}
.s-confirmacao__text {
  font-size: 18px;
  color: var(--color-main);
  opacity: 0.6;
  margin: 0 0 32px;
  max-width: 500px;
}
.s-confirmacao__link {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-second);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.s-confirmacao__link:hover {
  color: var(--color-four);
}

.s-404 {
  padding: 80px 20px 100px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.s-404__code {
  font-family: "Raela", sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1;
  margin: 0 0 16px;
  opacity: 0.15;
}
.s-404__title {
  font-family: "Raela", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 16px;
}
.s-404__text {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 40px;
}
.s-404__btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--color-second);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease;
}
.s-404__btn:hover {
  background: var(--color-four);
}
@media (min-width: 768px) {
  .s-404__code {
    font-size: 160px;
  }
  .s-404__title {
    font-size: 32px;
  }
}

.s-professores {
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.s-professores__list {
  display: flex;
  flex-wrap: wrap;
  gap: 54px;
  justify-content: center;
}
.s-professores__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  width: calc(50% - 27px);
}
.s-professores__photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.s-professores__overlay {
  padding: 16px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.s-professores__name {
  font-family: "Raela", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-second);
  margin: 0 0 4px;
  line-height: 1.2;
  height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.s-professores__role {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(34, 45, 85, 0.68);
  margin: 0;
  line-height: 1.4;
}
.s-professores__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}
.s-professores__empty {
  text-align: center;
  padding: 80px 20px;
  color: #9ca3af;
  font-size: 18px;
}
@media (min-width: 768px) {
  .s-professores__list {
    gap: 62.5px;
  }
  .s-professores__card {
    width: calc(33.333% - 41.667px);
    border-radius: 18px;
  }
  .s-professores__role {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .s-professores__list {
    gap: 78.75px;
  }
  .s-professores__card {
    width: calc(20% - 63px);
    border-radius: 20px;
  }
}

.s-professor {
  padding: 60px 20px 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.s-professor__profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.s-professor__photo-wrap {
  flex-shrink: 0;
  width: 280px;
  border-radius: 8px;
  overflow: hidden;
}
.s-professor__photo {
  width: 100%;
  aspect-ratio: 29/50;
  object-fit: cover;
  display: block;
}
.s-professor__photo-placeholder {
  width: 100%;
  aspect-ratio: 29/50;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}
.s-professor__info {
  flex: 1;
  min-width: 0;
}
.s-professor__name {
  font-family: "Raela", sans-serif;
  font-size: 25px;
  font-weight: 500;
  color: var(--color-main);
  margin: 0 0 8px;
  line-height: 1.2;
}
.s-professor__role {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-second);
  margin: 0 0 20px;
}
.s-professor__credentials {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-main);
  opacity: 0.6;
  margin: -12px 0 20px;
}
.s-professor__bio {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-main);
}
.s-professor__bio p {
  margin: 0 0 16px;
}
.s-professor__bio p:last-child {
  margin-bottom: 0;
}
.s-professor__contact {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  font-size: 14px;
}
.s-professor__contact a {
  color: var(--color-second);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.s-professor__contact a:hover {
  color: var(--color-four);
}
.s-professor__courses {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 20px;
}
.s-professor__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--color-second);
  text-decoration: none;
  transition: color 0.3s ease;
}
.s-professor__back:hover {
  color: var(--color-four);
}
@media (max-width: 767px) {
  .s-professor__profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .s-professor__photo-wrap {
    width: 220px;
  }
  .s-professor__info {
    padding-right: 70px;
  }
  .s-professor__contact {
    justify-content: center;
  }
  .s-professor__bio {
    text-align: left;
  }
}

.s-glossario-page {
  padding: 60px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.s-glossario-page__search {
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.s-glossario-page__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  transition: color 0.2s ease;
}
.s-glossario-page__search:focus-within .s-glossario-page__search-icon {
  color: var(--color-second);
}
.s-glossario-page input[type=text].s-glossario-page__search-input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  font-size: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.s-glossario-page input[type=text].s-glossario-page__search-input:focus {
  border-color: var(--color-second);
  box-shadow: 0 0 0 3px rgba(44, 128, 140, 0.1);
}
.s-glossario-page__category {
  margin-bottom: 48px;
}
.s-glossario-page__category-title {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-third);
  margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}
.s-glossario-page__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.s-glossario-page__card {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--color-third);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 22px 24px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background 0.3s ease;
}
.s-glossario-page__card:hover {
  transform: translateY(-4px);
  border-left-color: var(--color-third);
  background: #f8fcfc;
  box-shadow: 0 8px 24px rgba(44, 128, 140, 0.08), 0 12px 32px rgba(34, 45, 85, 0.06);
}
.s-glossario-page__card:hover .s-glossario-page__term {
  color: var(--color-third);
}
.s-glossario-page__term {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-main);
  margin: 0 0 6px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.s-glossario-page__definition {
  font-size: 15px;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
}
.s-glossario-page__empty {
  text-align: center;
  padding: 80px 20px;
  color: #9ca3af;
  font-size: 18px;
}
.s-glossario-page__no-results {
  text-align: center;
  padding: 40px 20px;
  color: #9ca3af;
  font-size: 16px;
  display: none;
}
@media (min-width: 768px) {
  .s-glossario-page__card {
    width: calc(50% - 12px);
  }
}
@media (min-width: 1024px) {
  .s-glossario-page__card {
    width: calc(33.333% - 16px);
  }
}

.m-artigo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
@media (min-width: 1024px) {
  .m-artigo {
    padding: 60px 20px 80px;
  }
}
.m-artigo__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .m-artigo__layout {
    flex-direction: row;
    gap: 48px;
  }
}
.m-artigo__article {
  flex: 1;
  min-width: 0;
  max-width: 800px;
}
.m-artigo__header {
  margin-bottom: 24px;
}
.m-artigo__title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 12px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .m-artigo__title {
    font-size: 28px;
  }
}
.m-artigo__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.m-artigo__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9ca3af;
}
.m-artigo__image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 24px;
}
.m-artigo__intro {
  font-size: 17px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
}
.m-artigo__external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-second);
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid var(--color-second);
  border-radius: 8px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.m-artigo__external:hover {
  background: var(--color-second);
  color: #fff;
}
.m-artigo__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-main);
  text-decoration: none;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.m-artigo__back svg {
  width: 16px;
  height: 16px;
}
.m-artigo__back:hover {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}
.m-artigo__aside {
  width: 100%;
}
@media (min-width: 1024px) {
  .m-artigo__aside {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
    align-self: flex-start;
  }
}
.m-artigo__aside-section {
  margin-bottom: 32px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.m-artigo__aside-section:last-child {
  margin-bottom: 0;
}
.m-artigo__aside-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.m-artigo__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.m-artigo__info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6b7280;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.m-artigo__info-list li svg {
  color: var(--color-third);
  flex-shrink: 0;
}
.m-artigo__info-list li:last-child {
  border-bottom: none;
}
.m-artigo__aside-cta {
  background: var(--color-main);
  border-color: var(--color-main);
}
.m-artigo__aside-cta .m-artigo__aside-title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.m-artigo__form-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 16px;
}
.m-artigo__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.m-artigo__field {
  display: flex;
  flex-direction: column;
}
.m-artigo__label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}
.m-artigo input.m-artigo__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.m-artigo input.m-artigo__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.m-artigo input.m-artigo__input:focus {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.m-artigo__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: var(--color-main);
  cursor: pointer;
  transition: all 0.3s ease;
}
.m-artigo__submit:hover {
  background: var(--color-third);
  color: #fff;
}
.m-artigo__success {
  text-align: center;
  padding: 16px 0;
}
.m-artigo__success svg {
  color: #3b82f6;
  margin-bottom: 12px;
}
.m-artigo__success-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.m-artigo__success-title + p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}
.m-artigo__error {
  font-size: 13px;
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.s-cursos-404 {
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
  padding: 40px 20px;
}
.s-cursos-404__code {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px;
}
.s-cursos-404__text {
  font-size: 18px;
  color: #6b7280;
  margin: 0 0 32px;
}
.s-cursos-404__btn {
  display: inline-block;
  padding: 12px 28px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease;
}
.s-cursos-404__btn:hover {
  background: #2563eb;
}

.s-eventos {
  padding: 50px 0;
  background: #f8f9fb;
}
@media (min-width: 1024px) {
  .s-eventos {
    padding: 80px 0;
  }
}
.s-eventos__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-eventos__empty {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  padding: 40px 0;
}
.s-eventos__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.s-eventos__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .s-eventos__card {
    width: calc(50% - 16px);
  }
}
@media (min-width: 1024px) {
  .s-eventos__card {
    width: calc(33.333% - 22px);
  }
}
.s-eventos__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(44, 128, 140, 0.08), 0 20px 50px rgba(34, 45, 85, 0.1);
}
.s-eventos__image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.s-eventos__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-eventos__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
}
.s-eventos__image-placeholder svg {
  width: 48px;
  height: 48px;
}
.s-eventos__body {
  padding: 18px 20px 20px;
}
.s-eventos__title {
  font-family: "Raela", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-main);
  line-height: 1.3;
  margin-bottom: 10px;
}
.s-eventos__date {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-second);
}

.s-evento {
  padding: 40px 0 60px;
  background: #f8f9fb;
}
@media (min-width: 1024px) {
  .s-evento {
    padding: 60px 0 80px;
  }
}
.s-evento__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.s-evento__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.s-evento__count {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}
.s-evento__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-second);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.s-evento__download:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.s-evento__download svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.s-evento__empty {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  padding: 40px 0;
}
.s-evento__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .s-evento__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .s-evento__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.s-evento__photo {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #f8f9fb;
}
.s-evento__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s-evento-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(17, 24, 39, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.s-evento-lightbox[hidden] {
  display: none;
}
.s-evento-lightbox__stage {
  position: relative;
  max-width: 1100px;
  max-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s-evento-lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
}
.s-evento-lightbox__counter {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
}
.s-evento-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.s-evento-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.s-evento-lightbox__close svg {
  width: 22px;
  height: 22px;
}
.s-evento-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 1;
}
.s-evento-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.s-evento-lightbox__nav svg {
  width: 26px;
  height: 26px;
}
.s-evento-lightbox__nav--prev {
  left: 12px;
}
@media (min-width: 768px) {
  .s-evento-lightbox__nav--prev {
    left: 24px;
  }
}
.s-evento-lightbox__nav--next {
  right: 12px;
}
@media (min-width: 768px) {
  .s-evento-lightbox__nav--next {
    right: 24px;
  }
}

.s-eventos-404 {
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
  padding: 40px 20px;
}
.s-eventos-404__code {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px;
}
.s-eventos-404__text {
  font-size: 18px;
  color: #6b7280;
  margin: 0;
}

.m-leads__bar-wrap {
  background: #f3f4f6;
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
  flex: 1;
}

.m-leads__bar {
  height: 100%;
  border-radius: 4px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.m-leads__bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.m-leads__bar-label {
  font-size: 0.82rem;
  color: #374151;
  min-width: 100px;
}

.m-leads__bar-count {
  font-size: 0.82rem;
  color: #6b7280;
  min-width: 32px;
  text-align: right;
}

.m-leads__kpi-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.m-leads__kpi-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px 24px;
  flex: 1;
  min-width: 160px;
}

.m-leads__kpi-value {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.m-leads__kpi-label {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 6px;
}

.m-leads__utm-section {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
}

.m-leads__utm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.m-leads__utm-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.m-leads__utm-key {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.m-leads__utm-val {
  font-size: 0.875rem;
  color: #374151;
}

.m-leads__detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .m-leads__detail-grid {
    grid-template-columns: 1fr;
  }
}

.m-leads__detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.m-leads__detail-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.m-leads__detail-value {
  font-size: 0.95rem;
  color: #111827;
}

.m-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.m-legal__meta {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.m-legal__content {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}
.m-legal__content h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-third);
  margin: 2em 0 0.5em;
}
.m-legal__content h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-third);
  margin: 1.5em 0 0.5em;
}
.m-legal__content p {
  margin-bottom: 1em;
}
.m-legal__content ul, .m-legal__content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.m-legal__content li {
  margin-bottom: 0.4em;
}
.m-legal__content a {
  color: #ec6224;
  text-decoration: none;
}
.m-legal__content a:hover {
  text-decoration: underline;
}
.m-legal__content strong {
  font-weight: 700;
}
.m-legal__content blockquote {
  border-left: 3px solid var(--color-second);
  padding-left: 16px;
  margin: 1.5em 0;
  color: #4b5563;
  font-style: italic;
}
.m-legal__content img {
  max-width: 100%;
  border-radius: 8px;
}

.m-legal-index {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
}
.m-legal-index__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.m-legal-index__card {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .m-legal-index__card {
    transition: none;
  }
}
@media (min-width: 768px) {
  .m-legal-index__card {
    flex: 1 1 calc(33.333% - 16px);
  }
}
.m-legal-index__card:hover {
  border-color: var(--color-main);
}
.m-legal-index__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
  border-radius: 10px;
  margin-bottom: 16px;
  color: #222d55;
}
.m-legal-index__card-icon svg {
  width: 24px;
  height: 24px;
}
.m-legal-index__card-title {
  font-family: Outfit, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #222d55;
  margin-bottom: 8px;
}
.m-legal-index__card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 16px;
  flex: 1;
}
.m-legal-index__card-link {
  font-size: 14px;
  font-weight: 500;
  color: #ec6224;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.m-legal-index__card-link svg {
  width: 16px;
  height: 16px;
}
