:root {
  --cfgs-ink: #111827;
  --cfgs-navy: #182234;
  --cfgs-blue: #233c56;
  --cfgs-blue-deep: #172338;
  --cfgs-teal: #2f8790;
  --cfgs-teal-deep: #1e5261;
  --cfgs-plum: #604d73;
  --cfgs-plum-deep: #443653;
  --cfgs-gold: #d9a94f;
  --cfgs-white: #ffffff;
  --cfgs-text: rgba(255, 255, 255, 0.76);
  --cfgs-muted: rgba(255, 255, 255, 0.58);
  --cfgs-line: rgba(255, 255, 255, 0.14);
  --cfgs-panel: rgba(255, 255, 255, 0.075);
  --cfgs-panel-strong: rgba(255, 255, 255, 0.105);
  --cfgs-focus: rgba(217, 169, 79, 0.58);
  --cfgs-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.13);
  --cfgs-radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body,
input,
select,
textarea {
  background: var(--cfgs-ink);
  color: var(--cfgs-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  border-bottom-color: rgba(217, 169, 79, 0.42);
  color: rgba(255, 255, 255, 0.82);
}

a:hover {
  color: var(--cfgs-white);
}

a:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--cfgs-focus);
  outline-offset: 3px;
}

::selection {
  background: rgba(217, 169, 79, 0.32);
  color: var(--cfgs-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--cfgs-white);
  letter-spacing: 0;
}

p {
  color: var(--cfgs-text);
}

.language-buttons {
  align-items: center;
  background: rgba(17, 24, 39, 0.76);
  border: 1px solid var(--cfgs-line);
  border-radius: 999px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.22);
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem;
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 10001;
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .language-buttons {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.language-buttons .button {
  border-color: rgba(255, 255, 255, 0.26) !important;
  font-size: 0.72rem;
  height: 2.5rem;
  letter-spacing: 0;
  line-height: 2.5rem;
  padding: 0 0.95rem;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.language-buttons .button.primary {
  background: var(--cfgs-gold);
  color: var(--cfgs-ink) !important;
}

.language-buttons .button:hover {
  transform: translateY(-1px);
}

#sidebar {
  background: var(--cfgs-ink);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
}

#sidebar nav a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0;
  padding: 1.15em 0;
}

#sidebar nav a:before,
#sidebar nav a:after {
  height: 0.16em;
}

#sidebar nav a:before {
  background: rgba(255, 255, 255, 0.12);
}

#sidebar nav a:after {
  background-image: linear-gradient(to right, var(--cfgs-teal), var(--cfgs-gold));
}

#sidebar nav a:hover {
  color: rgba(255, 255, 255, 0.82);
}

#sidebar nav a.active {
  color: var(--cfgs-white);
}

.wrapper > .inner {
  max-width: 100%;
  width: 74em;
}

.wrapper {
  overflow: hidden;
}

.wrapper:not(#intro):before {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.55;
  position: absolute;
  right: 0;
  top: 0;
}

.wrapper.style1 {
  background: linear-gradient(145deg, var(--cfgs-blue) 0%, var(--cfgs-blue-deep) 100%);
}

.wrapper.style1-alt {
  background: #121b2a;
}

.wrapper.style2 {
  background: linear-gradient(145deg, #205462 0%, var(--cfgs-teal-deep) 100%);
}

.wrapper.style2-alt {
  background: #183f4b;
}

.wrapper.style3 {
  background: linear-gradient(145deg, var(--cfgs-plum) 0%, var(--cfgs-plum-deep) 100%);
}

.wrapper.style3-alt {
  background: #4d3d5c;
}

.wrapper > .inner > h2 {
  margin-bottom: 1.25em;
  padding-bottom: 0.5em;
  position: relative;
}

.wrapper > .inner > h2:after {
  background: linear-gradient(to right, var(--cfgs-gold), var(--cfgs-teal));
  border-radius: 999px;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 4rem;
}

#intro {
  background-color: #132033;
  background-blend-mode: normal;
  background-image:
    linear-gradient(110deg, rgba(17, 24, 39, 0.12) 0%, rgba(24, 34, 52, 0.25) 55%, rgba(24, 34, 52, 0.50) 100%),
    url("../../images/containerShip.jpg");
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  isolation: isolate;
}

#intro:after {
  background: linear-gradient(to bottom, transparent 64%, rgba(17, 24, 39, 0.) 100%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

#intro .inner {
  position: relative;
  width: 74em;
  z-index: 1;
}

.inner-flex-end {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  text-align: right;
}

.logo {
  filter: drop-shadow(0 1.5rem 2.5rem rgba(0, 0, 0, 0.34));
  height: auto;
  margin-bottom: 1.5rem;
  max-height: 18rem;
  max-width: 44%;
  object-fit: contain;
  width: 18rem;
}

#intro h1 {
  font-size: 3.25rem;
  line-height: 1.12;
  margin-bottom: 0.35em;
  text-shadow: 0 0.35rem 1.4rem rgba(0, 0, 0, 0.42);
}

#intro p {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: bold;
  line-height: 1.45;
  margin-left: auto;
  max-width: 34rem;
  text-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.45);
}

.spotlights > section {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  min-height: 21em;
}

.spotlights > section:first-child {
  border-top: 0;
}

.spotlights > section > .image {
  background-color: rgba(17, 24, 39, 0.24);
  background-repeat: no-repeat;
  overflow: hidden;
  width: 24em;
}

.spotlights > section > .image:after {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.34));
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.spotlights > section > .image.company-mark {
  background-color: rgba(255, 255, 255, 0.94);
  background-size: 74%;
}

.spotlights > section > .image.company-mark:after {
  background: none;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.05);
}

.spotlights > section > .content {
  padding-bottom: 3.25em;
  padding-top: 3.25em;
}

.spotlights > section > .content > .inner {
  max-width: 42rem;
}

.spotlights h2 {
  margin-bottom: 0.45em;
}

.spotlights p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.features {
  background: transparent;
  border: 0;
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.features section {
  background: linear-gradient(180deg, var(--cfgs-panel-strong), var(--cfgs-panel));
  border: 1px solid var(--cfgs-line) !important;
  border-radius: var(--cfgs-radius);
  box-shadow: var(--cfgs-shadow);
  min-height: 15rem;
  padding: 2.15rem 2rem 1.35rem 5.75rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: calc(50% - 0.5rem);
}

.features section:hover {
  background: rgba(255, 255, 255, 0.105);
  border-color: rgba(217, 169, 79, 0.38) !important;
  box-shadow: 0 1.25rem 2.8rem rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.features section .icon {
  left: 2rem;
  top: 2rem;
}

.icon.major {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.16);
}

.wrapper.style1 .icon.major:before,
.wrapper.style2 .icon.major:before,
.wrapper.style3 .icon.major:before {
  color: var(--cfgs-teal);
}

.features h3 {
  line-height: 1.35;
  margin-bottom: 0.55em;
}

.features p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

#menuOurStrong > .inner > ul {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

#menuOurStrong > .inner > ul > li {
  background: linear-gradient(180deg, var(--cfgs-panel-strong), var(--cfgs-panel));
  border: 1px solid var(--cfgs-line);
  border-left: 3px solid rgba(217, 169, 79, 0.58);
  border-radius: var(--cfgs-radius);
  box-shadow: var(--cfgs-shadow);
  color: var(--cfgs-text);
  padding: 1.4rem;
}

#menuOurStrong > .inner > ul > li > ul {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

#menuOurStrong > .inner > ul > li > ul > li {
  margin: 0;
  padding-left: 1.25rem;
  position: relative;
}

#menuOurStrong > .inner > ul > li > ul > li:before {
  background: var(--cfgs-gold);
  border-radius: 999px;
  content: "";
  height: 0.45rem;
  left: 0;
  position: absolute;
  top: 0.68em;
  width: 0.45rem;
}

#menuOurStrong .box.alt {
  margin: 0;
}

#menuOurStrong .box.alt p {
  color: var(--cfgs-white);
  font-weight: bold;
  margin: 0 0 0.95rem;
}

#menuOurStrong .row {
  gap: 1rem;
  margin-left: 0;
}

#menuOurStrong .row > * {
  padding-left: 0;
}

#menuOurStrong .row > .col-3,
#menuOurStrong .row > .col-5 {
  flex: 1 1 10rem;
  width: auto;
}

#menuOurStrong .image.fit {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--cfgs-radius);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 6.25rem;
  padding: 1rem;
}

#menuOurStrong .image.fit img {
  max-height: 4.3rem;
  object-fit: contain;
  width: 100%;
}

#menuContacts .split {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.055));
  border: 1px solid var(--cfgs-line);
  border-radius: var(--cfgs-radius);
  box-shadow: var(--cfgs-shadow);
  padding: 2rem;
}

#menuContacts .split > :nth-child(2n - 1) {
  border-right-color: rgba(255, 255, 255, 0.12);
}

#menuContacts .split > section:first-child {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

#menuContacts h2 {
  margin-bottom: 0.9em;
  padding-bottom: 0.5em;
  position: relative;
}

#menuContacts h2:after {
  background: linear-gradient(to right, var(--cfgs-gold), var(--cfgs-teal));
  border-radius: 999px;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 4rem;
}

#menuContacts .contact h3 {
  color: var(--cfgs-white);
  font-size: 0.92rem;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

#menuContacts .whatsapp-promo {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(47, 135, 144, 0.12));
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 14px;
  box-shadow: var(--cfgs-shadow);
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
}

#menuContacts .whatsapp-promo-link {
  align-items: center;
  display: flex;
  gap: 0.95rem;
  border-bottom: 0;
  text-decoration: none;
}

#menuContacts .whatsapp-promo-link:hover {
  border-bottom: 0;
}

#menuContacts .whatsapp-promo-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 3.5rem;
  justify-content: center;
  min-height: 3.5rem;
  width: 3.5rem;
}

#menuContacts .whatsapp-promo-logo img {
  display: block;
  height: 2.2rem;
  object-fit: contain;
  width: 2.2rem;
}

#menuContacts .whatsapp-promo-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

#menuContacts .whatsapp-promo-copy strong {
  color: var(--cfgs-white);
  font-size: 1rem;
  letter-spacing: 0;
}

#menuContacts .whatsapp-promo-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

#menuContacts .contact-item {
  align-items: stretch;
  display: flex;
  gap: 1rem;
}

#menuContacts .contact-icon {
  align-items: center;
  color: var(--cfgs-gold);
  display: flex;
  flex: 0 0 4.75rem;
  justify-content: center;
  min-height: 100%;
  border-bottom: 0;
  text-decoration: none;
}

#menuContacts .contact-icon:hover {
  border-bottom: 0;
}

#menuContacts .contact-item--whatsapp .contact-icon {
  background: rgba(37, 211, 102, 0.14);
  border-radius: 16px;
  color: #25d366;
}

#menuContacts .contact-icon--whatsapp img {
  display: block;
  height: 2.7rem;
  object-fit: contain;
  width: 2.7rem;
}

#menuContacts .contact-icon .icon {
  font-size: 2rem;
  line-height: 1;
}

#menuContacts .contact-copy {
  min-width: 0;
}

#menuContacts .contact-copy h3 {
  margin-bottom: 0.25rem;
}

#menuContacts .split.style1 > :nth-child(2n - 1) {
  width: calc(40% - 2.5em);
}

#menuContacts .split.style1 > :nth-child(2n) {
  width: calc(60% - 2.5em);
}

#menuContacts .contact span,
#menuContacts .contact a {
  color: rgba(255, 255, 255, 0.72);
}

#menuContacts .contact a:hover {
  color: var(--cfgs-white);
}

ul.contact > li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.1rem;
  padding-top: 1.1rem;
}

ul.contact > li:first-child {
  border-top: 0;
  padding-top: 0;
}

@media screen and (max-width: 736px) {
  #menuContacts .whatsapp-promo-link {
    align-items: flex-start;
  }

  #menuContacts .whatsapp-promo-logo {
    flex-basis: 3rem;
    min-height: 3rem;
    width: 3rem;
  }

  #menuContacts .whatsapp-promo-logo img {
    height: 1.9rem;
    width: 1.9rem;
  }
}

.div-arrow {
  min-height: 16rem;
  opacity: 0.86;
  width: 100%;
}

.arrow span {
  border-bottom-color: var(--cfgs-gold) !important;
  border-right-color: var(--cfgs-gold) !important;
  height: 3rem !important;
  width: 3rem !important;
}

#footer {
  background: var(--cfgs-ink);
}

#footer > .inner .menu {
  color: rgba(255, 255, 255, 0.42);
}

@media screen and (max-width: 1280px) {
  .language-buttons {
    top: 4.25rem;
  }

  #sidebar {
    box-shadow: 0 0.75rem 1.7rem rgba(0, 0, 0, 0.16);
  }

  #sidebar nav ul {
    max-width: 100vw;
    overflow-x: auto;
    padding: 0 1rem;
  }

  #sidebar nav ul li {
    margin-left: 1.2em;
  }

  #sidebar nav a {
    font-size: 0.65rem;
    padding: 0 0.1rem;
    white-space: nowrap;
  }

  #intro h1 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 980px) {
  .inner-flex-end {
    align-items: center;
    margin-left: 0;
    text-align: center;
  }

  .logo {
    max-width: 18rem;
    width: 58%;
  }

  #intro p {
    margin-left: 0;
  }

  .spotlights > section > .image.company-mark {
    background-size: 16rem;
  }

  .features {
    display: block;
  }

  .features section {
    margin-top: 1rem;
    width: 100%;
  }

  .features section:first-child {
    margin-top: 0;
  }

  #menuContacts .split {
    padding: 1.5rem;
  }

  #menuContacts .split > section:first-child {
    text-align: center;
  }

  #menuContacts h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 736px) {
  .language-buttons {
    right: 0.75rem;
    top: 0.75rem;
  }

  .language-buttons .button {
    font-size: 0.68rem;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 0.8rem;
  }

  #intro {
    min-height: 100vh;
    padding-top: 4rem;
  }

  #intro h1 {
    font-size: 2.25rem;
  }

  .logo {
    max-width: 14rem;
    width: 70%;
  }

  .spotlights > section > .content {
    padding-bottom: 2.25em;
    padding-top: 2.6em;
  }

  .features section {
    min-height: 0;
    padding: 1.5rem;
  }

  .features section .icon {
    left: auto;
    margin-bottom: 1rem;
    position: relative;
    top: auto;
  }

  #menuOurStrong .row > .col-3,
  #menuOurStrong .row > .col-5 {
    flex-basis: 100%;
  }

  #menuContacts .split {
    padding: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  #intro h1 {
    font-size: 2rem;
  }

  #intro p {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
