/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@font-face {
  font-family: "Inter";
  src: url(/assets/fonts/Inter-VariableFont_opsz_wght.woff);
}

@font-face {
  font-family: "Canela";
  src: url(/assets/fonts/Canela-Regular-Trial.woff);
}

/* End: Fonts */

/* Reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

img {
  display: block;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
/* End: Reset */

/* Global */
:root {
  --primary: #152f47;
  --secondary: #406282;
  --white: #e0d9ca;
  --nude: #bcb3a0;
  --mouse: #8e826c;
  --accent: #d3a04c;
}

body {
  height: 200vh;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--white);
}

.lang-wrapper {
  position: absolute;
  width: auto;
  padding: 8px;
  z-index: 999;
  display: grid;
  right: 22px;
  cursor: pointer;
}

#lang-switcher {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  background: radial-gradient(
    at top,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.2)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
  backdrop-filter: blur(25px) saturate(140%);
  border-radius: 10px;
  padding: 10px;
  color: var(--primary);
}

header {
  width: calc(100% - 60px);
  height: 80px;
  border-radius: 40px;
  position: fixed;
  z-index: 999;
  top: 54px;
  left: 30px;
  background: radial-gradient(
    at top,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.2)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
  backdrop-filter: blur(25px) saturate(140%);
}

#logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#logo img {
  height: 52px;
  width: auto;
  display: block;
}

#menu {
  list-style: none;
  display: flex;
  gap: 65px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

#menu li:nth-child(2) {
  margin-right: 120px;
}
#menu li:nth-child(3) {
  margin-left: 120px;
}

#menu > li {
  position: relative;
}

#menu > li > a {
  color: var(--primary);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  display: flex;
  gap: 8px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
}

#menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.25s ease;
}
#menu > li > a:hover {
  color: var(--primary);
}
#menu > li > a:hover::after {
  width: 100%;
}

#burger-menu {
  display: none;
}

/* Mobile */

/* Hero*/

/* Mobile */

@media (max-width: 480px) {
  #lang-switcher {
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  #burger-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  #burger-menu img {
    width: 22px;
    height: 22px;
    pointer-events: none;
  }

  #logo {
    left: 20px;
    transform: translateY(-50%);
  }

  header #menu {
    position: absolute;
    left: 16px;
    right: 16px;
    width: auto;
    top: calc(100% + 10px);
    grid-template-columns: none;
    column-gap: 0;
    row-gap: 0;
    border-radius: 4px;
    transform-origin: top;
    overflow: hidden;
    transform: scaleY(0.96);
    opacity: 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
    z-index: 998;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
  }

  header #menu.open {
    display: block;
    opacity: 1;
    transform: scaleY(1);
  }

  header #menu > li {
    width: 100%;
    margin: 0;
  }

  header #menu > li + li {
    border: 0;
  }

  header #menu > li + li > a {
    border-top: 1px solid rgba(21, 47, 71, 0.1);
  }

  header #menu > li > a {
    width: 100%;
    display: block;
    padding: 16px 20px;
    text-align: left;
    box-sizing: border-box;
    margin: 0;
    color: var(--primary);
    text-decoration: none;
    font-family: "Montserrat", system-ui, -apple-system, sans-serif;
    font-weight: 500;
    text-align: left;
  }

  header #menu > li > a::after {
    display: none;
  }

  header #menu > li:nth-child(3),
  header #menu > li:nth-child(3) > a {
    margin: 0 !important;
    text-align: left !important;
    max-width: none !important;
  }
  header #menu > li:nth-child(3) > a::before,
  header #menu > li:nth-child(3) > a::after {
    content: none !important;
    display: none !important;
  }
}

/* End: Mobile */
/* End: Global*/

/* Footer */
#site-footer {
  color: var(--primary);
  font-family: "Montserrat", system-ui, sans-serif;
  margin-top: 20px;
}

#site-footer .container {
  padding-inline: 54px;
}

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 54px 28px;
}

.footer-left .footer-eyebrow {
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 40px;
  width: 272px;
  border: 1px solid rgba(21, 47, 71, 0.6);
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 20px;
}

.footer-form input {
  padding: 14px 18px;
  font: 400 18px/1.2 "Monsterrat" sans-serif;
  outline: none;
  background: var(--white);
}

.footer-form button {
  border: 0;
  display: grid;
  place-items: center;
  background: var(--white);
  cursor: pointer;
}

.footer-contact {
  display: flex;
  gap: 10px;
  align-items: start;
  margin: 12px 20px;
  max-width: 680px;
  font-size: 12px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  translate: 0 3px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-right {
  position: relative;
  padding-left: 54px;
}

.footer-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -10px;
  width: 1px;
  background: rgba(14, 35, 48, 0.18);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.8;
  margin: 0 0 14px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  text-decoration: none;
  color: inherit;
  font-size: 12px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 28px;
  gap: 16px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 54px;
  border-top: 1px solid rgba(14, 35, 48, 0.18);
  color: rgba(14, 35, 48, 0.7);
  font: 500 14px/1.6 "Montserrat", system-ui, sans-serif;
}

.footer-brand-band {
  position: relative;
  overflow: hidden;
  height: 516px;
  display: grid;
  place-items: center;
  padding: 48px 54px 72px;
  border-top: 1px solid rgba(14, 35, 48, 0.18);
  background: transparent;
}

.footer-body {
  margin-top: 170px;
  position: relative;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.footer-claim {
  margin: 0;
  max-width: 2100px;
  font: 400 clamp(16px, 2vw, 22px) / 1.35 "Montserrat", system-ui, sans-serif;
  text-align: center;
  color: var(--primary);
}

/* RWTC */
.brand-giga {
  color: var(--primary);
  font-family: "Canela", "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.9;
  font-size: clamp(180px, 36vw, 640px);
  text-align: center;
}

/* End: Footer */

/*  Mobile */

/* Footer */
@media (max-width: 480px) {
  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 16px 96px;
    text-align: left;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    align-items: start;
    justify-items: start;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-columns h4,
  .footer-columns .title {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  .footer-columns ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-columns li {
    margin: 6px 0;
    line-height: 1.4;
  }

  .footer-columns a {
    font-size: 13px;
    text-decoration: none;
  }

  .footer-right {
    border-left: none;
    padding: 0;
  }

  .footer-contact,
  .footer-contact p,
  .footer-contact a {
    font-size: 13px;
    line-height: 1.45;
  }

  .footer-right::before {
    display: none;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px 20px;
    text-align: center;
    border-top: 1px solid rgba(177, 180, 183, 0.35);
  }

  .footer-body {
    margin-top: 60px;
  }

  .footer-claim {
    font-size: 10px;
    letter-spacing: -0.1em;
  }

  .brand-giga {
    font-size: clamp(90px, 36vw, 320px);
  }
}

/* End: Footer */

/* End : Mobile */

/* Svg Whatsaap */
.wa-fab {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 1000;
}

/* End: Svg Whatsapp */

/* Carrusel */

.carousel {
  --height: 360px;
  --gap: 0;
  --speed: 45s;
  background: var(--paper, #e6dfce);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: carousel-scroll var(--speed) linear infinite;
  will-change: transform;
  padding-block: 16px;
  margin-bottom: 60px;
}

.carousel-item {
  flex: 0 0 auto;
  width: clamp(220px, 25vw, 480px);
  height: var(--height);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* End: Carrusel */

/* Mobile */

/* Carrusel */

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
  }
}

@media (max-width: 480px) {
  .carousel {
    --height: 280px;
  }
}
@media (max-width: 480px) {
  .carousel {
    --height: 220px;
  }
}

@keyframes carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* End: Carrusel */

/* Mobile */
