/*========== 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&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --t-yellow: #f0b501;
  --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", sans-serif;
  --sos-font: "Source Sans 3", sans-serif;
  --pop-font: "Poppins", sans-serif;
  --cor-font: "Cormorant Upright", system-ui;

  /* .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(--pop-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;
}

/* 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.5rem;
  font-size: 1rem;
  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;
}

.sec-btn {
  background-color: transparent;
  color: var(--t-black);
  border-radius: 30px;
  border: 2px #737373 solid;
}

.pri-btn {
  background-color: var(--t-black);
  color: var(--white);
  border: 2px var(--t-black) solid;
  border-radius: 30px;
}

.acc-btn {
  background-color: orangered;
  color: var(--soft-black);
  border: 2px orangered solid;
  border-radius: 30px;
}

.pri-alt-btn {
  background-color: orangered;
  color: var(--white);
  border: 2px orangered solid;
  border-radius: 30px;
}

.sec-alt-btn {
  background-color: transparent;
  color: var(--white);
  border-radius: 30px;
  border: 2px var(--white) solid;
}

.sec-btn:hover {
  background-color: var(--t-black);
  color: var(--white);
  border: 2px var(--t-black) solid;
  opacity: 1;
}

.sec-alt-btn:hover {
  background-color: var(--white);
  border: 2px var(--white) solid;
  color: var(--t-black);
  opacity: 1;
}

.pri-btn:hover {
  background-color: orangered;
  /* font-weight: 600; */
}

.pri-alt-btn:hover {
  background-color: var(--white);
  color: var(--black);
  border: 2px var(--white) solid;
}

.acc-btn:hover {
  background-color: var(--t-black);
  color: var(--white);
  border: 2px var(--t-black) solid;
}

.span-curve {
  font-family: var(--cor-font);
  font-style: italic;
}

/*========== 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;
  }
}

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

@keyframes fadeY {
  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);
  }
}

/* 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;
}

/* .container {
overflow-x: auto;
-ms-overflow-style: none;
scrollbar-width: none;
}

.container::-webkit-scrollbar {
display: none;
} */

/* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
.header {
  position: fixed;
  top: var(--mb-1-5);
  left: 0;
  width: 100%;
  /* border: 1px red solid; */
  padding: 0 var(--mb-2);
  z-index: 50;
  background: transparent;
  /* overflow: hidden; */
}

.header.active {
  top: var(--mb-1);
  padding: 0 var(--mb-4);
}

.nav {
  width: 100%;
  justify-content: space-between;
  /* border: 1px dodgerblue solid; */
}

.nav.active {
  border-radius: unset;
  border-radius: 60px;
  background-color: rgba(250, 250, 250, 0.7);
  backdrop-filter: blur(5px);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  padding: var(--mb-1) var(--mb-1-5);
}

#nav-open {
  display: none;
}

.nm-header {
  display: none;
}

.nav-logo {
  flex: 0 0 auto;
  justify-content: flex-start;
}

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

.nav.active .nav-logo img {
  width: 150px;
}

.nav-menu {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-2);
}

.nm-links {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-1);
}

.nml {
  position: relative;
  flex: 0 0 auto;
}

.nml a {
  font-size: var(--fs-1);
  font-weight: 500;
  text-align: center;
  color: var(--t-black);
  letter-spacing: -0.03em;
}

.nml span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #a3a3a3;
  animation: fadeX 0.3 ease-in-out;
}

.nml:hover span {
  width: 100%;
}

.nm-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-1);
}

.nm-actions button {
  font-size: 0.85rem;
}

/* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
.footer {
  width: 100%;
  background-color: var(--black);
  background-image: url(/assets/img/bckg/b-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fr-container {
  width: 100%;
  justify-content: flex-start;
  row-gap: var(--mb-6);
  padding: var(--mb-4);
  padding-bottom: var(--mb-2);
  background-color: rgba(0, 0, 0, 0.9);
}

.fr-title {
  row-gap: var(--mb-2-5);
  justify-content: flex-start;
}

.fr-title h3 {
  width: 70%;
  font-size: var(--fs-3);
  font-weight: 500;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
}

.fr-title h3 strong {
  font-weight: 500;
  color: orangered;
  font-style: italic;
  font-family: var(--cor-font);
  font-size: 4.2rem;
  margin-right: 0.25rem;
}

.fr-title p {
  width: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  color: var(--light-grey);
}

.frt-action {
  column-gap: var(--mb-1-5);
}

.fr-links {
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}

.fr-links p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  text-align: left;
  opacity: 0.9;
}

.fr-logo {
  flex: 0 0 auto;
  overflow: hidden;
}

.fr-logo img {
  width: 150px;
  object-fit: cover;
}

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

.frl a {
  position: relative;
  font-size: 0.95rem;
  text-align: center;
  color: var(--white);
  opacity: 0.9;
}

.frl span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: orangered;
  animation: fadeX 0.3 ease-in-out;
}

.frl a:hover span {
  width: 100%;
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 480px */
@media screen and (max-width: 480px) {
  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
    top: var(--mb-1);
    padding: 0 var(--mb-1-5);
  }

  .header.active {
    padding: 0 var(--mb-1-5);
  }

  .nav {
    width: 100%;
  }

  #nav-open {
    font-size: var(--fs-1-5);
    color: var(--t-black);
    display: inline-block;
  }

  .nm-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    /* border: 1px dodgerblue solid; */
  }

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

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

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    flex: unset;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-2);
    padding: var(--mb-2);
    background-color: var(--white);
    column-gap: unset;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    animation: fadeY 0.3s ease-in-out;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nm-header a {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .nm-header a img {
    width: 90px;
    object-fit: cover;
  }

  .nm-links {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: var(--mb-0-75);
    column-gap: var(--mb-1);
    padding: var(--mb-1) 0;
    border-top: 1px #d4d4d4 solid;
    border-bottom: 1px #d4d4d4 solid;
  }

  .nml {
    position: relative;
    flex: 0 0 auto;
  }

  .nml a {
    font-size: var(--fs-1);
    font-weight: 500;
    text-align: center;
    color: var(--t-black);
    letter-spacing: -0.03em;
  }

  .nml span {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background-color: #a3a3a3;
    animation: fadeX 0.3 ease-in-out;
  }

  .nml:hover span {
    width: 100%;
  }

  .nm-actions {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    column-gap: var(--mb-1);
  }

  .nm-actions button {
    font-size: 0.85rem;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .footer {
    width: 100%;
  }

  .fr-container {
    row-gap: var(--mb-4);
    padding: var(--mb-4) var(--mb-1-5);
    padding-bottom: var(--mb-2);
  }

  .fr-title {
    row-gap: var(--mb-2-5);
    justify-content: flex-start;
  }

  .fr-title h3 {
    width: 85%;
    font-size: var(--fs-2);
  }

  .fr-title h3 strong {
    font-size: 2.5rem;
    margin-right: 0.25rem;
    font-weight: 600;
  }

  .fr-title p {
    width: 80%;
    font-size: 0.9rem;
  }

  .frt-action {
    column-gap: unset;
    flex-direction: column;
    row-gap: var(--mb-1);
  }

  .frt-action button {
    font-size: 0.9rem;
  }

  .fr-links {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
  }

  .fr-links p {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
  }

  .fr-logo {
    flex: 0 0 auto;
    overflow: hidden;
  }

  .fr-logo img {
    width: 150px;
    object-fit: cover;
  }

  .frl {
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1);
    flex-direction: column;
    column-gap: unset;
  }

  .frl a {
    position: relative;
    font-size: 0.8rem;
  }
}

/* Media query for screens with a minimum width of 1400px and a maximum width of 1600px */
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  /* ------ >>>>>> ========== HEADER ========== <<<<<< ------ */
  .header {
    position: fixed;
    top: var(--mb-1-5);
    padding: 0 var(--mb-6);
    z-index: 50;
    background: transparent;
  }

  /* ------ >>>>>> ========== FOOTER ========== <<<<<< ------ */
  .fr-container {
    width: 100%;
    justify-content: flex-start;
    row-gap: var(--mb-6);
    padding: var(--mb-4) var(--mb-6);
    padding-bottom: var(--mb-2);
    background-color: rgba(0, 0, 0, 0.9);
  }
}

/* Media query for screens with a minimum width of 1600px and a maximum width of 1800px */
@media screen and (min-width: 1600px) and (max-width: 1800px) {
}
