/* Global reset for body */
body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0c1624; /* dark blue background */
}

/* Reset UL (important if using custom nav) */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Orbitron', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* adjusts for fixed navbar */
}

body.block-cursor {
  cursor: not-allowed !important;
  background-color: #0c1624;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 90px;
  box-sizing: border-box;
  gap: 60px; /* ✅ controls spacing between logo/nav/button */
  position: relative; /* ✅ Allows absolute positioning inside */
}

.site-header {
  background-color: #08121c;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* LEFT - Logo + Text */
.logo-area {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  height: 60px;
  padding-left: 30px;
  display: block;
  margin: 0;
}

.logo-text {
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding-left: 25px;
  display: flex;
  align-items: center;
  height: 100%;
}

/* CENTER - Navigation */
.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}


.nav-list {
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  letter-spacing: 0.05em;
}

.nav-list li a:hover {
  color: #Efc900;
}

/* Right-aligned area for button */
.contact-area {
  display: flex;
  align-items: center;
  height: 100%; /* Ensure same vertical centering as .logo-area */
  margin-left: 40px;  /* ⬅️ Push to far right */
  margin-top: 5px;
}

/* Contact button itself */
.contact-button {
  background-color: #Efc900;
  padding: 12px 25px;
  border-radius: 20px;
  text-decoration: none;
  color: #08121c;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap; /* ✅ avoids line break like your current "Contact ↲ us" */
}

.contact-button:hover {
  background-color: #cfc000;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 14px;
  font-family: 'Orbitron', sans-serif;
}

.nav-list a:hover {
  color: #Efc900;
}

.nav-dropdown .dropdown-top {
  display: none;
  position: absolute;
  bottom: 85%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 5;
}

.nav-dropdown .dropdown-top.visible {
  display: block;
}

.nav-main-link {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* Nudge "Why Paraguay?" downward only on hover */
.nav-dropdown:hover .nav-main-link {
  transform: translateY(8px);
}

.nav-dropdown:hover .dropdown-top {
  bottom: 85%; /* was 100% */
  display: block;
}

.dropdown-item {
  color: white;
  font-size: 14px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
}

.dropdown-item:hover {
  color: #Efc900;
}

/* Language Dropdown */
.lang-select {
  background-color: #0c1624;
  color: #Efc900;
  border: 1px solid #Efc900;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.lang-select:focus {
  outline: none;
  border-color: #fff;
}

.nav-lang {
  display: flex;
  align-items: center;
  margin-left: 10px;  /* ⬅️ Push language menu slightly from dropdown */
}

/*________________________________________*/

/*Hero Section*/
.hero-section {
  background-color: #0c1624; /* dark blue background */
  color: white;
  padding: 120px 20px;
  text-align: right;
  min-height: 250px; /* or higher if needed */
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: -70px;
  margin-bottom: -20px;
}

.hero-title {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Orbitron', sans-serif;
}

.hero-subtitle {
  font-size: 35px;
  font-weight: 400;
  font-family: 'Roboto Mono', monospace;
  opacity: 0.8;
}

/* Hero Buttons */
.hero-buttons {
  margin-top: 100px;
  margin-right: 250px; /* aligns to the left */
}

/* First CTA Button */
.hero-cta {
  display: inline-block;
  margin-top: 30px;
  margin-left: 30px;
  padding: 24px 48px;
  background-color: #Efc900;
  color: #08121c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  border: 0.5px solid transparent;
}

.hero-cta:hover {
  background-color: #0c1624;
  color: #Efc900;
  border: 0.5px solid #ece316; /* adds the gold outline */
  text-shadow: 0 0 5px #ece316, 0 0 10px #ece316; /* glow effect */
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Second CTA Button */
.hero-cta2 {
  display: inline-block;
  margin-top: 30px;
  margin-left: 30px;
  padding: 24px 48px;
  background-color: #08121c; /*#ece316*/
  color: #fff768;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  border: 0.5px solid #fff768; /* adds the gold outline */
}

.hero-cta2:hover {
  background-color: #0c1624;
  color: #Efc900;
  border: 0.5px solid #ece316; /* adds the gold outline */
  text-shadow: 0 0 5px #ece316, 0 0 10px #ece316; /* glow effect */
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.line-holder {
  background: transparent;
  justify-content: left;
  width: 0px;
  height: 0px;
}

@keyframes reflexSweep {
  0% {
    mask-position: -100% 0;
    -webkit-mask-position: -100% 0;
  }
  50% {
    mask-position: 200% 0;
    -webkit-mask-position: 200% 0;
  }
  100% {
    mask-position: -100% 0;
    -webkit-mask-position: -100% 0;
  }
}

.lines-latam-base,
.lines-latam {
  width: 450px;
  height: 380px;
  margin-right: 1000px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  margin-top: 110px;
}

.lines-latam {
  stroke: #efc900;
  stroke-width: 2;
  fill: none;

  /* NARROW sweep band */
  mask-image: linear-gradient(
    60deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 55%
  );
  mask-size: 200% 100%;
  mask-repeat: no-repeat;
  animation: reflexSweep 8s linear infinite;

  -webkit-mask-image: linear-gradient(
    60deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 55%
  );
  -webkit-mask-size: 200% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-animation: reflexSweep 8s linear infinite;
}


/*Partner Section*/
.partner-section {
  background-color: #12242b;
  overflow: hidden;
  padding: 20px 0;
}

.partner-container {
  width: 100%;
  overflow: hidden;
}

.partner-logos {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

/* .logo-group {
  display: flex;
} */

.partner-logo {
  height: 65px;
  margin-right: 50px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Smooth infinite loop
@keyframes scroll-infinite {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
} */

/*________________________________________*/

/*Services Section*/
.services-section {
  background-color: #0c1624; /* dark blue background */
  color: white;
  padding: 120px 20px;
  /* Add enough bottom padding so you can scroll to the end of the last sticky item */
  padding-bottom: 150px; 
}

/* 👇 NEW container for the sticky elements */
.sticky-parent-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px; /* Adds space between cards */
}

/* REMOVE these old containers */
/* .services-container { ... }
.services-container1 { ... }
*/

.service-card {
  /* 👇 THIS IS THE KEY */
  position: sticky;
  top: 100px; /* Base sticky position */

  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #112934;
  border-radius: 20px;
  padding: 5px 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  flex-wrap: wrap;
}

/* 👇 Create the stacking effect by slightly offsetting each card */
.service-card:nth-of-type(2) {
  top: 125px; 
}

.service-card:nth-of-type(3) {
  top: 150px;
}

.check-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

.service-content {
  flex: 1;
  min-width: 280px;
}

.service-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
}

.service-description {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 20px;
  font-family: 'Roboto Mono', monospace;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-list li {
  display: inline-flex;
  align-items: center;
  background-color: #1f2e3c;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 20px;
  font-size: 16px;
  font-family: 'Roboto Mono', monospace;
  width: fit-content;
  max-width: 100%;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.image-wrapper {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/*________________________________________*/

/*Reviews/Testimony Section*/
.reviews-section {
  background-color: #0c1624; /* dark blue background */
  color: white;
  padding: 120px 20px;
  /* text-align: right;
  min-height: 250px; */
}

.reviews-container {
  max-width: 1400px;
  margin: -200px auto 0 auto; /* top -20px, horizontal auto, bottom 0 */
}

.review-title {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

.review-title-gold {
  color: #Efc900; /* bright gold */
}

.review-scroll-wrapper {
  position: relative;
  overflow: hidden;
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge */
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    /* For Chrome, Safari */
  &::-webkit-scrollbar {
    display: none;
  }
}

/* .card-holder {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 10px;
} */

/* Swiper layout matching your old Slick spacing */
#scrollCards {
  display: flex;
  gap: 0px;
  padding: 10px;
  margin-left: 0;
}

#scrollCards .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
}

.review-scroll-wrapper::before,
.review-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.review-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0c1624, transparent);
}

.review-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0c1624, transparent);
}


.drag-block {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25%; /* adjust zone */
  z-index: 99;
  pointer-events: auto; /* blocks Swiper drag */
  user-select: none;        /* 🔒 prevent text selection */
  -webkit-user-select: none; /* 🔒 for Safari */
}

.drag-block:active {
  cursor: not-allowed;
}

/* block left side */
.left-block {
  left: 0;
  cursor: default; /* or: not-allowed, or none */
}

/* .left-block:active {
  cursor: not-allowed;
} */

/* block right side */
.right-block {
  right: 0;
  cursor: default; /* or: not-allowed, or none */
}

/* .right-block:active {
  cursor: not-allowed;
} */


.review-scroll-wrapper:active {
  cursor: grabbing;
}

/* .review-scroll-wrapper .slick-track {
  cursor: default !important;
} */

.review-card {
  flex: 0 0 auto;               /* Prevent shrinking, enforce fixed width */
  width: 320px;
  background-color: #0d191f;
  border: 1px solid #Efc900;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  color: white;
}

/* Main layout: pic, text, and icon */
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Profile pic */
.linkedin-pic {
  flex-shrink: 0;
}

.pic-prof {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Name + role beside image */
.review-info {
  flex-grow: 1;
  min-width: 0;
}

/* LinkedIn icon on top right */
.linkpic-url {
  margin-left: auto;         /* pushes it to the right */
  flex-shrink: 0;            /* don’t let it shrink */
  width: 50px;
  height: 50px;
}

.linkedin-icon {
  width: 50px;
  height: 50px;
}

/* Name */
.review-name {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  font-family: 'Times New Roman', sans-serif;
}

/* Role */
.review-role {
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
  color: #Efc900;
  font-family: 'Times New Roman', sans-serif;
}

/* Quote */
.review-text {
  font-size: 16px;
  margin-top: 25px;
  color: #bbb;
  font-family: 'Times New Roman', serif;
}

/*________________________________________*/

/* Expand section */
.expand-section {
  background-color: #0c1624;
  padding: 120px 20px;
  color: white;
}

/* Centers content in page */
.expand-container {
  max-width: 1400px;
  margin: 0 auto;
}

.expand-wrapper {
  width: 1200px;
  height: 400px;
  position: relative;
  margin: 0 auto;
  border: 2px solid #Efc900;
  border-radius: 20px;
  overflow: hidden;
  margin-top: -100px;
}

.expand-wrapper-py {
  width: 1200px;
  height: 400px;
  position: relative;
  margin: 0 auto;
  border: 2px solid #Efc900;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 150px;
}

.expand-picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.expand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}


.expand-title-block {
  position: absolute;
  top: 30px;
  left: 60px;
  text-align: left; /* or center depending where you want it */
  pointer-events: none;
}

.expand-title-block-py {
  position: absolute;
  top: 30px;
  left: 280px;
  text-align: center; /* or center depending where you want it */
  pointer-events: none;
}

.expand-title {
  font-size: 45px;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  color: white;
  margin: 0;
}

.expand-title-gold {
  font-size: 45px;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  color: #Efc900;
  margin-top: 8px;
}

/* First CTA Button */
/* NOW: you can move the button freely */
.expand-button {
  position: absolute;
  bottom: 120px;
  left: 80px;
  pointer-events: auto;
  z-index: 3;
}

.expand-cta {
  display: inline-block;
  margin-top: 30px;
  margin-right: 30px;
  padding: 25px 50px;
  background-color: #Efc900;
  color: #08121c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  border: 0.5px solid transparent;

}

.expand-cta:hover {
  background-color: #0c1624;
  color: #ece316;
  border: 0.5px solid #ece316; /* adds the gold outline */
  text-shadow: 0 0 5px #ece316, 0 0 10px #ece316; /* glow effect */
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/*paraguay buttons*/
.paraguay-button-holder {
  display: flex;
  gap: 50px;
  pointer-events: auto;
  margin-top: 200px;
}

.expand-cta-py {
  display: inline-block;
  padding: 25px 50px;
  background-color: #Efc900;
  color: #08121c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  border: 0.5px solid transparent;
  transition: all 0.3s ease; /* <-- REQUIRED for animation */
}

.expand-cta-py2 {
  display: inline-block;
  padding: 25px 50px;
  background-color: #Efc900;
  color: #08121c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  border: 0.5px solid transparent;
  transition: all 0.3s ease; /* <-- REQUIRED for animation */
}

.expand-cta-py:hover {
  background-color: #0c1624;
  color: #ece316;
  border: 0.5px solid #ece316;
  text-shadow: 0 0 5px #ece316, 0 0 10px #ece316;
  transform: translateY(-5px);
}

.expand-cta-py2:hover {
  background: linear-gradient(90deg, #d52b1e 0%, #ffffff 50%, #0038a8 100%);
  color: #08121c;
  border: 0.5px solid #ffffff;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
  transform: translateY(-5px);
}

.scroll-lock-section {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px; /* 👈 vertical padding removed, only side padding */
  background-color: #0c1624;
}

.scroll-text-wrap {
  font-size: 48px;
  font-family: 'Manrope', sans-serif; /* or 'Satoshi' if hosted manually */
  font-weight: bold;
  max-width: 1000px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: -150px; /* 👈 pull text downward */
}

.scroll-text-wrap .word {
  color: gray;
  transition: color 0.4s ease;
}


/*________________________________________*/


/* Faq section */
.faq-section {
  background-color: #0c1624;
  padding: 120px 20px;
  /* overflow: visible; */
  margin-top: -50px;
}

.faqcontainer {
  max-width: 1200px;
  margin: 0 auto;
  /* position: relative;
  z-index: 1; */
}

.faq-title {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: bold;
  font-size: 25px;
  max-width: 1000px;
  text-align: center;       /* ✅ centers multiline text */
  margin: 0 auto 40px auto; /* ✅ center block and add bottom space */
}

.faq-holder {
  align-items: left;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  font-family: 'Manrope', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between; /* left text + right arrow */
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  gap: 12px;
  transition: color 0.3s ease;
}

.faq-arrow {
  transition: transform 0.3s ease;
  font-size: 30px;
  margin-left: auto;
}

.faq-question:hover {
  color: #Efc900;
}

.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 16px;
  color: #bbb;
  font-family: 'Manrope', sans-serif;
  padding-left: 42px;
}

.faq-answer.open {
  max-height: 500px; /* large enough to show content */
  padding-top: 8px;
}

.faq-question.open .faq-arrow {
  transform: rotate(180deg); /* arrow points up */
}

/*________________________________________*/

/* Team section */
.team-section {
  background-color: #0c1624;
  padding: 40px 20px 120px 20px; /* ⬅️ SHRINK top padding! */
  position: relative;
  min-height: 350px;
  overflow: visible; /* ✅ FIXED — allows upward content to render */
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative; /* Ensure background and content layer correctly */
  z-index: 1;
}

.team-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Pulsing animation for glowing SVG */
@keyframes pulse {
  0% {
    opacity: 0.1;
    filter: drop-shadow(0 0 0px #efc900);
  }
  50% {
    opacity: 0.7;
    filter: drop-shadow(0 0 6px #efc900);
  }
  100% {
    opacity: 0.1;
    filter: drop-shadow(0 0 0px #efc900);
  }
}

.team-bpicture {
  width: 1400px;
  height: 500px;
  opacity: 1;
  display: block;
  animation: pulse 2.5s ease-in-out infinite;
}

.teamtext {
  position: relative;
  z-index: 2;
  text-align: center;
}

.teamtxt {
  font-size: 45px;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  color: white;
  transform: translateY(-50px); /* ⬅️ Moves it up visually */
  margin: 0;
}

.teamtxtG {
  color: #Efc900; /* bright gold */
}

/* Team cards */
/* .team-cardholder {
  justify-content: left;
  flex-wrap: nowrap; 
  position: relative;
  z-index: 2;
  margin-top: 15px;
  will-change: transform;
  transition: transform 0.3s ease;
} */ 

/* .team-cardholder {
  margin-top: 15px;
  position: relative;
  z-index: 2;
} */

/* Swiper layout matching your old Slick spacing */
#team-cardholder {
  display: flex;
  gap: 0px;
  padding: 10px;
  margin-left: 0;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

#team-cardholder .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
}

/* Prevent image dragging */
.team-scroll-wrapper img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none; /* only if you don’t need to click images directly */
}

/* Prevent text selection while dragging */
.team-scroll-wrapper {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.team-scroll-wrapper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* #team-cardholder  .slick-track {
  display: flex !important;
  gap: 30px !important;
  padding: 10px !important;
  margin-left: 0 !important;
  transition-timing-function: linear !important;
}

#team-cardholder .slick-slide {
  height: auto !important;
  display: flex !important;
  justify-content: center;
  white-space: nowrap !important;
}

#team-cardholder.slick-slider {
  text-align: left !important;
}

#team-cardholder .slick-list {
  overflow: hidden !important;
}

#team-cardholder {
  visibility: visible;
  opacity: 1;
} */

.team-card {
  width: 200px;
  aspect-ratio: 3 / 4.5; /* 🔥 Taller than 3/4 — matches Polícripto's feel */
  border-radius: 20px;
  border: 2px solid transparent;

  background:
    linear-gradient(#0c1624, #0c1624) padding-box,
    linear-gradient(160deg, rgba(255, 255, 255, 0.25), #Efc900 50%, rgba(255, 255, 255, 0.25)) border-box;

  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 2;
  position: relative;
  flex-shrink: 0;
}

.team-photo-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.team-photo {
  filter: grayscale(100%);
  transition: filter 0.4s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* ✅ Remove inner corner conflict */
  border-radius: 0;
}

/* Bring back color on hover */
.team-card:hover .team-photo {
  filter: grayscale(0%);
}

/* LinkedIn icon on top right */
.linkpicteam-url {
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0;
  right: 0;
}

/* Show icon on hover */
.team-card:hover .linkpicteam-url {
  opacity: 1;
}

.linkedinteam-icon {
  width: 50px;
  height: 50px;
}

.team-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.team-namerole {
  text-align: center;
  margin-top: 10px;
  font-family: 'Orbitron', sans-serif;
  height: 60px;
  overflow: hidden;       /* ✅ Prevent pushing layout */
}

.team-name {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ✅ Role appears below the name */
.team-role {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #Efc900; /* Bright green like Polícripto */
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-scroll-wrapper {
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  display: flex;
  justify-content: flex-start;
  padding: 40px 0; /* ✅ Adds spacing so content stays visually centered */
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.team-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/*__________________________________________


/* Footer */

.site-footer {
  position: relative;
  padding: 30px 20px;
  background-color: #0c1624;
  color: #bbb;
  font-size: 14px;
  z-index: 1;
  margin-top: -30px;
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 25%, #Efc900 50%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.05) 100%);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}

.logo-area-footer {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: -60px; /* 👈 push logo closer to edge */
}

.socials {
  flex-direction: column;   /* ✅ stack text + logos cleanly */
  align-items: flex-end;    /* ✅ right-align both */
  margin-top: 50px;
}

.reserved {
  font-size: 15px;
  margin-top: 20px;
  margin-left: 150px;
}

.socialtext {
  font-size: 16px;
  color: #ffffff;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.socialtextG {
  color: #Efc900;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.sociallogos {
  display: flex;
  align-items: center;
  margin-left: 45px;
  margin-top: 0;            /* ✅ no push */
  gap: 8px;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.sociallogo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer-description {
  padding-right: 20px;
}

.footer-note {
  font-size: 16.5px;
  line-height: 1.5;
  color: #bbb;
  text-align: left;
  font-family: 'Times New Roman', sans-serif;
}

.footer-divider {
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 25%, #Efc900 50%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.05) 100%);
  height: auto;             /* Or use fixed height like 160px */
  min-height: 100%;         /* ensures stretch works */
  align-self: stretch;      /* 🔧 makes it fill full vertical space */
  margin: 0 30px;
}

.social-divider {
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 25%, #Efc900 50%, rgba(255,255,255,0.1) 75%, rgba(255,255,255,0.05) 100%);
  width: auto;             /* Or use fixed height like 160px */
  min-height: 100%;         /* ensures stretch works */
  align-self: stretch;      /* 🔧 makes it fill full vertical space */
  margin: 15px auto 0; /* 👈 top margin pushes it down + centers horizontally */
}

.email-holder {
  display: flex;             /* 👈 THIS is the missing key */
  justify-content: center;
  flex-direction: row;
  align-items: center;       /* 👈 optional: aligns icon & text vertically */
  gap: 10px;
  margin-top: 0px;          /* 👈 optional: push it down */
}

.emaillogo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.email-text {
  color: #ffffff;
  font-size: 16px;
  font-family: 'Times New Roman', sans-serif;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.privacy-text {
  font-size: 15px;
  color: #bbb;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  text-decoration: none;
  margin-right: 50px;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.privacy-text:hover {
  color: #Efc900
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;  /* 👈 left & right alignment */
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Kills all default underline behavior */
.site-footer-bottom a:link,
.site-footer-bottom a:visited,
.site-footer-bottom a:hover,
.site-footer-bottom a:active {
  text-decoration: none;
}

/*404*/
.notfound-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  background-color: #0c1624;
  color: #fff;
  min-height: 60vh;
  font-family: 'Orbitron', sans-serif;
}

.notfound-big {
  font-size: 96px;
  font-weight: bold;
  color: #Efc900;
  margin: 0;
}

.notfound-text {
  font-size: 20px;
  opacity: 0.85;
  margin-top: 12px;
}


/*Cookies*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #0c1624;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
}

.cookie-text {
  font-size: 14px;
  margin-bottom: 12px;
  padding: 0 15px;
  max-width: 700px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn {
  border: none;
  border-radius: 20px;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
}

.cookie-btn.accept {
  background-color: #Efc900;
  color: #0c1624;
}

.cookie-btn.accept:hover {
  background-color: #cfc000;
}

.cookie-btn.reject {
  background-color: #666;
  color: #fff;
}

.cookie-btn.reject:hover {
  background-color: #888;
}

.cookie-text a {
  text-decoration: none;
}

/* This single rule handles the link's default and visited states */
.cookie-banner .cookie-text a.cookie-policy,
.cookie-banner .cookie-text a.cookie-policy:link,
.cookie-banner .cookie-text a.cookie-policy:visited {
  color: #bbb; /* Changed to white to match the rest of the text */
  text-decoration: none; /* Keeps the underline off */
}

/* This rule for the hover state is correct and can remain as is */
.cookie-banner .cookie-text a.cookie-policy:hover {
  color: #Efc900; /* The yellow color on hover */
}

/* MOBILE BEHAVIOR */

/*NAVIGATE MENU*/
/* TABLET MENU BEHAVIOR (up to 1080px) */
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 30px;
    top: 28px;
    font-size: 30px;
    z-index: 1001;
  }

  .nav-center {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #08121c;
    width: 100%;
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 999;
    padding: 12px 0;
  }

  .nav-center.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 14px;
    padding: 12px 0;
  }

  .nav-list a {
    font-size: 16px;
    padding: 10px 16px;
  }

  .contact-area {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 12px 0 0;
    margin-left: 5px;
  }

  .contact-button {
    font-size: 16px;
    padding: 12px 24px;
  }

  .nav-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown:hover .nav-main-link {
    transform: translateY(8px);
  }

  .nav-dropdown .dropdown-top {
    display: none;
    position: static;
    transform: none;
    margin-bottom: 8px; /* ✅ show ABOVE */
    order: -1;           /* ✅ show ABOVE main link */
    text-align: center;
  }

  .nav-dropdown:hover .dropdown-top {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 1001;
  }

  .nav-center {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #08121c;
    width: 100%;
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 999;
    padding: 10px 0;
  }

  .nav-center.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .nav-list a {
    font-size: 14px;
    padding: 8px 14px;
  }

  .contact-area {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 12px 0 0;
    margin-left: 5px;
  }

  .contact-button {
    font-size: 16px;
    padding: 10px 22px;
  }

  .nav-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown:hover .nav-main-link {
    transform: translateY(8px);
  }

  .nav-dropdown .dropdown-top {
    display: none;
    position: static;
    transform: none;
    margin-bottom: 6px;
    order: -1; /* shows above */
    text-align: center;
    font-size: 13px;
  }

  .nav-dropdown:hover .dropdown-top {
    display: block;
  }
}

@media screen and (max-width: 410px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    height: auto;
  }

  .logo-area {
    justify-content: center;
    padding-left: 0;
  }

  .logo {
    height: 50px;
    padding: 0;
  }

  .logo-text {
    font-size: 18px;
    padding-left: 12px;
  }

  .mobile-menu-toggle {
    font-size: 24px;
    top: 15px;
    right: 15px;
  }

  .nav-center {
    top: 70px;
    font-size: 14px;
  }

  .nav-list a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .contact-area {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 12px 0 0;
    margin-left: 5px;
  }

  .contact-button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .nav-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown:hover .nav-main-link {
    transform: translateY(8px);
  }

  .nav-dropdown .dropdown-top {
    display: none;
    position: static;
    transform: none;
    margin-bottom: 6px;
    order: -1;
    text-align: center;
    font-size: 13px;
  }

  .nav-dropdown:hover .dropdown-top {
    display: block;
  }
}

/*Hero Section*/
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .hero-section {
    padding: 100px 40px;
    text-align: left; /* ✅ switch from center to left */
    position: relative;
  }

  .hero-container {
    margin-top: -30px;
    margin-left: 220px; /* ✅ pushes text to the right of the logo */
    max-width: 800px;   /* ✅ optional, keeps things narrow */
  }

  .hero-title {
    font-size: 52px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-buttons {
    margin: 60px 0 0;
    text-align: left;
  }

  .hero-cta,
  .hero-cta2 {
    display: inline-block;
    margin: 20px 10px 0 0;
    padding: 22px 42px;
    font-size: 17px;
  }

  .lines-latam,
  .lines-latam-base {
    width: 220px;
    height: 400px;
    position: absolute;
    top: 90px;
    left: 30px;
    transform: none;
    margin: 0;
    pointer-events: none;
    z-index: 0;
    margin-top: 30px;
  }

  .lines-latam {
    mask-image: linear-gradient(
      60deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 55%
    );
    mask-size: 200% 100%;
    mask-repeat: no-repeat;
    animation: reflexSweep 8s linear infinite;

    -webkit-mask-image: linear-gradient(
      60deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 55%
    );
    -webkit-mask-size: 200% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-animation: reflexSweep 8s linear infinite;
  }
}


@media screen and (max-width: 768px) {
  .hero-section {
    padding: 80px 20px;
    text-align: center;
  }

  .hero-container {
    margin-top: 0px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-buttons {
    margin: 40px auto 0;
    margin-right: 0;
    text-align: center;
  }

  .hero-cta,
  .hero-cta2 {
    display: block;
    margin: 15px auto 0;
    padding: 18px 32px;
    font-size: 16px;
  }
  
  .lines-latam,
  .lines-latam-base {
    width: 100px;            /* ✅ Make it much smaller */
    height: 100px;
    position: absolute;
    top: 100px;              /* ✅ Position below logo, fine-tune as needed */
    left: 5px;               /* ✅ Hug the left edge */
    transform: none;         /* ✅ Remove centering */
    margin: 0;
    pointer-events: none;
    z-index: 0;              /* ✅ Ensure it’s behind text */
    margin-top: 20px;
  }

  .lines-latam {
    mask-image: linear-gradient(
      60deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 55%
    );
    mask-size: 200% 100%;
    mask-repeat: no-repeat;
    animation: reflexSweep 8s linear infinite;

    -webkit-mask-image: linear-gradient(
      60deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 55%
    );
    -webkit-mask-size: 200% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-animation: reflexSweep 8s linear infinite;
  }
}

@media screen and (max-width: 410px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    margin-top: 30px;
  }

  .hero-cta,
  .hero-cta2 {
    padding: 14px 24px;
    font-size: 15px;
  }

  .lines-latam,
  .lines-latam-base {
    display: none !important;
  }
}

/* Partners*/
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .partner-logo {
    height: 55px;
    margin-right: 40px;
  }
}

@media screen and (max-width: 768px) {
  .partner-logo {
    height: 45px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 410px) {
  .partner-logo {
    height: 38px;
    margin-right: 20px;
  }
}


/*Services*/
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .services-section {
    padding: 100px 20px;
    padding-bottom: 120px; 
  }

  /* 👇 Replaced old containers with the new one */
  .sticky-parent-container {
    max-width: 900px;
    gap: 20px;
  }

  /* Stack card content vertically */
  .service-card {
    flex-direction: column;
    align-items: flex-start; /* Align to the left for this layout */
    text-align: left;      /* Reset text-align from smaller screens */
    padding: 30px;
    gap: 20px;
  }
  
  /* Adjust sticky positions for a slightly smaller header/nav */
  .service-card {
    top: 90px;
  }
  .service-card:nth-of-type(2) {
    top: 115px; 
  }
  .service-card:nth-of-type(3) {
    top: 140px;
  }

  .service-content {
    width: 100%;
  }
  
  .service-list {
    align-items: flex-start; /* Align pills to the left */
  }

  .service-title {
    font-size: 24px;
  }

  .service-description,
  .service-list li {
    font-size: 15px;
  }

  .service-list li {
    padding: 8px 18px;
  }

  .image-wrapper {
    max-width: 340px;
  }
}

/* -----------------
   Mobile Devices
   ----------------- */
@media screen and (max-width: 768px) {
  .services-section {
    padding: 80px 15px;
    padding-bottom: 150px; 
  }

  /* Center the card content and text */
  .service-card {
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }
  
  /* 👇 Make the sticky stack tighter on mobile */
  .service-card {
    top: 80px; 
  }
  .service-card:nth-of-type(2) {
    top: 95px;
  }
  .service-card:nth-of-type(3) {
    top: 110px;
  }

  /* Center the list items (pills) */
  .service-list {
    align-items: center;
  }

  .service-title {
    font-size: 22px;
  }

  .service-description,
  .service-list li {
    font-size: 14px;
  }

  .service-list li {
    padding: 7px 16px;
  }

  .image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* -----------------
   Small Mobile Devices
   ----------------- */
@media screen and (max-width: 410px) {
  .services-section {
    padding: 70px 12px;
    padding-bottom: 150px;
  }

  .sticky-parent-container {
    gap: 15px;
  }

  .service-card {
    padding: 20px 16px;
    gap: 18px;
  }

  .service-title {
    font-size: 20px;
  }
  
  .service-description,
  .service-list li {
    font-size: 13px;
  }

  .service-list li {
    padding: 6px 14px;
  }

  .image-wrapper {
    max-width: 100%; /* Allow image to fill available space */
  }
}

/*Reviews*/
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .reviews-section {
    padding: 100px 20px 100px; /* ✅ vertical breathing room */
  }

  .review-scroll-wrapper {
    overflow: hidden;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    -webkit-overflow-scrolling: touch;
  }

  .review-scroll-wrapper::before,
  .review-scroll-wrapper::after {
    display: none;
  }

  #scrollCards {
    display: flex;
    width: 100%;
  }

  #scrollCards .swiper-slide {
    flex-shrink: 0;
    width: auto;
    box-sizing: border-box;
  }

  .review-card {
    width: 250px;
    padding: 18px;
    background-color: #0d191f;
    border: 1px solid #Efc900;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }

  .review-card:hover {
    transform: translateY(-6px);
  }

  .review-name {
    font-size: 15px;
  }

  .review-role {
    font-size: 11px;
  }

  .review-text {
    font-size: 13.5px;
    margin-top: 18px;
    line-height: 1.4;
  }

  .linkedin-icon,
  .pic-prof {
    width: 40px;
    height: 40px;
  }

  .review-header {
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .reviews-section {
    padding: 80px 15px 100px;
  }

  .review-scroll-wrapper {
    overflow: hidden;
    padding-bottom: 10px;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    -webkit-overflow-scrolling: touch;
  }

  #scrollCards {
    display: flex;
    width: 100%;
  }

  #scrollCards .swiper-slide {
    flex-shrink: 0;
    width: auto;
    box-sizing: border-box;
  }

  .review-card {
    width: 240px;
    padding: 16px;
    background-color: #0d191f;
    border: 1px solid #Efc900;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }

  .review-card:hover {
    transform: translateY(-5px);
  }

  .review-name {
    font-size: 15px;
  }

  .review-role {
    font-size: 11px;
  }

  .review-text {
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.4;
  }

  .linkedin-icon,
  .pic-prof {
    width: 38px;
    height: 38px;
  }

  .review-header {
    gap: 10px;
  }

  .review-title {
    font-size: 36px;
    text-align: center;
  }
}

@media screen and (max-width: 410px) {
  .reviews-section {
    padding: 70px 10px 100px;
  }

  .review-scroll-wrapper {
    padding-bottom: 10px;
    overflow-x: hidden;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .review-card {
    width: 220px;
    padding: 14px;
  }

  .review-name {
    font-size: 14px;
  }

  .review-role {
    font-size: 10px;
  }

  .review-text {
    font-size: 13px;
    margin-top: 14px;
    line-height: 1.4;
  }

  .linkedin-icon,
  .pic-prof {
    width: 36px;
    height: 36px;
  }

  .review-title {
    font-size: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 1080px) and (min-width: 769px) {
    .expand-wrapper,
  .expand-wrapper-py {
    width: 90%;
    height: 340px;
    margin-top: 60px;
  }

  .expand-title-block {
    top: 24px;
    left: 40px;
  }

  .expand-title-block-py {
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .expand-title,
  .expand-title-gold {
    font-size: 38px;
  }

  .expand-button {
    bottom: 90px;
    left: 40px;
  }

  .expand-cta {
    padding: 20px 40px;
    font-size: 15px;
  }

  .paraguay-button-holder {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 160px;
  }

  .expand-cta-py,
  .expand-cta-py2 {
    padding: 20px 40px;
    font-size: 15px;
  }

  .scroll-lock-section {
    height: auto;
    padding: 80px 20px;
  }

  .scroll-text-wrap {
    font-size: 40px;
    line-height: 1.4;
    margin-bottom: -100px;
  }
}

@media screen and (max-width: 768px) {
  .expand-section {
    padding: 80px 15px 80px;
  }

  .expand-wrapper,
  .expand-wrapper-py {
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 16px;
  }

  .expand-picture {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .expand-title-block,
  .expand-title-block-py {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
  }

  .expand-title,
  .expand-title-gold {
    font-size: 24px;
    line-height: 1.2;
  }

  .expand-button {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
  }

  .expand-cta {
    padding: 16px 28px;
    font-size: 15px;
  }

  /* Paraguay button group */
  .paraguay-button-holder {
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-top: 80px;
    margin-right: 20px;
  }

  .expand-cta-py,
  .expand-cta-py2 {
    padding: 14px 26px;
    font-size: 14px;
    border-radius: 16px;
  }

  .scroll-lock-section {
    padding-top: 40px;
  }

  .scroll-text-wrap {
    font-size: 30px;
    margin-bottom: -80px;
  }
}

@media screen and (max-width: 410px) {
  .expand-section {
    padding: 60px 10px 60px;
  }

  .expand-wrapper,
  .expand-wrapper-py {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 14px;
  }

  .expand-picture {
    width: 100%;
    height: auto;
    border-radius: 14px;
  }

  .expand-title-block,
  .expand-title-block-py {
    position: absolute;
    top: 18px;
    left: 14px;
    right: 14px;
    text-align: left;
  }

  .expand-title,
  .expand-title-gold {
    font-size: 20px;
    line-height: 1.2;
  }

  .expand-button {
    position: absolute;
    left: 14px;
    bottom: 16px;
    z-index: 3;
  }

  .expand-cta {
    padding: 12px 22px;
    font-size: 14px;
    border-radius: 14px;
  }

  .paraguay-button-holder {
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-top: 70px;
    margin-right: 14px;
  }

  .expand-cta-py,
  .expand-cta-py2 {
    padding: 12px 22px;
    font-size: 13px;
    border-radius: 14px;
  }

  .scroll-lock-section {
    padding-top: 30px;
  }

  .scroll-text-wrap {
    font-size: 24px;
    margin-bottom: -60px;
  }
}


/*Faq*/
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .faq-title {
    font-size: 22px;
    padding: 0 20px;
  }

  .faq-question {
    font-size: 20px;
    gap: 10px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-arrow {
    font-size: 26px;
  }

  .faq-answer {
    font-size: 15px;
    padding-left: 36px;
  }
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 20px;
    padding: 0 10px;
  }

  .faq-question {
    font-size: 18px;
    flex-direction: row;
    gap: 10px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-arrow {
    font-size: 24px;
  }

  .faq-answer {
    font-size: 15px;
    padding-left: 32px;
  }
}

@media (max-width: 410px) {
  .faq-title {
    font-size: 18px;
  }

  .faq-question {
    font-size: 16px;
    gap: 8px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-arrow {
    font-size: 20px;
  }

  .faq-answer {
    font-size: 14px;
    padding-left: 28px;
  }
}


/*Team*/
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .team-scroll-wrapper {
    padding: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    /* ✅ Restore fading corners */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }

  #team-cardholder {
    gap: 0px;             /* ✅ Clean space between cards */
    padding: 0 20px;
    width: fit-content;
  }

  #team-cardholder .swiper-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }

  .team-card {
    width: 180px;
    aspect-ratio: 3 / 4.5;
    border-radius: 18px;
  }

  .team-profile {
    width: 180px;
  }

  .team-name {
    font-size: 16px;
  }

  .team-role {
    font-size: 13px;
  }

  .linkedinteam-icon {
    width: 42px;
    height: 42px;
  }

  .team-photo {
    object-fit: cover;
  }

  .team-namerole {
    height: 58px;
  }

  .team-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;            /* Full viewport width */
    height: 100%;            /* Match section height */
    transform: none;         /* Reset any shifting */
    opacity: 1;              /* Same contrast as desktop */
    z-index: 0;
    pointer-events: none;
  }

  .team-background svg {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .team-scroll-wrapper {
    padding: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    /* ✅ Restore fading corners */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }

  #team-cardholder {
    gap: 0px;
    padding: 0 16px;
    width: fit-content;
  }

  #team-cardholder .swiper-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }

  .team-card {
    width: 160px;
    aspect-ratio: 3 / 4.5;
    border-radius: 16px;
  }

  .team-profile {
    width: 160px;
  }

  .team-name {
    font-size: 15px;
  }

  .team-role {
    font-size: 12px;
  }

  .linkedinteam-icon {
    width: 38px;
    height: 38px;
  }

  .team-photo {
    object-fit: cover;
  }

  .team-namerole {
    height: 54px;
  }

  .team-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    transform: none;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
  }

  .team-background svg {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 410px) {
  .team-scroll-wrapper {
    padding: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;

    /* ✅ Restore fading corners */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  }

  #team-cardholder {
    gap: 0px;
    padding: 0 12px;
    width: fit-content;
  }

  #team-cardholder .swiper-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }

  .team-card {
    width: 145px;
    aspect-ratio: 3 / 4.5;
    border-radius: 15px;
  }

  .team-profile {
    width: 145px;
  }

  .team-name {
    font-size: 14px;
  }

  .team-role {
    font-size: 11px;
  }

  .linkedinteam-icon {
    width: 36px;
    height: 36px;
  }

  .team-photo {
    object-fit: cover;
  }

  .team-namerole {
    height: 52px;
  }

  .team-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    transform: none;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
  }

  .team-background svg {
    width: 100%;
    height: 100%;
  }
}

/*Footer*/
@media screen and (max-width: 1080px) and (min-width: 769px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
  }

  .footer-left {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .logo-area-footer {
    justify-content: center;
    margin-left: 0;
  }

  .footer-note {
    text-align: center;
    padding: 0 10px;
  }

  .footer-divider {
    display: none;
  }

  .socials {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }

  .sociallogos {
    margin-left: 0;
    justify-content: center;
  }

  .email-holder {
    justify-content: center;
  }

  .reserved {
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
  }

  .site-footer-bottom {
    flex-direction: column-reverse;   /* ⬅️ moves privacy above copyright */
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-top: 25px;
  }

  .privacy-text {
    margin: 0;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }

  .footer-left {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .logo-area-footer {
    justify-content: center;
    margin-left: 0;
  }

  .footer-note {
    text-align: center;
    font-size: 15px;
    padding: 0 10px;
  }

  .footer-divider {
    display: none;
  }

  .socials {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }

  .socialtext {
    font-size: 15px;
  }

  .sociallogos {
    margin-left: 0;
    gap: 10px;
    justify-content: center;
  }

  .email-holder {
    justify-content: center;
    gap: 8px;
  }

  .email-text {
    font-size: 15px;
  }

  .reserved {
    margin: 0 auto;
    font-size: 13.5px;
    text-align: center;
  }

  .site-footer-bottom {
    flex-direction: column-reverse;   /* ⬅️ moves privacy above copyright */
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-top: 25px;
  }

  .privacy-text {
    margin: 0;
    font-size: 13.5px;
  }
}

@media screen and (max-width: 410px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 16px;
  }

  .footer-left {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .logo-area-footer {
    justify-content: center;
    margin-left: 0;
  }

  .footer-note {
    text-align: center;
    font-size: 14px;
    padding: 0 6px;
  }

  .footer-divider {
    display: none;
  }

  .socials {
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }

  .socialtext {
    font-size: 14px;
  }

  .sociallogos {
    margin-left: 0;
    gap: 8px;
  }

  .email-holder {
    justify-content: center;
    gap: 6px;
  }

  .email-text {
    font-size: 14px;
  }

  .reserved {
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
  }

  .site-footer-bottom {
    flex-direction: column-reverse;   /* ⬅️ moves privacy above copyright */
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-top: 25px;
  }

  .privacy-text {
    margin: 0;
    font-size: 13px;
  }
}