/* ================= MOMENTOS SECTION ================= */
.momentos-section {
  padding: 6rem 0;
  background-color: white;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}
.momentos-img {
  height: 6rem;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}
@media (min-width: 768px) {
  .momentos-img { height: 8rem; }
}
@media (min-width: 1024px) {
  .momentos-img { height: 10rem; }
}

.momentos-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray-600);
  margin-bottom: 4rem;
  font-weight: 500;
  text-align: center;
}

.momentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .momentos-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.momento-card {
  position: relative;
  border-radius: 1rem;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.momento-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 0;
}
.momento-card:hover .momento-glow { opacity: 0.6; }

.momento-container {
  background: transparent;
  padding: 2px;
  border-radius: 1rem;
  transition: all 0.5s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
.momento-card:hover .momento-container {
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  box-shadow: none;
}

.momento-inner {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  transition: all 0.5s;
  min-height: 160px;
}
@media (min-width: 768px) {
  .momento-inner { min-height: 200px; }
}

.momento-card:hover .momento-inner {
  border-color: transparent;
  background: transparent;
}

.momento-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #0019ec, #000b75, #0019ec, #00085c);
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 0;
}
.momento-card:hover .momento-fill { opacity: 1; }

.momento-num {
  font-size: 5rem;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  color: #e5e7eb;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .momento-num { font-size: 6rem; }
}
.momento-card:hover .momento-num {
  color: var(--color-brand-orange);
  opacity: 1;
  transform: scale(1.1) translate(5px, -5px);
}

.momento-content {
  position: relative;
  z-index: 10;
  padding: 2rem 1.25rem 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .momento-content { padding: 2rem 1.5rem 1.5rem; text-align: center; align-items: center; }
}

.momento-title {
  font-size: 1.25rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--text-gray-900);
  text-transform: uppercase;
  transition: color 0.5s;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .momento-title { font-size: 1.5rem; }
}
.momento-card:hover .momento-title { color: white; }

.momento-desc {
  color: var(--text-gray-500);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.5s;
}
@media (min-width: 768px) {
  .momento-desc { font-size: 0.875rem; }
}
.momento-card:hover .momento-desc { color: #dbeafe; }

.momento-line {
  width: 2.5rem;
  height: 0.25rem;
  background-color: var(--color-brand-orange);
  margin-top: 0.75rem;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s, background-color 0.5s;
}
@media (min-width: 768px) {
  .momento-line { width: 3rem; margin: 0.75rem auto 0; }
}
.scroll-active .momento-line { transform: scaleX(1); }
.momento-card:hover .momento-line { background-color: white; }

/* ================= FASES SECTION ================= */
.fases-section {
  padding: 0;
  background-color: var(--bg-color);
}
.fases-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
@media (min-width: 1024px) {
  .fases-grid { grid-template-columns: 1fr 1fr; }
}

.fase-kids {
  background-color: #f0f4f8;
  border-right: 1px solid rgba(178, 193, 216, 0.5);
  padding: 4rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.fase-teens {
  background-color: var(--color-brand-blue);
  padding: 4rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fase-kids, .fase-teens {
    padding: 6rem;
  }
}

/* Scroll Zoom Image */
.scroll-zoom-width {
  width: 90%;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .scroll-zoom-width {
    width: 75%;
    transform-origin: left center;
    object-position: left;
    margin: 0 0 2rem 0;
  }
}
.scroll-active.scroll-zoom-width,
.scroll-active .scroll-zoom-width {
  width: 100%;
}
@media (min-width: 768px) {
  .scroll-active.scroll-zoom-width,
  .scroll-active .scroll-zoom-width {
    width: 85%;
  }
}

/* Fase Footer */
.fase-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(0,25,236,0.2);
  padding-top: 2rem;
  margin-top: auto;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}
.fase-teens .fase-footer {
  border-color: rgba(255,255,255,0.2);
}
@media (min-width: 768px) {
  .fase-footer { flex-direction: row; align-items: flex-end; }
}

.fase-cat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.fase-kids .fase-cat-label { color: var(--text-gray-500); }
.fase-teens .fase-cat-label { color: #bfdbfe; }

.fase-cat-val {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  line-height: 1;
}
.fase-kids .fase-cat-val { color: var(--color-brand-blue); }
.fase-teens .fase-cat-val { color: white; }
.fase-cat-val span {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  opacity: 0.7;
  text-transform: lowercase;
}

/* Gradient Button */
.btn-gradient-wrap {
  padding: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  background-size: 300% 300%;
  animation: border-gradient-flow 5s linear infinite;
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.btn-gradient-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.btn-gradient-wrap:hover .btn-gradient-fill { opacity: 1; }

.btn-gradient-inner {
  position: relative;
  z-index: 10;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .btn-gradient-inner { width: auto; }
}

.fase-kids .btn-gradient-inner {
  background-color: #f0f4f8;
  color: var(--color-brand-blue);
}
.fase-kids .btn-gradient-wrap:hover .btn-gradient-inner {
  background-color: transparent;
  color: white;
}

.fase-teens .btn-gradient-inner {
  background-color: var(--color-brand-blue);
  color: white;
}
.fase-teens .btn-gradient-wrap:hover .btn-gradient-inner {
  background-color: transparent;
}

/* Cronograma Accordion */
.crono-toggle-container {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #d1d5db;
  width: 100%;
  position: relative;
  z-index: 10;
}
.fase-teens .crono-toggle-container {
  border-color: rgba(255,255,255,0.2);
}

.crono-toggle-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  transition: color 0.3s;
}
.fase-kids .crono-toggle-btn {
  color: var(--color-brand-blue);
}
.fase-kids .crono-toggle-btn:hover {
  color: var(--color-brand-orange);
}
.fase-teens .crono-toggle-btn {
  color: white;
}
.fase-teens .crono-toggle-btn:hover {
  color: var(--color-brand-orange);
}

.crono-toggle-icon {
  transition: transform 0.3s;
  width: 24px;
  height: 24px;
}
.crono-toggle-btn.open .crono-toggle-icon {
  transform: rotate(180deg);
}

.crono-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
.crono-content.open {
  max-height: 2000px;
  opacity: 1;
  margin-top: 2rem;
}

.crono-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.crono-fase-item {
  position: relative;
  padding-left: 20px;
  display: flex;
  gap: 1rem;
  align-items: stretch;
}
.crono-fase-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: -24px;
  width: 2px;
  background-color: currentColor;
  opacity: 0.3;
}
.crono-fase-item:last-child::before {
  display: none;
}

.crono-fase-dot {
  position: absolute;
  left: -4px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: currentColor;
}

.crono-date-box {
  background: white;
  border: 2px solid;
  border-radius: 0.75rem;
  overflow: hidden;
  text-align: center;
  width: 4rem;
  flex-shrink: 0;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
  .crono-date-box { width: 5rem; }
}

.crono-date-day {
  color: white;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .crono-date-day { font-size: 10px; }
}

.crono-date-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 0.5rem 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .crono-date-num { font-size: 1.5rem; }
}

/* Colors for kids */
.fase-kids .crono-date-box {
  border-color: var(--color-brand-blue);
}
.fase-kids .crono-date-day {
  background-color: var(--color-brand-blue);
}
.fase-kids .crono-date-num {
  color: var(--color-brand-blue);
}

/* Colors for teens */
.fase-teens .crono-date-box {
  border-color: var(--color-brand-orange);
}
.fase-teens .crono-date-day {
  background-color: var(--color-brand-orange);
}
.fase-teens .crono-date-num {
  color: var(--color-brand-orange);
}

.crono-item-content {
  padding-top: 0.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.crono-item-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .crono-item-title { font-size: 1.25rem; }
}

.fase-kids .crono-item-title {
  color: var(--color-brand-blue);
}
.fase-teens .crono-item-title {
  color: white;
}

.crono-item-sub {
  font-weight: 700;
  font-size: 0.875rem;
}
.crono-item-sub.orange { color: var(--color-brand-orange); }
.crono-item-sub.blue { color: var(--color-brand-blue); }
.crono-item-sub.white { color: white; }

.crono-micro {
  background-color: var(--color-brand-orange);
  color: white;
  font-size: 8px;
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 1024px) {
  .crono-micro { font-size: 9px; }
}

.crono-highlight {
  background-color: var(--color-brand-orange);
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  display: inline-block;
}
.crono-highlight-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .crono-highlight-title { font-size: 1.25rem; }
}
.crono-highlight-sub {
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: block;
  letter-spacing: 0.1em;
}

.crono-note {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}
.fase-kids .crono-note {
  color: var(--color-brand-orange);
}
.fase-teens .crono-note {
  color: rgba(255,255,255,0.6);
}

/* ================= LOGÍSTICA SECTION ================= */
.logistica-section {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: var(--bg-color);
}
@media (min-width: 768px) {
  .logistica-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.logistica-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 6rem;
}

.logistica-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--color-brand-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  .logistica-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .logistica-title { font-size: 4.5rem; }
}

.logistica-subtitle {
  color: var(--color-brand-orange);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
@media (min-width: 768px) {
  .logistica-subtitle { font-size: 1.25rem; }
}

.logistica-desc {
  color: var(--text-gray-700);
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .logistica-desc { font-size: 1.125rem; }
}

/* Grid */
.logistica-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .logistica-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .logistica-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Logística Card */
.logistica-card-wrap {
  position: relative;
  height: 255px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .logistica-card-wrap { height: 340px; }
}

.logistica-outer-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  filter: blur(16px);
  opacity: 0.4;
  transition: opacity 0.5s;
  z-index: 0;
}
.scroll-active .logistica-outer-glow { opacity: 1; }

.logistica-card-container {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(90deg, #ff4713, #0019ec, #ff4713, #0019ec);
  padding: 2px;
  z-index: 10;
  transition: transform 0.5s;
}
.scroll-active .logistica-card-container,
.logistica-card-wrap:hover .logistica-card-container {
  transform: translateY(-0.5rem);
}

.logistica-card {
  background: #16181a;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.logistica-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1);
  transition: all 0.7s;
  z-index: 0;
}
.scroll-active .logistica-bg-img,
.logistica-card-wrap:hover .logistica-bg-img {
  opacity: 1;
  transform: scale(1.07);
}

.logistica-grad-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,6,60,0.95), rgba(0,25,236,0.5), transparent);
  opacity: 0.8;
  transition: opacity 0.5s;
  z-index: 0;
  border-radius: 0 0 14px 14px;
}
.scroll-active .logistica-grad-overlay,
.logistica-card-wrap:hover .logistica-grad-overlay {
  opacity: 1;
}

.logistica-icon {
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 10;
}
.scroll-active .logistica-icon,
.logistica-card-wrap:hover .logistica-icon {
  color: white;
}

.logistica-content {
  position: relative;
  z-index: 10;
}

.logistica-label {
  color: var(--color-brand-orange);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.logistica-title {
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.5s;
  text-transform: uppercase;
}
.scroll-active .logistica-title,
.logistica-card-wrap:hover .logistica-title {
  transform: translateX(0.75rem);
}

/* ================= CTA FINAL ================= */
.cta-final {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .cta-final {
    padding-top: 350px;
    padding-bottom: 5px;
    background-color: transparent;
  }
}
@media (min-width: 1024px) {
  .cta-final { padding-top: 450px; }
}

.cta-final-bg {
  display: none;
  position: absolute;
  inset: 0;
  background-image: url('./assets/img_ctafinal3.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
@media (min-width: 768px) {
  .cta-final-bg { display: block; }
}

.cta-final-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.cta-final-card {
  background-color: var(--color-brand-blue);
  border-radius: 2.5rem;
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .cta-final-card { padding: 4rem; }
}

.cta-final-card:hover {
  transform: translateY(-0.5rem) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,25,236,0.6);
}

.cta-final-grad1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, transparent, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
  opacity: 0;
  transition: opacity 0.7s;
  pointer-events: none;
  z-index: 0;
}
.cta-final-card:hover .cta-final-grad1 {
  opacity: 1;
}

.cta-final-grad2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #0019ec, #000b75, #0019ec, #00085c);
  background-size: 400% 400%;
  animation: gradient-shift 6s ease infinite;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 0;
}
.scroll-active .cta-final-grad2 { opacity: 1; }

.cta-final-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .cta-final-title { font-size: 4.5rem; }
}

.cta-final-desc {
  color: #dbeafe;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .cta-final-desc { font-size: 1.5rem; }
}

.cta-final-btn {
  background-color: white;
  color: var(--color-brand-blue);
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transition: all 0.3s;
  display: inline-block;
  margin-bottom: 2.5rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 640px) {
  .cta-final-btn { width: auto; font-size: 1rem; padding: 1rem 1.5rem; }
}
@media (min-width: 768px) {
  .cta-final-btn { font-size: 1.5rem; padding: 1.5rem 3rem; }
}
.cta-final-btn:hover { background-color: var(--bg-color); }

.cta-final-note {
  font-size: 0.75rem;
  color: rgba(219,234,254,0.7);
  font-weight: 500;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.25;
  text-align: center;
}

/* ================= FOOTER ================= */
.footer {
  background-color: white;
  padding: 5rem 0;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-logo img {
  height: 4rem;
  object-fit: contain;
}

.footer-slogan {
  color: var(--text-gray-600);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-size: 0.875rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--color-brand-blue);
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .footer-nav { flex-direction: row; gap: 5rem; }
}
.footer-nav a { transition: color 0.3s; }
.footer-nav a:hover { color: var(--color-brand-orange); }

.footer-info {
  color: var(--text-gray-400);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-info { font-size: 0.75rem; }
}

.footer-img {
  padding-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-img img {
  height: 1.5rem;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.8;
}
@media (min-width: 1024px) {
  .footer-img img {
    max-width: none;
    height: 22px;
    width: auto;
  }
}
