/************************************************************ 
*************************************************************  GLOBAL  
*************************************************************/
:root {
  --color-white: #f1f1f1;
  --color-creme: #e8d4b1;
  --color-grey: #d3d7d9;
  --color-grey-3: #40404d;
  --color-dark: #010f17;
  --color-orange: #fb943a;
  --color-light-blue: #67cacc;
  --color-dark-blue: #010f17;
  --color-sea-dark: #022c3d;
  --color-sea-light: #67cacc;
  --color-sea-normal: #138892;
}

.color-white {
  color: var(--color-white);
}

.color-grey {
  color: var(--color-grey);
}
.color-grey-3 {
  color: var(--color-grey-3);
}

.color-dark {
  color: var(--color-dark);
}

.color-orange {
  color: var(--color-orange);
}

.color-light-blue {
  color: var(--color-light-blue);
}

.color-dark-blue {
  color: var(--color-dark-blue);
}

.color-sea-dark {
  color: var(--color-sea-dark);
}
.color-sea-light {
  color: var(--color-sea-light);
}
.color-sea-normal {
  color: var(--color-sea-normal);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-grey {
  background-color: var(--color-grey);
}
.bg-grey-3 {
  background-color: var(--color-grey-3);
}

.bg-dark {
  background-color: var(--color-dark);
}

.bg-sea-dark {
  background-color: var(--color-sea-dark);
}
.bg-sea-light {
  background-color: var(--color-sea-light);
}
.bg-sea-normal {
  background-color: var(--color-sea-normal);
}

.bg-orange {
  background-color: var(--color-orange);
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

.bg-dark-blue {
  background-color: var(--color-dark-blue);
}

.border-bottom-orange {
  border-bottom: 1px solid var(--color-orange);
}

.border-bottom-light-blue {
  border-bottom: 1px solid var(--color-light-blue);
}

.border-bottom-dark-blue {
  border-bottom: 1px solid var(--color-dark-blue);
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Nohemi";
  src: url("fonts/Nohemi-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

.font-thin {
  font-family: "Nohemi", sans-serif;
  font-weight: 100;
}

.font-extra-light {
  font-family: "Nohemi", sans-serif;
  font-weight: 200;
}

.font-light {
  font-family: "Nohemi", sans-serif;
  font-weight: 300;
}

.font-regular {
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
}

.font-medium {
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
}

.font-semi-bold {
  font-family: "Nohemi", sans-serif;
  font-weight: 600;
}

.font-bold {
  font-family: "Nohemi", sans-serif;
  font-weight: 700;
}

.font-extra-bold {
  font-family: "Nohemi", sans-serif;
  font-weight: 800;
}

.font-black {
  font-family: "Nohemi", sans-serif;
  font-weight: 900;
}

* {
  margin: 0;
  padding: 0;
}

/* Base font size for smallest devices */
html {
  font-size: 12px;
}

/* Adjust font size for larger screens */
@media (min-width: 576px) {
  html {
    font-size: 14px; /* Small devices (phones) */
  }
}

@media (min-width: 768px) {
  html {
    font-size: 15px; /* Medium devices (tablets) */
  }
}

@media (min-width: 992px) {
  html {
    font-size: 16px; /* Large devices (desktops) */
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 16px; /* Extra large devices (large desktops) */
  }
}

html,
body {
  width: 100%;
  height: 100%;
  color: var(--color-dark);
  background-color: var(--color-beige);
  font-family: "Nohemi", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/************************************************************ 
*************************************************************  TEXTS   
*************************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
a,
.display,
.display-name {
  font-style: normal;
  line-height: normal;
  font-weight: 400;
}

h1 i,
.h1 i,
h2 i,
.h2 i,
h3 i,
.h3 i,
h4 i,
.h4 i,
h5 i,
.h5 i,
a i,
.display i,
.display-name i {
  font-style: normal;
  line-height: normal;
  font-weight: 300;
  display: block;
}

i.inline {
  display: inline-block;
}

.display {
  font-size: 5.5625rem; /* 89px */
  line-height: 4.375rem; /* 70px */
  letter-spacing: 0.1113rem;
}

.display-name {
  font-size: 12rem; /* 192px */
  line-height: 7rem; /* 112px */
  letter-spacing: 0.125rem;
}

h1,
.h1 {
  font-size: 3.125rem; /* 50px */
  letter-spacing: -0.125rem;
}

h2,
.h2 {
  font-size: 2.75rem; /* 44px */
  letter-spacing: 0.0625rem;
}

h3,
.h3 {
  font-size: 2.375rem; /* 38px */
  letter-spacing: 0.0474rem; /* Adjusted for consistency */
}

h4,
.h4 {
  font-size: 1.75rem; /* 28px */
  letter-spacing: 0.0356rem; /* Adjusted for consistency */
}

h5,
.h5 {
  font-size: 1.3331rem; /* 21.33px */
  letter-spacing: 0.0267rem;
}

p,
.p {
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2rem; /* 120% */
  letter-spacing: 0.015rem;
}

.custom-font-size-1 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.5625rem; /* 183.333% */
  letter-spacing: 0.045rem;
}

.custom-font-size-2 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 96px; /* 100% */
  letter-spacing: 1.44px;
}

.custom-font-size-3 {
  color: var(--color-dark-blue);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0366rem;
}

.custom-font-size-4 {
  color: var(--color-dark-blue);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.925rem; /* 147.692% */
  letter-spacing: 0.0366rem;
}

.custom-link-1 {
  color: var(--color-dark-blue);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.2s ease;
}

.custom-link-1:hover {
  color: var(--color-orange); /* Default hover color */
}

.custom-link-2 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.2s ease;
}

.custom-link-2:hover {
  color: var(--color-orange); /* Default hover color */
}

.custom-link-3 {
  color: var(--color-orange);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0291rem;
  text-decoration-line: none;
  transition: color 0.2s ease;
}

.custom-link-3:hover {
  color: var(--color-white); /* Default hover color */
  text-decoration-line: none;
}

.custom-font-size-5 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.925rem; /* 120% */
  letter-spacing: 0.0366rem;
}

.custom-font-size-6 {
  color: var(--color-dark-blue);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0187rem;
}

.custom-font-size-7 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.015rem;
}

.custom-font-size-8 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.8rem; /* 144.516% */
  letter-spacing: 0.0291rem;
}

.custom-font-size-footer-1 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2rem; /* 120% */
  letter-spacing: 0.015rem;
}
.custom-font-size-footer-2 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.custom-font-size-footer-3 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 200;
  line-height: 1.2rem; /* 120% */
  letter-spacing: 0.015rem;
  text-transform: uppercase;
}

.custom-font-size-nosotros-1 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.045rem;
}

.floating-heart-img {
  position: absolute;
  top: 35vh;
  right: 0vw;
  z-index: 3;
  width: 18vw;
  max-width: 25rem;
  pointer-events: none;
}

@media (max-width: 48rem) {
  .floating-heart-img {
    display: none;
  }
}

.custom-font-size-nosotros-2 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0366rem;
}

.custom-font-size-nosotros-3 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.4125rem; /* 140% */
  letter-spacing: 0.0366rem;
}
.custom-font-size-nosotros-3-i {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  /* font-family: Inter; */
  font-size: 2.4375rem;
  font-style: italic;
  font-weight: 300;
  line-height: 3.4125rem;
  letter-spacing: 0.0366rem;
}

.custom-font-size-nosotros-4 {
  color: var(--color-creme);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-5 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 200;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-6 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 200;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-6-i {
  color: var(--color-sea-light);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 200;
  line-height: 1.75rem;
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-7 {
  color: var(--color-orange);
  font-family: "Nohemi", sans-serif;
  color: var(--ORANGE01, #fb943a);
  text-align: center;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 200;
  line-height: 2.8rem; /* 114.872% */
  letter-spacing: 0.0366rem;
}

.foundin-year-bg-img {
  max-width: 60vw;
  pointer-events: none;
  user-select: none;
}

.custom-font-size-nosotros-8 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 200;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-9 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-10 {
  color: var(--color-orange);
  font-family: "Nohemi", sans-serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.06rem;
}

.custom-font-size-nosotros-11 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  text-align: center;
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 200;
  line-height: 1.75rem; /* 90.323% */
  letter-spacing: 0.0291rem;
}

.custom-font-size-nosotros-12 {
  color: var(--color-orange);
  font-family: "Nohemi", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.custom-font-size-nosotros-13 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 200;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-14 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0366rem;
  text-transform: uppercase;
}

.custom-font-size-nosotros-15 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-16 {
  color: var(--color-orange);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0366rem;
  text-transform: uppercase;
}

.custom-font-size-nosotros-17 {
  color: var(--color-orange);
  font-family: "Nohemi", sans-serif;
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0291rem;
  text-transform: uppercase;
  margin-left: 24px; /* Optional: slight indent */
}

.custom-font-size-nosotros-17-n {
  color: var(--color-orange);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0225rem;
  text-transform: uppercase;
  margin-left: 0px;
  margin-bottom: -8px;
}

.pillar-title-wrapper {
  gap: 3.2px; /* Adjust spacing between number and title */
}

.pillars-overlay {
  background-color: rgba(
    0,
    0,
    0,
    0.3
  ); /* Ajusta la opacidad según lo oscuro que lo quieras */
  pointer-events: none;
}

.custom-font-size-nosotros-18 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-19 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0366rem;
  text-transform: uppercase;
}

.custom-font-size-nosotros-20 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.95rem; /* 100.645% */
  letter-spacing: 0.0291rem;
}

.custom-font-size-nosotros-21 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4rem; /* 140% */
  letter-spacing: 0.015rem;
}

.custom-font-size-nosotros-22 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.625rem; /* 83.871% */
  letter-spacing: 0.0291rem;
}

.custom-font-size-nosotros-23 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 130% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-nosotros-24 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.625rem; /* 162.5% */
  letter-spacing: 0.015rem;
}

.custom-font-size-nosotros-25 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0366rem;
  text-transform: uppercase;
}

.custom-font-size-nosotros-26 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 130% */
  letter-spacing: 0.0187rem;
}
.custom-font-size-nosotros-27 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.625rem; /* 162.5% */
  letter-spacing: 0.015rem;
}

.section-title-wrapper {
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px; /* Optional spacing */
}

.custom-font-size-miticultura-1 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.045rem;
}

.custom-font-size-miticultura-2 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0366rem;
}

.custom-font-size-miticultura-3 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.4125rem; /* 140% */
  letter-spacing: 0.0366rem;
}

.custom-font-size-miticultura-4 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4rem; /* 140% */
  letter-spacing: 0.015rem;
}

.custom-font-size-miticultura-5 {
  color: var(--color-dark-blue);
  font-family: "Nohemi", sans-serif;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-miticultura-6 {
  color: var(--color-orange);
  font-family: "Nohemi", sans-serif;
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0291rem;
  text-transform: uppercase;
}

.custom-font-size-miticultura-6-n {
  color: var(--color-creme);
  font-family: "Nohemi", sans-serif;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03rem;
}

.custom-font-size-miticultura-7 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4rem; /* 112% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-miticultura-8 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0366rem;
  text-transform: uppercase;
}

.custom-font-size-miticultura-9 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-miticultura-10 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-miticultura-11 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0366rem;
  text-transform: uppercase;
}

.custom-font-size-miticultura-12 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.75rem; /* 140% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-news-1 {
  color: var(--color-grey);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0187rem;
}

.custom-font-size-news-2 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 2.4375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0366rem;
}
.custom-link-news-1 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.015rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.2s ease;
}

.custom-link-news-1:hover {
  color: var(--color-orange); /* Default hover color */
}

.custom-font-size-news-3 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1.9375rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.0291rem;
}

.custom-font-size-news-4 {
  color: var(--color-grey-3);
  font-family: "Nohemi", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.3375rem; /* 107% */
  letter-spacing: 0.0187rem;
}

.custom-font-size-contacto-1 {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 76.8px; /* 160% */
  letter-spacing: 0.72px;
}
.custom-font-size-contacto-2 {
  color: var(--color-dark-blue);
  font-family: "Nohemi", sans-serif;
  text-align: center;
  font-size: 39px;
  font-style: normal;
  font-weight: 300;
  line-height: 76.8px; /* 196.923% */
  letter-spacing: 0.585px;
}

a {
  color: var(--color-white);
  font-family: "Nohemi", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.045rem;
  transition: all 0.5s ease;
}

a.white {
  color: var(--color-white);
}

a.grey {
  color: var(--color-grey);
}

a.dark {
  color: var(--color-dark);
}

a.orange {
  color: var(--color-orange);
}

a.light-blue {
  color: var(--color-light-blue);
}

a.dark-blue {
  color: var(--color-dark-blue);
}

a:hover {
  color: var(--color-orange); /* Default hover color */
  text-decoration: underline;
  cursor: pointer;
}

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

a.hover-grey:hover {
  color: var(--color-grey);
}

a.hover-dark:hover {
  color: var(--color-dark);
}

a.hover-orange:hover {
  color: var(--color-orange);
}

a.hover-light-blue:hover {
  color: var(--color-light-blue);
}

a.hover-dark-blue:hover {
  color: var(--color-dark-blue);
}

.opacity-100 {
  opacity: 1;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-0 {
  opacity: 0;
}

/* styles for Header */
header {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

/* sections */
section,
footer {
  padding: 4rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

@media (max-width: 1000px) {
  section,
  footer {
    padding: 2rem 0;
    background-position: center; /* Ensures the background image remains centered */
  }
}

.hero {
  height: 70vh;
  min-height: 55rem;
}

.swiper-pagination {
  bottom: 4rem !important;
  z-index: 2 !important;
}
@media (max-width: 1000px) {
  .swiper-pagination {
    bottom: 1rem !important;
    z-index: 2 !important;
  }
}

.swiper-pagination-bullet {
  background-color: var(--color-white) !important;
  opacity: 0.5 !important;
  margin: 0 0.5rem !important;
  width: 0.8rem !important;
  height: 0.8rem !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-orange) !important;
  opacity: 1 !important;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

figure {
  margin: 0;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
}

.fadeInUp.animate {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.header-transition {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.bg-black-50 {
  background-color: rgba(0, 0, 0, 0.2);
}

/* HEADER CLASES */
/* Base header styling */
/* Navbar general */
.navbar {
  padding: 0;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: #000; /* or any color on scroll */
}

/* Logo */
.navbar-brand img {
  transition: height 0.3s ease;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--color-white);
  padding: 0.5rem 0;
  position: relative;
  font-family: "Nohemi", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  transition: color 0.2s ease, border-bottom 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--color-orange); /* highlight color */
  text-decoration: none;
}

/* Optional underline effect on hover */
.navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Instagram icon */
.header-instagram img,
.navbar-collapse a[href*="instagram.com"] img {
  height: 2.5rem;
  filter: brightness(0) invert(1); /* makes the icon white */
  transition: transform 0.2s ease;
}

.navbar-collapse a[href*="instagram.com"]:hover img {
  transform: scale(1.1);
}

/* Toggler icon white */
.navbar-toggler {
  border: 1px solid white;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  border: 1px solid white;
  box-shadow: none;
}

/* Replace Bootstrap default toggler icon with white lines */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Optional: navbar background on scroll */
header.scrolled {
  background-color: #000; /* solid background when scrolling */
}

/* Full-width mobile menu */
@media (max-width: 767.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000; /* full width and dark background */
    padding: 2rem 1rem;
    z-index: 10;
  }

  .navbar-nav {
    align-items: center;
  }

  .navbar-nav .nav-link {
    font-size: 1.25rem;
    padding: 1rem 0;
    color: white;
    text-align: center;
  }

  .navbar-nav .nav-link:hover {
    color: #d9bc93;
  }

  /* Center Instagram icon on mobile */
  .navbar-collapse > a[href*="instagram.com"] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  .navbar-collapse > a[href*="instagram.com"] img {
    height: 2.5rem;
    filter: brightness(0) invert(1);
  }
}
.navbar-nav .nav-link.active,
.navbar-nav .current-menu-item .nav-link,
.navbar-nav .current_page_item .nav-link {
  color: var(--color-orange);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .current-menu-item .nav-link::after,
.navbar-nav .current_page_item .nav-link::after {
  width: 100%;
}
/* /HEADER CLASES */

/* Front page clases */
.section-news h2 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-news h3 {
  font-size: 1.2rem;
  line-height: 1.4;
}

.section-news .btn {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}
/* /Front page clases */

/* contact form */
.wpcf7-form {
  max-width: 400px;
  margin: 0 auto;
}

/* Inputs y textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-white);
  border: none;
  text-align: center;
  color: #000;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Textarea alto */
.wpcf7-form textarea {
  min-height: 150px;
  resize: none;
}

/* Botón de enviar */
.wpcf7-form input[type="submit"] {
  background-color: var(--color-sea-dark);
  color: var(--color-grey);
  padding: 0.6rem 2rem;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #005060;
}

/* /contact form */

/* Keep logo from taking full width and align nicely */
.site-logo {
  max-height: 5.5rem;
  width: auto;
  display: block;
}
@media (max-width: 575.98px) {
  .site-logo {
    max-height: 5rem;
  }
}

/* Ensure navbar toggler icon is visible if using transparent backgrounds */
.navbar .navbar-toggler {
  padding: 0.25rem 0.5rem;
}

header {
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(255,255,255,0) 100%);
}
