:root {
  --navy: #0D0D0D;
  --navy-dark: #2F2F2F;
  --sky: #FF7A00;
  --sky-dark: #FFB86B;
  --cream: #E0E0E0;
  --teal: #FF7A00;
  --peach: #FFB86B;
  --gold: #FFB86B;
  --white: #ffffff;
  --logo-bg: #f7f7f7;
  --text: #0D0D0D;
  --muted: #2F2F2F;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(13, 13, 13, 0.1);
  --transition: 0.2s ease;
  --header-offset: 9.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

h1,
h2,
h3,
.nav-brand-title,
.section-title,
.hero-title {
  font-family: "Montserrat", sans-serif;
}

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

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

.container {
  width: 90%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.container--main {
  width: 80%;
}

/* Header + toolbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(13, 13, 13, 0.08);
}

body {
  padding-top: var(--header-offset);
}

.top-toolbar {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.78rem;
}

.top-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.35rem;
  padding: 0.35rem 0;
}

.toolbar-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.toolbar-location svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.toolbar-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  min-width: 0;
}

.toolbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  white-space: nowrap;
  transition: color var(--transition), opacity var(--transition);
}

.toolbar-link:hover {
  color: var(--white);
}

.toolbar-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.toolbar-link--alt {
  opacity: 0.88;
}

.header-main {
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(13, 13, 13, 0.06);
  overflow: visible;
}

.site-header {
  overflow: visible;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.nav-logo {
  height: 96px;
  width: auto;
  max-width: min(300px, 52vw);
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-brand-subtitle {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--navy);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--teal);
}

.nav-cta {
  background: var(--sky);
  color: var(--navy) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--sky-dark);
}

/* Megamenú Plataforma */
.nav-megamenu {
  position: relative;
}

.nav-megamenu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 8px rgba(13, 13, 13, 0.08);
}

.nav-megamenu-icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  opacity: 0.85;
}

.nav-megamenu-btn:hover,
.nav-megamenu.is-open .nav-megamenu-btn,
.nav-megamenu-btn.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(13, 13, 13, 0.25);
}

.nav-megamenu-chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.25s ease;
}

.nav-megamenu.is-open .nav-megamenu-chevron {
  transform: rotate(180deg);
}

.megamenu-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: min(760px, calc(100vw - 1.5rem));
  background: var(--white);
  border-radius: 14px;
  box-shadow:
    0 4px 6px rgba(13, 13, 13, 0.04),
    0 24px 48px rgba(13, 13, 13, 0.16);
  border: 1px solid rgba(13, 13, 13, 0.12);
  z-index: 10001;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.megamenu-panel::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--sky) 50%, var(--peach) 100%);
}

.nav-megamenu.is-open .megamenu-panel:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.megamenu-panel[hidden] {
  display: none;
}

.megamenu-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 55%);
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.megamenu-head-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.2rem;
}

.megamenu-head-title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.megamenu-head-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.megamenu-head-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  background: var(--sky);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.megamenu-head-cta:hover {
  background: var(--sky-dark);
  color: var(--navy);
  transform: translateX(2px);
}

.megamenu-head-cta .megamenu-item-arrow {
  width: 14px;
  height: 14px;
}

.megamenu-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0.35rem 0;
}

.megamenu-col {
  padding: 1rem 1.15rem 1.1rem;
  border-right: 1px solid rgba(13, 13, 13, 0.07);
}

.megamenu-col:last-child {
  border-right: none;
}

.megamenu-col-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.megamenu-col-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.megamenu-col-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.megamenu-col-icon--navy {
  background: var(--navy);
}

.megamenu-col-icon--teal {
  background: var(--teal);
}

.megamenu-col-icon--sky {
  background: #737373;
}

.megamenu-col-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin: 0;
  padding-top: 0.35rem;
}

.megamenu-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.15rem;
}

.megamenu-list li {
  margin: 0;
}

.megamenu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0.35rem;
  margin: 0.15rem 0;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.megamenu-list a::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky-dark);
  margin-right: 0.35rem;
  align-self: center;
  transition: transform var(--transition);
}

.megamenu-col:nth-child(1) .megamenu-list a::before {
  background: var(--navy);
}

.megamenu-col:nth-child(2) .megamenu-list a::before {
  background: var(--teal);
}

.megamenu-col:nth-child(3) .megamenu-list a::before {
  background: #737373;
}

.megamenu-list a span {
  flex: 1;
  line-height: 1.35;
}

.megamenu-list a .campus-block-label {
  font-weight: 700;
  color: var(--navy);
}

.megamenu-item-arrow {
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition), stroke var(--transition);
}

.megamenu-list a:hover {
  background: rgba(163, 163, 163, 0.22);
  color: var(--navy);
}

.megamenu-list a:hover::before {
  transform: scale(1.2);
}

.megamenu-list a:hover .megamenu-item-arrow {
  opacity: 1;
  transform: translateX(0);
  stroke: var(--navy);
}

.megamenu-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.7rem 1.25rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

.megamenu-foot-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-mobile-platform {
  margin-top: 0.75rem;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.05);
  border: 1px solid rgba(13, 13, 13, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.nav-mobile-platform-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.nav-mobile-platform a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.35rem 0;
}

.nav-mobile-platform a:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0 1rem;
  font-weight: 600;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--navy);
  padding: 0.35rem 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sky);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 4px 16px rgba(163, 163, 163, 0.5);
}

.btn-primary:hover {
  background: var(--sky-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-link {
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--sky);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.hero-bg-shape {
  position: absolute;
  top: -15%;
  right: -5%;
  width: min(52vw, 520px);
  height: 120%;
  background: linear-gradient(145deg, rgba(163, 163, 163, 0.45) 0%, rgba(163, 163, 163, 0.08) 55%, transparent 100%);
  transform: skewX(-14deg);
  border-radius: 8px;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky), var(--peach));
  opacity: 0.35;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--navy) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-dots--tl {
  top: 1rem;
  left: 1rem;
}

.hero-dots--br {
  bottom: 2rem;
  right: 2rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 340px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-mask {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--navy);
  outline: 4px solid var(--sky);
  outline-offset: 4px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-photo-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.25);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero-title-accent {
  display: inline;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--white);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: 0 4px 16px rgba(13, 13, 13, 0.06);
}

.hero-badge strong {
  color: var(--teal);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
}

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

@media (min-width: 960px) {
  .value-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--sky);
  box-shadow: var(--shadow);
}

.value-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.about-highlight {
  margin-top: 2.5rem;
  padding: 2rem 2.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 5px solid var(--navy);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.about-highlight-lead {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-highlight-lead strong {
  font-weight: 700;
}

.about-highlight-support {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
}

/* Stages timeline */
.stages-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.stages-timeline::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  z-index: 0;
}

.stage-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.stage-num {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  border: 3px solid var(--sky);
}

.stage-item h3 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.stage-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

.hours-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(163, 163, 163, 0.25);
  border-radius: var(--radius);
}

.hours-legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.hours-pill {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.hours-pill--initial {
  background: var(--navy);
  color: var(--white);
}

.hours-pill--recurrent {
  background: var(--sky);
  color: var(--navy);
}

/* Course cards */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--navy);
  transition: transform var(--transition);
}

.course-card:hover {
  transform: translateY(-4px);
}

.course-card-header {
  padding: 1.25rem 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.course-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 13, 13, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.course-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.course-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.course-body {
  padding: 1rem 1.25rem;
  flex: 1;
}

.course-title {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.course-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.course-hours {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.course-stages {
  list-style: none;
  font-size: 0.82rem;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
  padding-top: 0.75rem;
}

.course-stages li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--text);
}

.course-stages li span:first-child {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--sky);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.course-footer {
  padding: 0 1.25rem 1.25rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.course-footer small {
  display: block;
  width: 100%;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.course-footer .btn-outline {
  flex: 0 0 auto;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.cta-band .btn-primary {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

/* Contact band */
.contact-band {
  background: #f5efe6;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(47, 47, 47, 0.08);
}

.contact-band-inner {
  text-align: left;
}

.contact-office {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2F2F2F;
  margin-bottom: 0.4rem;
}

.contact-office a {
  color: #2F2F2F;
  transition: color var(--transition);
}

.contact-office a:hover {
  color: var(--navy);
}

.contact-alt {
  font-size: 0.95rem;
  color: #707070;
}

.contact-alt a {
  color: #707070;
  font-weight: 600;
  transition: color var(--transition);
}

.contact-alt a:hover {
  color: var(--navy);
}

/* Footer */
.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.12) 0%, transparent 28%),
    linear-gradient(160deg, #141414 0%, var(--navy) 48%, #1a1a1a 100%);
  color: var(--gold);
  padding: 3.25rem 0 0;
  border-top: 3px solid var(--sky);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  background: radial-gradient(circle, rgba(255, 122, 0, 0.14) 0%, transparent 68%);
  pointer-events: none;
  transform: translate(-30%, -40%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 2.25rem 2rem;
  padding-bottom: 2.25rem;
}

.footer-brand-col {
  max-width: 22rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.85rem;
}

.footer-brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 0.55rem;
  padding: 0.3rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.footer-brand-name {
  font-family: Montserrat, "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-tag {
  font-size: 0.75rem;
  color: var(--sky-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-lede {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 184, 107, 0.82);
}

.footer-col-title {
  font-family: Montserrat, "Open Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 122, 0, 0.35);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col > .footer-list:not(.footer-list--contact) {
  list-style: disc;
  padding-left: 1.2rem;
}

.footer-col > .footer-list:not(.footer-list--contact) li::marker {
  color: var(--sky);
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 184, 107, 0.9);
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.35;
  transition: color var(--transition), transform var(--transition);
}

.footer-list a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-list--contact a {
  align-items: flex-start;
}

.footer-list svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.footer-list a:hover svg {
  stroke: var(--white);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.5rem;
  padding: 1.15rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom--solo {
  border-top: none;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-copy,
.footer-copy-meta {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 184, 107, 0.72);
}

.footer-copy-meta {
  letter-spacing: 0.02em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.15rem;
}

.footer-legal a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 122, 0, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

/* Documento legal */
.legal-doc {
  max-width: 46rem;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.legal-doc h2 {
  font-family: Montserrat, "Open Sans", sans-serif;
  font-size: 1.05rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--navy);
}

.legal-doc p,
.legal-doc li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-doc ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.35rem;
}

.legal-doc a {
  color: var(--sky);
  font-weight: 600;
}

.legal-back {
  margin-top: 2.5rem !important;
}

.legal-back a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 122, 0, 0.4);
}

/* Compat: estructuras previas del pie */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gold);
  transition: color var(--transition), opacity var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-contact-alt {
  opacity: 0.9;
  font-size: 0.85rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.85;
}

.footer-note a {
  color: var(--gold);
}

.footer-note a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-top: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

/* Calendar page */
.page-hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, var(--white), var(--cream));
  border-bottom: 3px solid var(--sky);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: 40%;
  height: 180%;
  background: linear-gradient(135deg, rgba(163, 163, 163, 0.3), transparent 70%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.calendar-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.calendar-nav button:hover {
  background: var(--sky);
}

.calendar-month-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  min-width: 180px;
  text-align: center;
}

.calendar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--navy);
  color: var(--white);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cal-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0;
}

.cal-day {
  min-height: 90px;
  padding: 0.35rem;
  border: 1px solid rgba(13, 13, 13, 0.08);
  border-radius: 6px;
  font-size: 0.8rem;
  background: var(--cream);
}

.cal-day--has-events {
  min-height: 108px;
  background: var(--white);
}

.cal-day--empty {
  background: transparent;
  border-color: transparent;
}

.cal-day-num {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.cal-event {
  display: block;
  font-size: 0.62rem;
  padding: 0.2rem 0.35rem;
  margin-top: 0.2rem;
  border-radius: 3px;
  font-weight: 600;
  line-height: 1.25;
  cursor: default;
}

.cal-event--seguridad { background: #0D0D0D; color: #fff; }
.cal-event--rrhh { background: #FF7A00; color: #0D0D0D; }
.cal-event--desarrollo { background: #2F2F2F; color: #fff; }
.cal-event--medioambiente { background: #FFB86B; color: #0D0D0D; }
.cal-event--ventas { background: #FF7A00; color: #fff; }
.cal-event--calidad { background: #FFB86B; color: #0D0D0D; }
.cal-event--proteccion { background: #2F2F2F; color: #FFB86B; }
.cal-event--salud { background: #E0E0E0; color: #0D0D0D; }

.course-card--seguridad { border-top-color: #0D0D0D; }
.course-card--rrhh { border-top-color: #FF7A00; }
.course-card--desarrollo { border-top-color: #2F2F2F; }
.course-card--medioambiente { border-top-color: #FFB86B; }
.course-card--ventas { border-top-color: #FF7A00; }
.course-card--calidad { border-top-color: #FFB86B; }
.course-card--proteccion { border-top-color: #2F2F2F; }
.course-card--salud { border-top-color: #E0E0E0; }

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.upcoming-list {
  margin-top: 2.5rem;
}

.upcoming-list h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.upcoming-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(13, 13, 13, 0.06);
  border-left: 4px solid var(--sky);
}

.upcoming-date {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  min-width: 52px;
}

.upcoming-date span {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}

.upcoming-date small {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
}

.upcoming-meta h3 {
  font-size: 0.95rem;
  color: var(--navy);
}

.upcoming-meta p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Plataforma */
.platform-quick {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.platform-quick-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 72px;
  padding: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  border: 2px solid rgba(13, 13, 13, 0.1);
  transition: border-color var(--transition), background var(--transition);
}

.platform-quick-card:hover {
  border-color: var(--sky);
  background: rgba(163, 163, 163, 0.15);
}

.platform-section .section-title {
  text-align: left;
  margin-bottom: 0.5rem;
}

.platform-form {
  max-width: 640px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.platform-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.platform-form input,
.platform-form select,
.platform-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid rgba(13, 13, 13, 0.2);
  border-radius: 8px;
  background: var(--cream);
  margin-bottom: 0.5rem;
}

.platform-form .form-row {
  margin-bottom: 0.75rem;
}

.platform-login-box {
  max-width: 480px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.platform-login-box p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* Repositorio */
.repo-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.repo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--navy);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.repo-card--seguridad { border-left-color: #0D0D0D; }
.repo-card--rrhh { border-left-color: #FF7A00; }
.repo-card--desarrollo { border-left-color: #2F2F2F; }
.repo-card--medioambiente { border-left-color: #FFB86B; }
.repo-card--ventas { border-left-color: #FF7A00; }
.repo-card--calidad { border-left-color: #FFB86B; }
.repo-card--proteccion { border-left-color: #2F2F2F; }
.repo-card--salud { border-left-color: #E0E0E0; }

.repo-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.repo-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: rgba(255, 122, 0, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.repo-cat {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: right;
}

.repo-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
}

.repo-card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

.repo-card-btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.repo-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.repo-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 2rem;
}

/* CTA band actions */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-band .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* Modal inscripción */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.55);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 720px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: 0 24px 60px rgba(13, 13, 13, 0.25);
  border-top: 4px solid var(--sky);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  border-radius: 4px;
}

.modal-close:hover {
  color: var(--navy);
  background: rgba(13, 13, 13, 0.06);
}

.modal-title {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.modal-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.modal-form .form-row {
  margin-bottom: 1rem;
}

.modal-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid rgba(13, 13, 13, 0.2);
  border-radius: 8px;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--sky-dark);
  box-shadow: 0 0 0 3px rgba(163, 163, 163, 0.45);
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
  padding-top: 0.5rem;
}

.modal-actions .btn-primary {
  border: none;
  cursor: pointer;
}

.modal-actions .btn-outline {
  cursor: pointer;
}

.upcoming-item .btn-outline {
  cursor: pointer;
  font-family: inherit;
}

/* Scroll up */
.scroll-up {
  position: fixed;
  bottom: calc(1.5rem + 100px);
  right: calc(1.5rem + 8px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition),
    background-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(47, 47, 47, 0.45);
}

.scroll-up:hover {
  background: #cdcdcd;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 13, 13, 0.25);
}

.scroll-up:active {
  transform: translateY(0);
}

.scroll-up.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-up svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-mask {
    width: min(280px, 72vw);
    margin: 0 auto;
  }

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

  .stages-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .stages-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 8.75rem;
  }

  .nav-logo {
    height: 80px;
    max-width: min(240px, 55vw);
  }

  .top-toolbar-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
  }

  .toolbar-contact {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem 1rem;
    max-width: 100%;
  }

  .toolbar-contact::-webkit-scrollbar {
    display: none;
  }

  .toolbar-link {
    font-size: 0.72rem;
  }

  .nav-links {
    display: none;
  }

  .nav-megamenu {
    display: none;
  }

  .megamenu-panel {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    background: var(--logo-bg);
    border-top: 1px solid rgba(13, 13, 13, 0.08);
    padding-bottom: 0.75rem;
  }

  .stages-timeline {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    font-size: 0.7rem;
  }

  .cal-day {
    min-height: 64px;
  }

  .upcoming-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .form-row--half {
    grid-template-columns: 1fr;
  }

  .megamenu-inner {
    grid-template-columns: 1fr;
  }

  .megamenu-col {
    border-right: none;
    border-bottom: 1px solid rgba(13, 13, 13, 0.07);
  }

  .megamenu-col:last-child {
    border-bottom: none;
  }

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

  .megamenu-head-cta {
    width: 100%;
    justify-content: center;
  }

  .megamenu-item-arrow {
    opacity: 0.5;
    transform: none;
  }
}
