/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Space+Grotesk:wght@300..700&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --t-yellow: #fec715;
  --ty-light: #ffbf69;
  --t-green: #2ec4b6;
  --tg-light: #cbf3f0;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --tb-light: #1b263b;
  --t-black: #1c1d20;
  --the-grey: #f6f7f9;
  /* --light-white: #1c1d20; */
  --light-green: #f1faf1;
  --light-blue: #bebae8;
  --light-pink: #f9b5cd;
  --text-grey: #444950;
  --light-grey: #ebebeb;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "Inter Tight", sans-serif;
  --sos-font: "Source Sans 3", sans-serif;
  --pop-font: "Poppins", sans-serif;
  --cor-font: "Cormorant Upright", serif;
  --spa-font: "Space Grotesk", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
}

/*========== BASE SECTION ==========*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
  overflow: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

/* Remove default margin */
body,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-family: var(--pri-font);
  font-size: var(--fs-1);
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--spa-font);
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background-color: var(--white);
  color-scheme: light dark;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

li {
  display: inline;
}

a {
  text-decoration: none;
  color: var(--black);
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--mb-8);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

button {
  width: auto;
  height: auto;
  padding: var(--mb-0-75) 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--body-font);
  color: var(--black);
  text-align: center;
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pri-btn {
  width: auto;
  background: transparent;
  border: 1px var(--t-black) solid;
  border-radius: 30px;
  color: var(--t-black);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--mb-0-5);
}

.pri-btn:hover {
  background-color: var(--t-black);
  color: var(--white);
}

.pri-btn span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--t-yellow);
  animation: fade 0.3s ease-in-out;
}

.pri-btn:hover span {
  background-color: mediumseagreen;
  width: 30px;
  border-radius: 20px;
}

.pri-alt-btn {
  width: auto;
  background: transparent;
  border: 1px var(--white) solid;
  border-radius: 30px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: var(--mb-0-5);
}

.pri-alt-btn:hover {
  background-color: var(--white);
  color: var(--t-black);
}

.pri-alt-btn span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--t-yellow);
  animation: fade 0.3s ease-in-out;
}

.pri-alt-btn:hover span {
  background-color: mediumseagreen;
  width: 30px;
  border-radius: 20px;
}

/*========== MEDIA (ANIMATIONS, TRNASITIONS AND SMOOTH SCROLL) ==========*/
/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

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

/*========== ANIMATIONs (FADE, SCROLL) ==========*/
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeY {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeYrev {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeX {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* Keyframes for vertical scroll animation  */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%); /* Move up by full height of container */
  }
}

/* Keyframe animation to move the wrapper from right to left */
@keyframes nav-left {
  0% {
    transform: translateX(100%); /* Start from right outside the container */
  }
  100% {
    transform: translateX(-100%); /* Move to the left end of the wrapper */
  }
}

.scroller__inner {
  display: flex;
  padding-block: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 100s)
    var(--_animation-direction, forwards) linear infinite;
  animation-delay: 1s;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}
.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="slow"] {
  --_animation-duration: 20s;
}
.scroller[data-speed="fast"] {
  --_animation-duration: 10s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.scroller[data-animated="true"]
  .scroller__inner:has(img:hover, img:active, img:focus) {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/* img:hover,
img:focus,
img:active {
  transform: scale(1.1);
  filter: saturate(1.5);
} */

/* animation: fade 0.5s ease-in-out; */

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 2rem;
  bottom: -5rem;
  background-color: var(--secondary-blue);
  opacity: 0.9;
  padding: var(--mb-0-5);
  border-radius: 0.4rem;
  z-index: 1.1;
  transition: 0.4s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollup:hover {
  opacity: 1;
  bottom: 2.35rem;
  /* background-color: var(--primary-pink); */
}

.scrollup__icon {
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .scrollup:hover .scrollup__icon {
  color: var(--primary-pink);
} */

/* Show scroll */
.show-scroll {
  bottom: 2rem;
}

/* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--mb-2);
  z-index: 30;
  background-color: var(--white);
  /* border: 1px tomato solid; */
}

.header.active {
  box-shadow: rgba(33, 35, 38, 0.1) 0px 15px 10px -10px;
}

.lp-page .header {
  width: auto;
  top: var(--mb-2);
  padding: 0;
  left: 51%;
  transform: translate(-50%, 0);
  background: transparent;
}

.cc-page .header {
  background: transparent;
}

.nav {
  width: 100%;
  justify-content: space-between;
  padding: var(--mb-1) 0;
  /* border: 1px dodgerblue solid; */
}

/* .nav.active {
  box-shadow: rgba(33, 35, 38, 0.1) 0px 15px 10px -10px;
} */

.lp-page .nav {
  justify-content: center;
  border: none;
}

.nav-logo {
  flex: 0 0 auto;
  animation: fade 0.3s ease-in-out;
  /* border: 1px red solid; */
}

/* .nav.active .nav-logo {
  display: none;
} */

.nav-logo img {
  width: 120px;
  object-fit: cover;
}

.lp-page .nav-logo img {
  width: 120px;
}

/* .wk-page .nav-logo img {
  width: 50px;
} */

.nav-btn {
  /* border: 1px lime solid; */
  padding: var(--mb-0-5);
  background-color: gold;
  border-radius: 50%;
  cursor: pointer;
}

.nav-btn span {
  font-size: var(--fs-1-5);
  transition: unset;
  font-weight: 600;
  color: var(--t-black);
}

.nav-btn:hover {
  background-color: var(--black);
  color: gold;
}

.nav-btn:hover span {
  color: gold;
}

.cc-page .nav-btn {
  background-color: var(--t-black);
}

.cc-page .nav-btn span {
  color: gold;
}

.cc-page .nav-btn:hover {
  background-color: var(--white);
}

.cc-page .nav-btn:hover span {
  color: var(--t-black);
}

.lp-page .nav-btn {
  display: none;
}

.nav-open {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: var(--mb-3);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: gold;
  z-index: 55;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  cursor: pointer;
  overflow: hidden;
  animation: blinker 3s linear infinite;
}

.nav-open img {
  width: 80%;
}

.nav-open p {
  font-weight: 600;
  text-align: center;
  font-family: var(--spa-font);
}

.nav-open span {
  color: var(--t-black);
  font-size: var(--fs-1-5);
  font-weight: 600;
}

.nav-open:hover {
  background-color: var(--t-yellow);
  margin-bottom: var(--mb-0-25);
  animation: unset;
}

.ab-page .nav-open,
.cs-page .nav-open,
.wk-page .nav-open,
.cc-page .nav-open {
  left: unset;
  bottom: unset;
  right: 0.5rem;
  top: var(--mb-1-5);
  padding: var(--mb-0-5);
  width: 45px;
  height: 45px;
  animation: unset;
}

.ab-page .nav-open p,
.cs-page .nav-open p {
  font-size: 0.7rem;
}

/* --------------- ========== NAV MODAL ========== ---------------*/
.nm {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.2);
  align-items: flex-end;
  backdrop-filter: blur(2px);
  --webkit-backdrop-filter: blur(2px);
  animation: fadeY 0.4s ease-in-out;
  z-index: 40;
  display: none;
}

.nm.active {
  display: flex;
}

.nm-container {
  position: relative;
  width: 100%;
  background-color: var(--black);
  padding: var(--mb-2);
  justify-content: flex-start;
  row-gap: var(--mb-4);
}

.nm-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.03;
  z-index: 2;
}

.ab-page .nm-container,
.wk-page .nm-container {
  width: 100%;
  row-gap: var(--mb-3);
}

.nm-menu {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3;
}

.nmm {
  flex: 0 0 23%;
  /* border: 1px teal solid; */
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-25);
  transition: all 0.3s ease;
}

.nmm:hover {
  transform: translateY(5px);
}

.nmm p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-5);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--spa-font);
  transition: all 0.3s ease;
}

.nmm p span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--t-yellow);
  animation: fade 0.3s ease-in-out;
  display: none;
}

.nmm:hover p span {
  display: flex;
}

.nmm img {
  width: 100%;
  height: 160px;
  border-radius: 6px;
  object-fit: cover;
  overflow: hidden;
  background-color: #fafafa;
}

.nmm.active span {
  display: flex;
  background-color: mediumseagreen;
}

.nm-partner {
  width: auto;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 3;
  /* border-top: 3px dashed gold; */
}

.nmp-wrapper {
  display: flex;
  width: auto;
  justify-content: flex-start;
  column-gap: var(--mb-2);
}

.nmp {
  flex: 0 0 auto;
  padding: var(--mb-0-75);
  cursor: pointer;
  overflow: hidden;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

/* .nmp:nth-child(2) {
  padding: var(--mb-0-5);
  border: 2px red solid;
  background-color: thistle;
} */

.nmp img {
  height: 40px;
  max-height: 50px;
  object-fit: contain;
  /* filter: grayscale(20);
  opacity: .8; */
}

.nm-foot {
  width: 100%;
  /* border: 1px teal solid; */
  justify-content: space-between;
  margin-top: var(--mb-2);
  z-index: 3;
}

.ab-page .nm-foot {
  margin: 0;
}

.nmf {
  flex: 0 0 auto;
  justify-content: flex-start;
  column-gap: 1rem;
}

.nmf a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-5);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--spa-font);
  transition: all 0.2s ease;
}

.nmf a span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  animation: fade 0.2s ease-in-out;
  transform: translateY(-1px);
}

.nmf a:hover span {
  background-color: var(--t-yellow);
}

.nmf-hi {
  flex: 0 0 auto;
  justify-content: flex-end;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.nmfh {
  padding: var(--mb-0-75) var(--mb-1-5);
  border: 2px mediumseagreen solid;
  border-radius: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-75);
  /* animation: blinker 1.5s linear infinite; */
  cursor: pointer;
}

.nmfh p {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--spa-font);
}

#nmfh-go {
  color: var(--white);
  font-size: var(--fs-1-5);
  transform: translateY(-1px);
  font-weight: 500;
  display: none;
}

.nmfh-wa {
  /* color: limegreen; */
  color: var(--white);
  font-size: 1.3rem;
  padding-bottom: 0.15rem;
}

.nmfh:hover {
  animation: unset;
  background-color: mediumseagreen;
}

/* 
.nmfh:hover p {
  color: limegreen;
}

.nmfh:hover .nmfh-wa {
  color: limegreen;
} */

/* --------------- ========== MANIFEST MODAL ========== ---------------*/
.mt {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  justify-content: flex-start;
  z-index: 70;
  animation: fadeX 0.3s ease-in-out;
  display: none;
}

.mt.active {
  display: flex;
}

.mt-container {
  width: 75%;
  height: 100%;
  background-color: var(--black);
  background-image: url(/assets/img/brand/pat-col-clr.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mt-content {
  width: 100%;
  height: 100%;
  padding: var(--mb-3) var(--mb-4);
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2-5);
}

.mtc-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-5);
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--spa-font);
  transition: all 0.3s ease;
}

.mtc-label span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--t-yellow);
  animation: fade 0.3s ease-in-out;
}

.mtc {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.mtc > p {
  width: 90%;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1.2;
  font-family: var(--spa-font);
}

.mtc > p span {
  font-family: var(--cor-font);
  font-size: 2.35rem;
  color: var(--t-yellow);
  font-weight: 400;
  font-style: italic;
  margin: 0 var(--mb-0-25);
}

.mtc-btn {
  width: 100%;
  justify-content: flex-start;
}

.mtc-btn button {
  font-size: 1.2rem;
  font-weight: 400;
  column-gap: var(--mb-0-75);
}

.mtc-btn button span {
  width: 15px;
  height: 15px;
}

/* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
.footer {
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--black);
  padding: var(--mb-2);
  padding-top: var(--mb-4);
  z-index: 10;
  overflow: hidden;
}

.fr-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-6);
}

.fr-media {
  width: 100%;
  height: 250px;
  align-items: flex-start;
  /* border: 2px tomato solid; */
  overflow: hidden;
  display: none;
}

.frm {
  width: 100%;
  justify-content: flex-start;
  animation: scroll-up 300s linear infinite;
}

.frm img {
  width: 100%;
  object-fit: cover;
  /* filter: invert(99%) sepia(9%) saturate(43%) hue-rotate(246deg)
    brightness(117%) contrast(100%); */
  border: none;
  outline: none;
  /* opacity: 0.8; */
}

.fr-title {
  width: 100%;
  /* border: 1px tomato solid; */
}

.fr-title h3 {
  text-align: center;
  color: var(--white);
  font-size: 13.6rem;
  font-weight: 500;
  text-align: center;
  color: gold;
  text-transform: lowercase;
  letter-spacing: -0.05em;
  line-height: 0.75;
  /* opacity: 0.8; */
  /* border: 1px lime solid; */
}

.fr-links {
  width: 100%;
  justify-content: flex-start;
}

.fr-menu {
  width: 100%;
  justify-content: space-between;
  padding-bottom: var(--mb-1-5);
  border-bottom: 1px var(--white) solid;
}

.fr-menu a,
.frs a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: var(--mb-0-5);
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--spa-font);
  transition: all 0.2s ease;
  opacity: 0.75;
}

.frs a {
  flex: 0 0 auto;
  font-size: 0.9rem;
  opacity: 0.7;
}

.fr-menu a span,
.frs a span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  animation: fade 0.2s ease-in-out;
  transform: translateY(-1px);
}

.fr-menu a:hover span,
.frs a:hover span {
  background-color: gold;
}

.fr-menu a:hover {
  opacity: 1;
}

.fr-socials {
  width: 100%;
  justify-content: space-between;
  padding-top: var(--mb-1-5);
  padding-bottom: var(--mb-0-25);
}

.fr-socials p {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  color: var(--white);
}

.frs {
  flex: 0 0 auto;
  justify-content: flex-start;
  column-gap: var(--mb-1);
}

.frs a:hover {
  opacity: 1;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 480px */
@media screen and (max-width: 480px) {
  /* Keyframes for vertical scroll animation  */
  @keyframes scroll-up {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-100%); /* Move up by full height of container */
    }
  }
  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
    z-index: 30;
    padding: 0;
    /* border: 1px tomato solid; */
  }

  .lp-page .header {
    width: auto;
    top: var(--mb-1-5);
    left: 50%;
  }

  .nav {
    width: 100%;
    padding: var(--mb-1) var(--mb-1-5);
  }

  .lp-page .nav {
    justify-content: center;
    /* border: 1px red solid; */
  }

  .nav-logo {
    flex: 0 0 auto;
  }

  .nav-logo img {
    width: 80px;
    object-fit: cover;
  }

  .lp-page .nav-logo img {
    width: 100px;
  }

  .nav-btn {
    /* border: 1px lime solid; */
    padding: var(--mb-0-5);
  }

  .nav-btn span {
    font-size: var(--fs-1);
  }

  .nav-open {
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: var(--mb-2);
    width: 50px;
    height: 50px;
  }

  .nav-open img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(286deg)
      brightness(103%) contrast(103%);
  }

  .nav-open p {
    font-weight: 600;
    text-align: center;
    font-family: var(--spa-font);
    font-size: 0.75rem;
  }

  .nav-open span {
    color: var(--t-black);
    font-size: 1.2rem;
    font-weight: 600;
  }

  .ab-page .nav-open,
  .cs-page .nav-open,
  .wk-page .nav-open,
  .cc-page .nav-open {
    left: unset;
    bottom: unset;
    right: 0;
    top: var(--mb-1);
    padding: 0;
    width: 35px;
    height: 35px;
  }

  .ab-page .nav-open.active,
  .cs-page .nav-open.active,
  .wk-page .nav-open.active,
  .cc-page .nav-open.active {
    top: var(--mb-2);
  }

  .ab-page .nav-open p,
  .cs-page .nav-open p {
    font-size: 0.7rem;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    position: relative;
    width: 100%;
    height: auto;
    background-color: var(--black);
    padding: var(--mb-2) var(--mb-1);
    padding-top: var(--mb-3);
    z-index: 10;
    overflow: hidden;
  }

  .fr-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-3);
  }

  .fr-media {
    width: 100%;
    height: 120px;
  }

  .frm {
    width: 100%;
    justify-content: flex-start;
  }

  .frm img {
    width: 100%;
  }

  .fr-title {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
  }

  .fr-title h3 {
    width: 100%;
    text-align: center;
    font-size: 7rem;
    letter-spacing: -0.05em;
    line-height: 0.85;
    /* opacity: 0.8; */
    /* border: 1px lime solid; */
  }

  .fr-links {
    width: 100%;
    justify-content: flex-start;
    margin-top: var(--mb-0-5);
  }

  .fr-menu {
    width: 100%;
    justify-content: space-between;
    padding-bottom: var(--mb-1-5);
    border-bottom: 1px var(--white) solid;
    padding-left: var(--mb-0-5);
  }

  .fr-menu a,
  .frs a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: var(--mb-0-5);
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    opacity: 0.75;
  }

  .frs a {
    flex: 0 0 auto;
    font-size: 0.8rem;
    opacity: 0.7;
  }

  .fr-menu a span,
  .frs a span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    animation: fade 0.2s ease-in-out;
    transform: translateY(-1px);
  }

  .fr-menu a:hover span,
  .frs a:hover span {
    background-color: gold;
  }

  .fr-menu a:hover {
    opacity: 1;
  }

  .fr-socials {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1-5);
    padding-top: var(--mb-1-5);
    padding-bottom: var(--mb-0-25);
  }

  .fr-socials p {
    font-size: 0.8rem;
  }

  .frs {
    flex: 0 0 auto;
    justify-content: flex-start;
    column-gap: var(--mb-1);
  }

  .frs a:hover {
    opacity: 1;
  }

  /* --------------- ========== NAV MODAL ========== ---------------*/
  .nm {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 40;
    display: none;
    overflow: hidden;
  }

  .nm.active {
    display: flex;
  }

  .nm-container {
    width: 100%;
    background-color: var(--black);
    padding: var(--mb-2) var(--mb-1-5);
    justify-content: flex-start;
    row-gap: var(--mb-2-5);
    overflow: hidden;
  }

  .lp-page .nm-container {
    padding-bottom: var(--mb-8);
  }

  .ab-page .nm-container,
  .wk-page .nm-container {
    row-gap: var(--mb-3);
  }

  .nm-menu {
    width: 100%;
    justify-content: flex-start;
    column-gap: var(--mb-1-5);
    align-items: flex-start;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }

  .nm-menu::-webkit-scrollbar {
    display: none;
  }

  .nmm {
    flex: 0 0 250px;
    row-gap: var(--mb-0-25);
    transition: all 0.3s ease;
  }

  .nmm:hover {
    transform: translateY(5px);
  }

  .nmm p {
    column-gap: var(--mb-0-5);
    font-size: 0.9rem;
  }

  .nmm p span {
    width: 6px;
    height: 6px;
    display: none;
  }

  .nmm:hover p span {
    display: flex;
  }

  .nmm img {
    width: 100%;
    height: 140px;
  }

  .nm-partner {
    width: 100%;
    justify-content: flex-start;
    overflow: hidden;
    /* border-top: 3px dashed gold; */
  }

  .nmp-wrapper {
    column-gap: var(--mb-1-5);
  }

  .nmp {
    cursor: pointer;
  }

  .nmp img {
    object-fit: contain;
    height: 20px;
    max-height: 20px;
  }

  .nm-foot {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-2);
    margin-top: 0.25rem;
    margin-bottom: 0;
  }

  .nmf {
    flex: 0 0 auto;
    justify-content: center;
    column-gap: 0.9rem;
  }

  .nmf a {
    justify-content: center;
    font-size: 0.9rem;
    text-align: center;
  }

  .nmf a span {
    width: 8px;
    height: 8px;
    transform: translateY(-1px);
  }

  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

  .nmfh {
    padding: var(--mb-0-75) var(--mb-1-5);
    border: 2px mediumseagreen solid;
    border-radius: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: var(--mb-0-75);
    animation: blinker 1.5s linear infinite;
    cursor: pointer;
  }

  .nmfh p {
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
  }

  .nmfh:hover {
    animation: unset;
    background-color: mediumseagreen;
  }

  /* --------------- ========== MANIFEST MODAL ========== ---------------*/
  .mt {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: none;
  }

  .mt.active {
    display: flex;
  }

  .mt-container {
    width: 85%;
    height: 100%;
  }

  .mt-content {
    width: 100%;
    height: 100%;
    padding: var(--mb-2);
    row-gap: var(--mb-2);
  }

  .mtc-label {
    font-size: 0.8rem;
  }

  .mtc-label span {
    width: 8px;
    height: 8px;
  }

  .mtc {
    row-gap: var(--mb-2);
  }

  .mtc > p {
    width: 95%;
    font-size: 1.2rem;
    line-height: 1.3;
    font-family: var(--spa-font);
  }

  .mtc > p span {
    font-family: var(--cor-font);
    font-size: 1.4rem;
    margin: 0 0.15rem;
  }

  .mtc-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .mtc-btn button {
    font-size: 0.95rem;
    column-gap: var(--mb-0-5);
  }

  .mtc-btn button span {
    width: 8px;
    height: 8px;
    transform: translateY(-1px);
  }
}

/* Media query for screens with a minimum width of 1440px and a maximum width of 1600px */
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
  }

  .ab-page .nav-open {
    right: 2.5rem;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    width: 100%;
    background-color: var(--black);
    padding: var(--mb-2) var(--mb-4);
    padding-top: var(--mb-4);
  }

  .fr-title {
    width: 100%;
    /* border: 1px tomato solid; */
  }

  .fr-title h3 {
    font-size: 16rem;
    /* border: 1px lime solid; */
  }
}

/* Media query for screens with a minimum width of 1650px */
@media screen and (min-width: 1650px) {
  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    position: relative;
    width: 100%;
    padding: var(--mb-2) var(--mb-4);
    padding-top: var(--mb-6);
  }

  .fr-container {
    width: 100%;
    row-gap: var(--mb-6);
  }

  .fr-title {
    width: 100%;
    /* border: 1px tomato solid; */
  }

  .fr-title h3 {
    text-align: center;
    color: gold;
    font-size: 20rem;
    line-height: 0.7;
  }

  .fr-links {
    width: 100%;
    justify-content: flex-start;
  }

  .fr-menu {
    width: 100%;
    justify-content: space-between;
    padding-bottom: var(--mb-1-5);
    border-bottom: 1px var(--white) solid;
  }

  .fr-menu a,
  .frs a {
    column-gap: var(--mb-0-5);
    font-size: 1.1rem;
    text-align: left;
  }

  .frs a {
    flex: 0 0 auto;
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .fr-menu a span,
  .frs a span {
    width: 10px;
    height: 10px;
    transform: unset;
  }

  .fr-socials {
    width: 100%;
    justify-content: space-between;
    padding-top: var(--mb-1-5);
    padding-bottom: var(--mb-0-25);
  }

  .fr-socials p {
    font-size: 1rem;
  }

  /* --------------- ========== NAV MODAL ========== ---------------*/
  .nm {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 40;
    display: none;
  }

  .nm.active {
    display: flex;
  }

  .nm-container {
    position: relative;
    width: 100%;
    background-color: var(--black);
    padding: var(--mb-2) var(--mb-4);
    justify-content: flex-start;
    row-gap: var(--mb-4);
  }

  .nm-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.03;
    z-index: 2;
  }

  .ab-page .nm-container,
  .wk-page .nm-container,
  .cc-page .nm-container {
    width: 100%;
    row-gap: var(--mb-3);
  }

  .nm-menu {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
  }

  .nmm {
    flex: 0 0 23%;
    row-gap: var(--mb-0-25);
    transition: all 0.3s ease;
  }

  .nmm:hover {
    transform: translateY(5px);
  }

  .nmm p {
    column-gap: var(--mb-0-5);
    font-size: 1.1rem;
  }

  .nmm p span {
    transform: translateY(-1px);
    display: none;
  }

  .nmm:hover p span {
    display: flex;
  }

  .nmm img {
    width: 100%;
    height: 220px;
    border-radius: 8px;
  }

  .nmm.active span {
    display: flex;
    background-color: mediumseagreen;
  }

  .nm-partner {
    width: auto;
    justify-content: flex-start;
    overflow: hidden;
    z-index: 3;
    /* border-top: 3px dashed gold; */
  }

  .nmp-wrapper {
    display: flex;
    width: auto;
    justify-content: flex-start;
    column-gap: var(--mb-2);
  }

  .nmp {
    flex: 0 0 auto;
    padding: var(--mb-0-75);
  }

  .nmp img {
    height: 50px;
    max-height: 60px;
    object-fit: contain;
  }

  .ab-page .nm-foot {
    margin: 0;
  }

  .nmf {
    flex: 0 0 auto;
    justify-content: flex-start;
    column-gap: 1rem;
  }

  .nmf a {
    column-gap: var(--mb-0-5);
    font-size: 1rem;
  }

  .nmf a span {
    width: 8px;
    height: 8px;
    transform: translateY(-1px);
  }

  .nmf-hi {
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

  .nmfh {
    padding: var(--mb-0-75) var(--mb-1-5);
    column-gap: var(--mb-0-75);
    /* animation: blinker 1.5s linear infinite; */
    cursor: pointer;
  }

  .nmfh p {
    font-size: 1rem;
  }

  .nmfh-wa {
    font-size: 1.4rem;
    padding-bottom: 0.15rem;
  }

  /* --------------- ========== MANIFEST MODAL ========== ---------------*/
  .mt {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: none;
  }

  .mt.active {
    display: flex;
  }

  .mt-container {
    width: 75%;
    height: 100%;
  }

  .mt-content {
    width: 100%;
    height: 100%;
    padding: var(--mb-3) var(--mb-4);
    row-gap: var(--mb-3);
  }

  .mtc-label {
    column-gap: var(--mb-0-5);
    font-size: 1.4rem;
    font-weight: 400;
  }

  .mtc-label span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--t-yellow);
    animation: fade 0.3s ease-in-out;
  }

  .mtc {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: var(--mb-2);
  }

  .mtc > p {
    width: 90%;
    font-size: 3rem;
    font-weight: 300;
  }

  .mtc > p span {
    font-size: 3.5rem;
    margin: 0 var(--mb-0-25);
  }
}
