/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #222;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

button {
  font-family: inherit;
}

.desktop-container {
  width: 1440px;
  max-width: 100%;
  position: relative;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.hero-section {
  position: relative;
  width: 1440px;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #000;
}

.hero-video-wrap {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  display: block;
}

.language-switcher {
  align-items: center;
}

.language-switch {
  border: 0;
  background: transparent;
  color: #5b6770;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 8px;
  padding: 2px 4px;
  min-width: 36px;
  min-height: 36px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.language-switch:hover {
  color: #b22234;
}

.language-switch:focus-visible {
  outline: 2px solid #b22234;
  outline-offset: 2px;
}

.language-switch.is-active {
  color: #b22234;
  font-weight: 700;
  background: rgba(178, 34, 52, 0.1);
}

.menu-icon-btn {
  border: 0;
  background: transparent;
  line-height: 1;
  padding: 0;
}

.hero-cta {
  max-width: calc(100% - 40px);
}

.newsletter-modal-card {
  max-height: min(90dvh, 680px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(460px, calc(100vw - 32px));
  background: rgba(245, 245, 245, 0.98);
  border: 1px solid rgba(91, 103, 112, 0.25);
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  z-index: 45;
  padding: 18px;
  backdrop-filter: blur(6px);
}

.cookie-banner__content {
  margin-bottom: 14px;
}

.cookie-banner__title {
  margin: 0 0 6px;
  color: #004f6e;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
}

.cookie-banner__description {
  margin: 0;
  color: #5b6770;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  min-height: 42px;
  padding: 10px 16px;
  font-family: inherit;
}

.cookie-btn:focus-visible {
  outline: 2px solid #b22234;
  outline-offset: 2px;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--primary {
  background: #b22234;
  color: #f5f5f5;
}

.cookie-btn--primary:hover {
  background: #8f1b2a;
}

.cookie-btn--secondary {
  background: #004f6e;
  color: #f5f5f5;
}

.cookie-btn--secondary:hover {
  background: #00384f;
}

.cookie-btn--ghost {
  background: #e9edf0;
  color: #222;
}

.cookie-btn--ghost:hover {
  background: #dbe2e7;
}

.cookie-manage-btn {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 44;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 79, 110, 0.94);
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  min-height: 40px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cookie-manage-btn:hover {
  background: #00384f;
  transform: translateY(-1px);
}

.cookie-manage-btn:focus-visible {
  outline: 2px solid #b22234;
  outline-offset: 2px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}

.cookie-modal__wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal__panel {
  width: min(680px, 100%);
  max-height: min(92dvh, 760px);
  background: #f5f5f5;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #e7ebef;
  color: #5b6770;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__close:hover {
  background: #dbe1e6;
}

.cookie-modal__title {
  margin: 0 28px 8px 0;
  color: #004f6e;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.cookie-modal__description {
  margin: 0 0 20px;
  color: #5b6770;
  font-size: 15px;
  line-height: 1.55;
}

.cookie-category {
  border: 1px solid rgba(91, 103, 112, 0.22);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  margin-bottom: 12px;
}

.cookie-category--locked {
  background: #f1f5f7;
}

.cookie-category__text {
  flex: 1;
}

.cookie-category__title {
  margin: 0 0 4px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.cookie-category__description {
  margin: 0;
  color: #5b6770;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-chip {
  border-radius: 999px;
  background: #d8e7ed;
  color: #004f6e;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 10px;
  white-space: nowrap;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 30px;
  flex: 0 0 auto;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: #c6d0d8;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.cookie-toggle__slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: #b22234;
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(22px);
}

.cookie-modal__actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#sidebar-content.menu-sidebar {
  will-change: transform;
}

.servicos-anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.servicos-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.servicos-delay-1 {
  transition-delay: 0.12s;
}

.servicos-delay-2 {
  transition-delay: 0.24s;
}

.servicos-delay-3 {
  transition-delay: 0.38s;
}

.servicos-delay-4 {
  transition-delay: 0.52s;
}

.servicos-card {
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.servicos-card p {
  position: relative;
  z-index: 1;
}

.servicos-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  opacity: 0;
}

.servicos-card.is-visible::after {
  animation: servicosShine 3.8s ease-in-out 0.8s infinite;
  opacity: 1;
}

.servicos-card:hover {
  transform: translateY(-3px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

@keyframes servicosShine {
  0% {
    left: -140%;
  }
  45% {
    left: 160%;
  }
  100% {
    left: 160%;
  }
}

.sobre-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  will-change: opacity, transform;
}

.sobre-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sobre-delay-1 {
  transition-delay: 0.12s;
}

.sobre-delay-2 {
  transition-delay: 0.28s;
}

.sobre-delay-3 {
  transition-delay: 0.44s;
}

.sobre-delay-4 {
  transition-delay: 0.6s;
}

.sobre-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sobre-card p,
.sobre-card img,
.sobre-card a,
.sobre-card i {
  position: relative;
  z-index: 1;
}

.sobre-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -160%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.sobre-card.is-visible::after {
  opacity: 1;
  animation: sobreShine 8s ease-in-out 1.8s infinite;
}

.sobre-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

@keyframes sobreShine {
  0% {
    left: -160%;
  }
  50% {
    left: 170%;
  }
  100% {
    left: 170%;
  }
}

@media (max-width: 1280px) {
  body {
    background: #f5f5f5;
    display: block;
  }

  .desktop-container {
    width: 100%;
    box-shadow: none;
  }

  .hero-section,
  #servicos,
  #plataforma,
  #sobre-nos,
  .footer-section,
  .site-header,
  #sidebar-content.menu-sidebar {
    width: 100% !important;
  }

  .header-actions {
    right: 24px !important;
    gap: 20px !important;
  }

  .header-logo-wrap {
    left: 24px !important;
  }

  .header-nav-link {
    font-size: 20px !important;
  }

  .hero-cta {
    left: 50% !important;
    top: auto !important;
    bottom: 40px;
    transform: translateX(-50%);
  }

  #servicos {
    height: auto !important;
    padding: 96px 32px 88px;
  }

  #servicos > img {
    width: min(56vw, 520px) !important;
    height: auto !important;
    left: auto !important;
    right: -8vw !important;
    top: 48% !important;
  }

  #servicos .services-content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 980px;
    margin: 0 auto;
    gap: 32px !important;
  }

  #servicos .servicos-title p {
    font-size: clamp(42px, 7vw, 72px) !important;
  }

  #servicos .servicos-fade {
    font-size: clamp(24px, 3.2vw, 32px) !important;
  }

  #servicos .servicos-card p {
    font-size: clamp(22px, 3vw, 30px) !important;
  }

  #servicos .servicos-cta span {
    font-size: 22px !important;
  }

  #plataforma {
    height: auto !important;
    padding: 96px 32px 84px;
  }

  #plataforma .plataforma-layout {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    min-height: 560px;
  }

  #plataforma .plataforma-here {
    position: relative !important;
    left: 15 !important;
    top: 15 !important;
    margin: 0 auto 16px;
    width: 100%;
    text-align: left;
    display: block;
  }

  #plataforma .plataforma-question {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 0 16px auto;
    width: fit-content;
    text-align: right;
  }

  #plataforma .plataforma-circles {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 680px;
    max-width: 100%;
    height: 430px;
    margin: 0 auto;
    display: block;
  }

  #plataforma .plataforma-ring {
    width: 260px !important;
    height: 260px !important;
  }

  #plataforma .plataforma-ring-1 {
    left: 8% !important;
    top: 140px !important;
  }

  #plataforma .plataforma-ring-2 {
    left: 54% !important;
    top: 140px !important;
  }

  #plataforma .plataforma-ring-3 {
    left: 31% !important;
    top: 24px !important;
  }

  #plataforma .plataforma-label {
    font-size: 22px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  #plataforma .plataforma-label-ai {
    left: 18% !important;
    top: 188px !important;
    text-align: center;
  }

  #plataforma .plataforma-label-social {
    left: 63% !important;
    top: 210px !important;
  }

  #plataforma .plataforma-label-automation {
    left: 40% !important;
    top: 52px !important;
  }

  #plataforma .plataforma-label-brand {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 198px !important;
    font-size: 24px !important;
    text-align: center !important;
  }

  #sobre-nos {
    height: auto !important;
    padding: 88px 32px 72px;
  }

  #sobre-nos .about-content {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 1120px;
    margin: 0 auto;
    align-items: stretch !important;
  }

  #sobre-nos .about-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px !important;
    height: auto !important;
    overflow: visible !important;
  }

  #sobre-nos .team-card {
    width: 100% !important;
    height: auto !important;
  }

  #sobre-nos .team-card img {
    width: 100% !important;
    height: auto !important;
    max-width: 300px;
    aspect-ratio: 1 / 1;
  }

  #sobre-nos .about-cards > .team-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
  }

  #sobre-nos .about-nav-controls {
    grid-column: 1 / -1;
    justify-self: end;
  }

  #sobre-nos .sobre-watermark {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    justify-content: flex-start !important;
    margin: 0 auto 20px;
  }

  #sobre-nos .sobre-watermark .-rotate-90 {
    transform: none !important;
  }

  #sobre-nos .sobre-watermark p {
    font-size: 72px !important;
    white-space: normal !important;
    line-height: 1.05 !important;
  }

  .footer-section {
    height: auto !important;
    min-height: 782px;
    padding: 88px 32px 72px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section > img {
    width: min(62vw, 560px) !important;
    height: auto !important;
    left: -14vw !important;
    top: 44% !important;
  }

  .footer-section .footer-title-watermark {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    font-size: clamp(62px, 8.5vw, 108px) !important;
    white-space: normal !important;
    line-height: 1.05 !important;
    margin: 0 0 28px;
  }

  .footer-contacts {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    gap: 20px !important;
  }

  .footer-contacts a {
    font-size: clamp(22px, 3vw, 30px) !important;
    gap: 14px !important;
  }

  .footer-newsletter {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    margin-top: 34px;
    max-width: 560px !important;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: 620px;
    height: 100svh;
  }

  .site-header {
    height: 88px !important;
  }

  .hero-video-wrap {
    top: 88px !important;
    width: 100% !important;
    height: calc(100% - 88px) !important;
  }

  .header-nav-link {
    display: none;
  }

  .header-actions {
    right: 16px !important;
    gap: 12px !important;
  }

  .header-logo-wrap {
    left: 16px !important;
    height: 42px !important;
  }

  .language-switcher {
    gap: 6px !important;
  }

  .language-switch {
    font-size: 18px;
    min-width: 32px;
    min-height: 32px;
  }

  .menu-icon-btn i {
    font-size: 30px !important;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px;
    border-radius: 16px;
  }

  .cookie-banner__title {
    font-size: 16px;
  }

  .cookie-banner__description {
    font-size: 13px;
  }

  .cookie-banner__actions {
    gap: 8px;
  }

  .cookie-btn {
    flex: 1 1 100%;
    min-height: 40px;
  }

  .cookie-manage-btn {
    left: 12px;
    bottom: 12px;
    font-size: 12px;
    padding: 9px 12px;
  }

  .cookie-modal__wrap {
    padding: 14px;
  }

  .cookie-modal__panel {
    padding: 20px;
    border-radius: 16px;
  }

  .cookie-modal__title {
    font-size: 23px;
  }

  .cookie-category {
    padding: 12px;
    gap: 12px;
  }

  .cookie-category__title {
    font-size: 15px;
  }

  .cookie-category__description {
    font-size: 13px;
  }

  .cookie-modal__actions {
    margin-top: 4px;
  }

  .hero-cta {
    bottom: 22px;
    width: min(90vw, 360px);
    padding: 10px 18px !important;
    border-radius: 20px !important;
  }

  .hero-cta-text {
    font-size: 18px !important;
    text-align: center;
    white-space: normal !important;
    line-height: 1.3 !important;
  }

  #servicos {
    padding: 74px 20px 64px;
  }

  #servicos .servicos-title p {
    font-size: clamp(34px, 9vw, 52px) !important;
    line-height: 1.12 !important;
  }

  #servicos .servicos-fade {
    font-size: clamp(20px, 5vw, 27px) !important;
  }

  #servicos .servicos-card {
    width: 100%;
    padding: 14px !important;
  }

  #servicos .servicos-card p {
    font-size: clamp(19px, 4.6vw, 24px) !important;
    line-height: 1.35 !important;
  }

  #servicos .servicos-cta {
    width: 100%;
    max-width: 340px;
    padding: 12px 18px !important;
  }

  #servicos .servicos-cta span {
    font-size: 20px !important;
    white-space: normal !important;
    text-align: center;
  }

  #plataforma {
    padding: 72px 16px 64px;
  }

  #plataforma .plataforma-layout {
    min-height: 560px;
    position: relative !important;
  }

  #plataforma .plataforma-here {
    
    left: 10px !important;
    top: -420px !important;
    margin: 0 !important;
    width: auto !important;
    text-align: left !important;
    font-size: 18px !important;
  }

  #plataforma .plataforma-question {
    
    right: 10px !important;
    top: 500px !important;
    margin: 2 !important;
    width: 128px !important;
    text-align: right !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
  }
  

  #plataforma .plataforma-circles {
    width: 100%;
    max-width: 390px;
    height: 390px;
    margin: 56px auto 0;
    position: relative !important;
    display: block;
  }

  #plataforma .plataforma-ring {
    width: 220px !important;
    height: 220px !important;
  }

  #plataforma .plataforma-ring-1 {
    left: 0 !important;
    top: 150px !important;
  }

  #plataforma .plataforma-ring-2 {
    left: 170px !important;
    top: 150px !important;
  }

  #plataforma .plataforma-ring-3 {
    left: 85px !important;
    top: 18px !important;
  }

  #plataforma .plataforma-label {
    font-size: 17px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  #plataforma .plataforma-label-ai {
    left: 28px !important;
    top: 248px !important;
    width: 125px !important;
    text-align: center !important;
  }

  #plataforma .plataforma-label-social {
    left: 228px !important;
    top: 258px !important;
    width: 125px !important;
    text-align: center !important;
  }

  #plataforma .plataforma-label-automation {
    left: 123px !important;
    top: 72px !important;
    width: 145px !important;
    text-align: center !important;
  }

  #plataforma .plataforma-label-brand {
    left: 195px !important;
    top: 200px !important;
    font-size: 24px !important;
    text-align: center !important;
  }

  #sobre-nos {
    padding: 72px 16px 56px;
  }

  #sobre-nos .about-cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  #sobre-nos .about-cards > .team-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  #sobre-nos .team-card {
    padding: 18px !important;
    border-radius: 24px !important;
  }

  #sobre-nos .team-card img {
    max-width: none;
    border-radius: 18px !important;
  }

  #sobre-nos .about-nav-controls {
    justify-content: center !important;
  }

  #sobre-nos .sobre-watermark p {
    font-size: 44px !important;
  }

  .footer-section {
    padding: 72px 16px 56px;
    min-height: auto;
  }

  .footer-section > img {
    width: 78vw !important;
    left: -24vw !important;
    top: 42% !important;
  }

  .footer-section .footer-title-watermark {
    font-size: 42px !important;
    margin-bottom: 20px;
  }

  .footer-contacts {
    width: 100%;
  }

  .footer-contacts a {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center !important;
    width: 100%;
    font-size: 20px !important;
    gap: 12px !important;
  }

  .footer-contacts a > span:first-child {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
  }

  .footer-contacts a > span:last-child {
    width: auto !important;
    height: auto !important;
    min-width: 0;
    line-height: 1.25;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .footer-contacts a i {
    font-size: 22px !important;
  }

  .footer-newsletter {
    width: 100%;
    max-width: 100% !important;
    margin-top: 28px;
  }

  .footer-newsletter h3 {
    font-size: 28px !important;
  }

  .footer-newsletter p {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .footer-newsletter button {
    width: 100%;
    font-size: 19px !important;
    padding: 12px 18px !important;
  }

  #modal-newsletter .newsletter-modal-card {
    width: min(460px, 100%);
    max-height: 88dvh;
    padding: 20px !important;
    border-radius: 14px !important;
  }

  #modal-newsletter h2 {
    font-size: 20px !important;
  }

  #modal-newsletter p {
    font-size: 14px !important;
  }

  #sidebar-content.menu-sidebar {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    padding-top: 104px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 20px !important;
    box-sizing: border-box;
    border-left: none !important;
  }

  #sidebar-content.menu-sidebar .sidebar-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 88px !important;
    z-index: 60 !important;
    background: #f5f5f5 !important;
  }

  .sidebar-logo-wrap {
    left: 16px !important;
  }

  #menu-close-btn {
    right: 16px !important;
  }

  #sidebar-content.menu-sidebar .sidebar-link {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 140px !important;
    margin: 0 0 12px 0 !important;
    padding: 18px !important;
    border-radius: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transform: none !important;
  }

  #sidebar-content.menu-sidebar .sidebar-link:last-child {
    margin-bottom: 0 !important;
  }

  #sidebar-content.menu-sidebar .sidebar-link p {
    font-size: 22px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  #sidebar-content.menu-sidebar .sidebar-link i {
    font-size: 28px !important;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 88px !important;
    background: #000 !important;
  }

  .hero-video-wrap {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    overflow: hidden !important;
    background: #000 !important;
  }

  .hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: scale(1.18) translateY(-32px) !important;
    display: block !important;
  }
}
