/* CAREER PAGE STYLES */

/* REMOVE FOCUS OUTLINE - Career page */
*:focus,
*:focus-visible,
button:focus,
button:focus-visible,
a:focus,
a:focus-visible,
.apply-button:focus,
.apply-button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Ensure header styles are properly inherited */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* Career Hero Section */

.career-hero {
  padding: 0.5rem clamp(1rem, 5vw, 2rem) 0.5rem clamp(1rem, 5vw, 2rem);
  background: #f0f1f0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100vw;
}

.career-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

.astronaut-img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
}

.career-hero-text {
  color: #1a1c1c;
}

.career-hero-text h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
  color: #1a1c1c;
  line-height: 1;
}

.career-hero-text h1 .highlight {
  color: var(--color-accent);
}

.career-description h2 {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 0 auto;
  color: #1a1c1c;
  line-height: 1.4;
}

.career-description h2 .highlight-ic {
  color: #1ad1c9;
  font-weight: 400; /* Peso da fonte mais forte */
}

.career-description h2 .highlight {
  font-weight: 400; /* Peso da fonte mais forte */
}

.career-description p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #1a1c1c;
  opacity: 0.8;
}

.career-description .welcome {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1a1c1c;
  font-family: 'Space Grotesk',sans-serif;
  font-weight: 500;
  opacity: 1;
}

.career-description .highlight-welcome {
  color: var(--color-accent);
  font-weight: 600;
}

.career-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-weight: 400;
  font-size: 1.2rem;
  color: white;
}

.tag.green {
  background-color: #ff6a13;
  color: #1a1c1c;
}

.tag.teal {
  background-color: #adf29c;
  color: #1a1c1c;
}

.tag.blue {
  background-color: #1ad1c9;
  color: #1a1c1c;
}

.tag.purple {
  background-color: #00548c;
}

.tag.dark {
  background-color: #665cd9;
}

.rocket {
  font-size: 2rem;
  margin-left: 0.5rem;
}

/* Responsive adjustments */

@media (max-width: 1024px) {
  .career-hero {
    padding: 6rem clamp(1rem, 4vw, 3rem) 3rem; /* Added extra top padding for mobile menu */
    min-height: auto;
  }
  
  .career-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .career-hero-text h1 {
    font-size: 2.5rem;
  }
  
  .career-description h2 {
    font-size: 1.3rem;
  }
  
  .career-tagline {
    justify-content: center;
  }
  
  .astronaut-img {
    max-height: 300px;
  }
}


/* Talent Nurturing Section */
.talent-section {
  padding: 0.5rem clamp(1rem, 5vw, 3rem);
  background: #f0f1f0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

.talent-content {
  max-width: 1400px;
  margin: 0 auto;
}

.talent-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 3rem;
  margin-top: 0;
  color: #1a1c1c;
  text-align: center;
}

.talent-content h2 .highlight {
  color: var(--color-accent);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 1rem 2rem 1rem;
  position: relative;
}

.benefit-card {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
  transition: transform 0.3s ease, z-index 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

/* Random rotations and overlapping for each card - 3x2 grid layout */
.benefit-card:nth-child(1) {
  transform: rotate(-8deg);
  z-index: 6;
}

.benefit-card:nth-child(2) {
  transform: rotate(5deg);
  z-index: 5;
}

.benefit-card:nth-child(3) {
  transform: rotate(-3deg);
  z-index: 4;
}

.benefit-card:nth-child(4) {
  transform: rotate(7deg);
  z-index: 3;
}

.benefit-card:nth-child(5) {
  transform: rotate(-6deg);
  z-index: 2;
}

.benefit-card:nth-child(6) {
  transform: rotate(4deg);
  z-index: 1;
}

/* Hover effect to bring card to front */
.benefit-card:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
}

.benefit-card.dark {
  background: #1a1c1c;
  color: white;
  box-shadow: 0 4px 12px #1a1c1c41;
}

.benefit-card.orange {
  background: linear-gradient(135deg, #ff6a13, #ffac7b);
  box-shadow: 0 4px 12px #1a1c1c41;
}

.benefit-card.light-green {
  background: linear-gradient(135deg, #adf29c, #cef5c4);
  box-shadow: 0 4px 12px #1a1c1c41;
}

.benefit-card.purple {
  background: linear-gradient(135deg, #665cd9, #968fdd);
  box-shadow: 0 4px 12px #1a1c1c41;
}

.benefit-icon img{
  font-size: 2rem;
  color: white;
}

.benefit-icon img {
  width: 8rem;
  height: 8rem;
}

.benefit-icon.euro span {
  font-size: 4rem;
  font-weight: bold;
  color: #2a2a2a;
}

.benefit-text {
  text-align: center;
}

.benefit-text h3 {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
}

/* Smile icon specific styling */
.benefit-icon img[src*="smile.png"] {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
}





/* Gallery Section */
.gallery-section {
  background: #f0f1f0;
  padding: 30px clamp(1rem, 5vw, 3rem) 80px; /* Adjusted bottom padding */
  overflow: visible; /* Changed from hidden to visible for shadow */
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.gallery-content {
  max-width: 1350px; /* Reduced from 1400px */
  margin: 0 auto;
  padding: 0 clamp(10px, 2vw, 10px);
  width: 100%;
}

.gallery-content h2 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  color: #1a1c1c;
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
}
.gallery-content h2 .highlight {
  color: var(--color-accent);
}

/* Gallery Carousel Container */
.gallery-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0 60px 0; /* Reduced bottom padding to bring indicators closer */
  cursor: grab;
}

.gallery-carousel-container:active {
  cursor: grabbing;
}

.gallery-carousel-container.dragging {
  cursor: grabbing !important;
  user-select: none;
}

.gallery-carousel-container.dragging * {
  pointer-events: none;
  user-select: none;
}

/* Gallery Track for infinite scrolling */
.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.3s ease;
  cursor: url("../images/cursors/drag-cursor-dark.svg") 16 16, grab;
}

.gallery-track.no-transition {
  transition: none !important;
}

.gallery-track.dragging {
  cursor: grabbing !important;
  transition: none !important;
}

/* Gallery Cards */
.gallery-card {
  flex-shrink: 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-origin: center;
  opacity: 1;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}

/* Center item scaling effect for infinite carousel */
.gallery-card.center-item {
  transform: scale(1.15);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 1;
}

.gallery-card.center-item:hover {
  transform: scale(1.15) translateY(-5px);
}

/* Clone items styling */
.gallery-card.clone {
  opacity: 1;
}

.gallery-card.clone.center-item {
  opacity: 1;
}

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

/* Gallery Navigation Buttons - HIDDEN */
.gallery-nav-btn {
  display: none;
}

/* Gallery Indicators */
.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -50px; /* Increased negative margin to bring indicators closer */
}

.gallery-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(26, 28, 28, 0.3);
  transition: all 0.3s ease;
}

.gallery-indicator.active {
  background: #1ad1c9;
  transform: scale(1.2);
}

.gallery-indicator:hover {
  background: #1ad1c9;
  opacity: 0.8;
}

/* Different sizes and shapes */
.gallery-card.tall {
  width: 200px;
  height: 300px;
}

.gallery-card.wide {
  width: 350px;
  height: 200px;
}

.gallery-card.medium {
  width: 250px;
  height: 250px;
}

.gallery-card.large {
  width: 400px;
  height: 300px;
}

.gallery-card.small {
  width: 180px;
  height: 180px;
}

.gallery-card.medium-wide {
  width: 320px;
  height: 220px;
}

.gallery-card.tall-wide {
  width: 280px;
  height: 350px;
}

.gallery-card.square {
  width: 220px;
  height: 220px;
}

.gallery-card.small-tall {
  width: 160px;
  height: 240px;
}


/* ==============================================
   THE GOOD STUFF SECTION
   ============================================== */

.good-stuff-section {
  background: #f0f1f0;
  padding: 5rem 0 clamp(0.5rem, 5vw, 2rem) 0; /* Increased top padding from 2rem to 5rem for more space */
  color: #1a1c1c;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.good-stuff-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(10px, 2vw, 20px);
  width: 100%;
}

.good-stuff-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.good-stuff-header h2 {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #1a1c1c;
}

.good-stuff-highlight {
  color: #1ad1c9;
  font-weight: 00;
}

/* Carousel Container */
.good-stuff-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.good-stuff-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.good-stuff-track {
  display: flex;
  gap: 15px;
  padding: 40px 20px;
  overflow: visible;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  cursor: url("../images/cursors/drag-cursor-dark.svg") 24 24, grab;
  /* No transitions - completely free movement */
}

/* Hide scrollbar for WebKit browsers */
.good-stuff-track::-webkit-scrollbar {
  display: none;
}

.good-stuff-track:active {
  cursor: url("../images/cursors/drag-cursor-dark.svg") 24 24, grabbing;
}

.good-stuff-track.dragging {
  cursor: url("../images/cursors/drag-cursor-dark.svg") 24 24, grabbing !important;
  transition: none; /* Disable transition during drag */
}




/* Good Stuff Cards */
.good-stuff-card {
  border-radius: 15px;
  padding: 25px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem; /* Increased gap between header and content */
  width: 380px;
  min-width: 380px; /* Ensure fixed width */
  flex-shrink: 0; /* Prevent shrinking */
  position: relative;
}

.good-stuff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



/* Card Colors */
.health-card {
  background: linear-gradient(135deg, #adf29c, #cef5c4bb);
}

.vacation-card {
  background: linear-gradient(135deg, #665cd9, #665cd9c0);
}

.pension-card {
  background: linear-gradient(135deg, #1ad1c9, #7ce3dec5);
}

.learning-card {
  background: linear-gradient(135deg, #1a1c1c, #1a1c1cb5);
}

.team-retreats-card {
  background: linear-gradient(135deg, #ff6a13, #ff6a13c7);
}

.holiday-rest-card {
  background: linear-gradient(135deg, #00548c, #00548cb6);
}

.pet-friendly-card {
  background: linear-gradient(135deg, #adf29c, #cef5c4bb);
}


/* Card Number */
.card-number {
  font-size: 3rem;
  font-weight: 500;
  color: #1a1c1c;
  margin-left: 10px;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vacation-card .card-number,
.learning-card .card-number,
.holiday-rest-card .card-number {
  color: #f0f1f0;
}

/* Card Content - Only for Good Stuff Section */
.good-stuff-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 15px; /* Remove any bottom margin */
}

.good-stuff-card .card-content h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-left: 10px;
  color: #1a1c1c;
  font-family: 'Space Grotesk', sans-serif;
}

.good-stuff-card .card-header h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-left: 10px;
  color: #1a1c1c;
  font-family: 'Space Grotesk', sans-serif;
}

.vacation-card .card-header h3,
.learning-card .card-header h3,
.holiday-rest-card .card-header h3 {
  color: #f0f1f0 !important; /* Force color with !important for dark cards */
}

.good-stuff-card .card-content p {
  margin-top: 0; /* Remove top margin completely */
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  margin-bottom: 0;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1c1c;
}

/* New styles for card header - Only for Good Stuff Section */
.good-stuff-card .card-header {
  display: flex;
  gap: 10px;
  position: relative;
}

.good-stuff-card .card-header .card-number {
  align-self: flex-start; /* Start at the top */
  margin-top: 0.1em; /* Adjust to align with middle of first text line */
  line-height: 1;
  flex-shrink: 0;
}

.good-stuff-card .card-header h3 {
  line-height: 1.2; /* Consistent line height for multi-line titles */
  margin: 0; /* Remove default margins */
  flex: 1; /* Take remaining space */
}

.vacation-card .card-content p,
.learning-card .card-content p,
.holiday-rest-card .card-content p {
  color: white;
}

.vacation-card .card-content p {
  text-align: left; /* Justify vacation time text to the left */
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f0f1f0;
  border: 3px solid #1a1c1c;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex !important; /* Force display */
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10; /* Lower z-index to stay behind menu */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Add shadow for visibility */
}

.carousel-arrow:hover {
  background: rgba(26, 209, 201, 0.2);
  border-color: var(--color-accent);
}

.carousel-arrow:hover img {
  opacity: 0.6;
}

.carousel-arrow img {
  width: 15px;
  height: auto;
}

.carousel-arrow-left {
  left: 10px; /* Fixed at left edge of section */
}

.carousel-arrow-left img {
  transform: rotate(180deg);
}

.carousel-arrow-right {
  right: 10px; /* Fixed at right edge of section */
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.indicator-dot.active {
  background-color: var(--color-accent);
}

/* Responsive Design for Gallery and Good Stuff - Reduced spacing between sections */
@media (max-width: 1024px) {
  .gallery-section {
    padding: 30px clamp(1rem, 5vw, 3rem) 60px; /* Increased bottom padding for more space */
  }

  /* Gallery title responsive */
  .gallery-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }
  
  .good-stuff-section {
    padding: 4rem clamp(15px, 2vw, 20px) clamp(30px, 4vw, 40px) clamp(15px, 2vw, 20px); /* Increased top padding for more space */
  }

  .good-stuff-header {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .good-stuff-carousel {
    max-width: clamp(calc(100vw - 30px), 95vw, calc(100vw - 40px));
    margin: 0 auto;
  }
  
  .good-stuff-container {
    max-width: clamp(calc(100vw - 30px), 95vw, calc(100vw - 40px));
  }
  
  .good-stuff-card {
    width: clamp(240px, 30vw, 380px);
    min-height: clamp(220px, 25vh, 280px);
    padding: clamp(20px, 2.5vw, 25px);
  }
  
  .card-number {
    font-size: clamp(2rem, 4vw, 3rem);
    width: clamp(40px, 8vw, 60px);
  }
  
  .good-stuff-card .card-header h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    line-height: 1.2;
  }
  
  .good-stuff-card .card-content h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  }
  
  .good-stuff-card .card-content p {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    line-height: clamp(1.4, 1.5, 1.6);
  }
  
  .carousel-arrow {
    width: clamp(35px, 5vw, 45px);
    height: clamp(35px, 5vw, 45px);
  }
  
  .carousel-arrow img {
    width: clamp(10px, 2vw, 15px);
  }
  
  .carousel-arrow-left {
    left: clamp(2px, 1.5vw, 20px);
  }
  
  .carousel-arrow-right {
    right: clamp(2px, 1.5vw, 20px);
  }
}

/* Gallery cards responsive - smaller sizes for mobile */
@media (max-width: 768px) {
  .gallery-card.tall {
    width: 150px;
    height: 220px;
  }

  .gallery-card.wide {
    width: 260px;
    height: 150px;
  }

  .gallery-card.medium {
    width: 180px;
    height: 180px;
  }

  .gallery-card.large {
    width: 280px;
    height: 220px;
  }

  .gallery-card.small {
    width: 140px;
    height: 140px;
  }

  .gallery-card.medium-wide {
    width: 240px;
    height: 160px;
  }

  .gallery-card.tall-wide {
    width: 200px;
    height: 260px;
  }

  .gallery-card.square {
    width: 160px;
    height: 160px;
  }

  .gallery-card.small-tall {
    width: 120px;
    height: 180px;
  }

  /* Gallery carousel container responsive */
  .gallery-carousel-container {
    padding: 40px 0 40px 0;
  }

  .gallery-indicators {
    margin-top: -40px;
  }
}

/* Benefit cards responsive - Consolidated */
@media (max-width: 600px) {
  .benefit-icon img,
  .benefit-icon img[src*="smile.png"] {
    width: clamp(6rem, 12vw, 8rem) !important;
    height: clamp(6rem, 12vw, 8rem) !important;
  }
  
  .benefit-icon.euro span {
    font-size: clamp(3rem, 6vw, 4rem) !important;
  }
}






/* CURRENT OPENINGS SECTION */
.our-opportunities {
  padding: clamp(2rem, 4vw, 3rem) 0 0 0;
  background: #f0f1f0;
  width: 100%;
  max-width: 100vw;
}

.opportunities-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 6vw, 6rem);
}

.opportunities-header {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 clamp(2rem, 4vw, 3rem) 0;
}

.opportunities-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: #1a1c1c;
  line-height: 0.9;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  text-align: right;
}

.opportunities-title span {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: #1ad1c9;
  line-height: 0.9;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.our-opportunities img {
  width: clamp(1rem, 4vw, 3rem);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
  justify-self: center;
  align-self: center;
}

.opportunities-description {
  font-size: clamp(0.9rem, 1.2vw, 1.5rem);
  color: #1a1c1c;
  line-height: 1.6;
  margin: 0;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
}

.opportunities-description-highlight {
  font-size: clamp(0.9rem, 1.2vw, 1.5rem);
  color: #1a1c1c;
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
}

.apply-action {
  padding: clamp(1rem, 1.5vw, 3rem) clamp(1rem, 3vw, 2rem) 8rem clamp(1rem, 3vw, 2rem);
  text-align: center;
  background: #f0f1f0;
}

.apply-button {
  max-width: 1000px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 50px;
  background: #1a1c1c;
  color: #f0f1f0;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.apply-button span {
  flex: 1;
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
}

.apply-button:hover {
  background: #1ad1c9;
  color: #1a1c1c;
  transform: translateY(-2px);
}

.apply-button:hover .apply-arrow-circle img {
  filter: brightness(0); /* Make arrow black on hover */
}

.apply-arrow-circle {
  width: clamp(35px, 6vw, 45px);
  height: clamp(35px, 6vw, 45px);
  border-radius: 50%;
  background: #1ad1c9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.apply-arrow-circle img {
  width: clamp(14px, 3vw, 24px);
  height: clamp(14px, 3vw, 24px);
  filter: brightness(0); /* Make arrow black by default */
  transition: filter 0.3s ease;
  display: block;
  margin: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .apply-spontaneously {
    padding: clamp(1.5rem, 3vw, 2rem) 0 clamp(3rem, 5vw, 4rem) 0;
  }
  
  .apply-content {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
  }
  
  .apply-action {
    text-align: center;
  }
  
  .apply-text h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  
  .apply-action p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
}


/*.openings-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.8rem, 2vw, 1rem);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem); /* Add lateral padding for screens below 1400px
}

.opening-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 50px;
  background: #1a1c1c;
  color: #f0f1f0;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.opening-button span {
  flex: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.arrow-circle {
  width: clamp(35px, 6vw, 45px);
  height: clamp(35px, 6vw, 45px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.arrow-circle img {
  width: clamp(14px, 3vw, 24px);
  height: clamp(14px, 3vw, 24px);
  filter: brightness(0) invert(1); /* Make arrow white by default
  transition: filter 0.3s ease;
  display: block;
  margin: auto;
}
*/

/* Exceptions: Make arrows black for cyan, orange and green buttons in normal state
.opening-button.cyan .arrow-circle img,
.opening-button.orange .arrow-circle img,
.opening-button.green .arrow-circle img,
.opening-button.cyan-alt .arrow-circle img {
  filter: brightness(0); /* Make arrow black for these buttons */

/* Arrow circle colors
.arrow-circle.cyan { background: #1ad1c9; }
.arrow-circle.purple { background: #665cd9; }
.arrow-circle.orange { background: #ff6a13; }
.arrow-circle.green { background: #adf29c; }
.arrow-circle.purple-alt { background: #665cd9; }
.arrow-circle.cyan-alt { background: #1ad1c9; }

/* Hover effects *
.opening-button.cyan:hover {
  background: #1ad1c9;
  color: #1a1c1c;
}

.opening-button.cyan:hover .arrow-circle img {
  filter: brightness(0); /* Make arrow black on hover *
}

.opening-button.purple:hover {
  background: #665cd9;
  color: #f0f1f0;
}

.opening-button.orange:hover {
  background: #ff6a13;
  color: #1a1c1c;
}

.opening-button.orange:hover .arrow-circle img {
  filter: brightness(0); /* Make arrow black on hover *
}

.opening-button.green:hover {
  background: #adf29c;
  color: #1a1c1c;
}

.opening-button.green:hover .arrow-circle img {
  filter: brightness(0); /* Make arrow black on hover *
}

.opening-button.purple-alt:hover {
  background: #665cd9;
  color: #f0f1f0;
}

.opening-button.cyan-alt:hover {
  background: #1ad1c9;
  color: #1a1c1c;
}

.opening-button.cyan-alt:hover .arrow-circle img {
  filter: brightness(0); /* Make arrow black on hover */

/* Responsive Design - Arrow repositioning ONLY below 1024px */
@media (max-width: 1024px) {
  .opportunities-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
    gap: clamp(1.5rem, 3vw, 2rem);
    }
  
  /* Title stays at top and centered */
  .opportunities-title {
    margin-bottom: 0;
    text-align: center;
  }
  
  /* Hide the original arrow */
  .opportunities-header img {
    display: none;
  }
  
  /* Container div for arrow + text (arrow closer to text) */
  .opportunities-description {
    position: relative;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
    line-height: 1.6;
    padding-left: clamp(3.7rem, 8vw, 12rem); /* Reduced space for arrow */
  }
  
  /* Add arrow positioned closer to text, aligned right in its area */
  .opportunities-description::before {
    content: '';
    position: absolute;
    left: clamp(1.5rem, 2vw, 3rem); /* Move closer to text */
    top: 50%;
    transform: translateY(-50%);
    width: clamp(1.7rem, 6vw, 3.7rem);
    height: clamp(1.7rem, 6vw, 3.7rem);
    background-image: url('../images/career/seta.svg');
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  /* Remove line break and force highlight to second line */
  .opportunities-description br {
    display: none;
  }
  
  .opportunities-description-highlight {
    font-weight: 600;
    display: block; /* Force to new line */
    margin-top: 0; /* No extra spacing */
  }
  
  /* Buttons responsive - change to single column only below 1024px */
  .opportunities-buttons {
    grid-template-columns: 1fr;
    gap: clamp(0.8rem, 1.5vw, 1rem);
  }

  /* Reduced spacing on mobile */
  .opportunities-description {
    margin-top: clamp(0.8rem, 2vw, 1.2rem);
  }

  .apply-action {
    padding-top: clamp(0.8rem, 2vw, 1.2rem);
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  .our-opportunities {
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  }
}




/* The Good Stuff - Reduce opacity of sets on hover */
.the-good-stuff .sets:hover img {
  opacity: 0.6;
}

/* Current Openings - Maintain font-weight on hover */
.current-openings button:hover {
  font-weight: inherit;
}

/* CUSTOM DRAG CURSOR - DESKTOP ONLY */
@media (min-width: 769px) {
  .custom-drag-cursor,
  .custom-drag-cursor .gallery-track,
  .custom-drag-cursor * {
    cursor: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2YwZjFmMDsKICAgICAgfQoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjMWExYzFjOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPgogICAgPHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzIsOC44OXYxNC4yMmMwLC45OC0uOCwxLjc4LTEuNzgsMS43OHMtMS43OC44LTEuNzgsMS43OC0uOCwxLjc4LTEuNzgsMS43OGgtLjAxYy0uOTgsMC0xLjc4LjgtMS43OCwxLjc4cy0uOCwxLjc4LTEuNzgsMS43OGgtMTQuMjJjLS45OCwwLTEuNzgtLjgtMS43OC0xLjc4cy0uNzktMS43Ny0xLjc3LTEuNzhoLS4wMWMtLjk3LDAtMS43Ny0uOC0xLjc3LTEuNzhzLS44LTEuNzgtMS43OC0xLjc4LTEuNzgtLjc5LTEuNzgtMS43OHYtMTQuMjJjMC0uOTguOC0xLjc4LDEuNzgtMS43OHMxLjc4LS44LDEuNzgtMS43OC43OS0xLjc3LDEuNzctMS43OGguMDFjLjk3LDAsMS43Ny0uOCwxLjc3LTEuNzhzLjgtMS43OCwxLjc4LTEuNzhoMTQuMjJjLjk4LDAsMS43OC44LDEuNzgsMS43OHMuOCwxLjc4LDEuNzgsMS43OGguMDFjLjk4LDAsMS43OC44LDEuNzgsMS43OHMuOCwxLjc4LDEuNzgsMS43OCwxLjc4LjgsMS43OCwxLjc4WiIvPgogICAgPGc+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTguOSwxOC4yNWMtLjM0LDAtLjY1LS4wOC0uOTQtLjI1LS4yOS0uMTctLjUzLS40MS0uNy0uNzQtLjE4LS4zMi0uMjYtLjcyLS4yNi0xLjE4di0uMTRjMC0uNDYuMDktLjg1LjI2LTEuMTguMTgtLjMyLjQxLS41Ny43LS43NC4yOS0uMTcuNjEtLjI1Ljk1LS4yNS4yNiwwLC40Ny4wMy42NC4wOS4xNy4wNi4zMS4xNC40Mi4yMy4xMS4wOS4xOS4xOS4yNS4yOWguMTV2LTIuMjNoMS4wOHY1Ljk3aC0xLjA2di0uNTFoLS4xNWMtLjEuMTYtLjI1LjMtLjQ1LjQ0LS4yLjEzLS41LjItLjg4LjJaTTkuMjIsMTcuMzFjLjMzLDAsLjYxLS4xMS44My0uMzJzLjMzLS41Mi4zMy0uOTN2LS4wOWMwLS40MS0uMTEtLjcyLS4zMy0uOTMtLjIyLS4yMS0uNS0uMzItLjgzLS4zMnMtLjYxLjExLS44My4zMmMtLjIyLjIxLS4zMy41Mi0uMzMuOTN2LjA5YzAsLjQxLjExLjcyLjMzLjkzLjIyLjIxLjUuMzIuODMuMzJaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyLjY0LDE4LjEzdi00LjIzaDEuMDZ2LjQ4aC4xNWMuMDYtLjE3LjE3LS4zLjMxLS4zOC4xNS0uMDguMzEtLjEyLjUxLS4xMmguNTF2Ljk2aC0uNTNjLS4yNywwLS41LjA3LS42Ny4yMi0uMTguMTUtLjI2LjM3LS4yNi42N3YyLjQxaC0xLjA4WiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xNy4yMywxOC4yNWMtLjMsMC0uNTctLjA1LS44MS0uMTYtLjI0LS4xMS0uNDMtLjI2LS41Ny0uNDYtLjE0LS4yLS4yMS0uNDUtLjIxLS43NHMuMDctLjUzLjIxLS43M2MuMTQtLjIuMzMtLjM0LjU4LS40NC4yNS0uMS41My0uMTUuODUtLjE1aDEuMTZ2LS4yNGMwLS4yLS4wNi0uMzYtLjE5LS40OS0uMTMtLjEzLS4zMi0uMTktLjYtLjE5cy0uNDcuMDYtLjYuMThjLS4xMy4xMi0uMjIuMjgtLjI2LjQ3bC0uOTktLjMzYy4wNy0uMjIuMTgtLjQxLjMzLS41OS4xNS0uMTguMzUtLjMyLjYxLS40NC4yNS0uMTEuNTYtLjE3LjkzLS4xNy41NiwwLDEsLjE0LDEuMzIuNDIuMzIuMjguNDkuNjguNDksMS4yMXYxLjU4YzAsLjE3LjA4LjI2LjI0LjI2aC4zNHYuODloLS43MmMtLjIxLDAtLjM4LS4wNS0uNTItLjE1LS4xNC0uMS0uMi0uMjQtLjItLjQxaDBzLS4xNiwwLS4xNiwwYy0uMDIuMDctLjA3LjE2LS4xNS4yNy0uMDguMTEtLjIuMjEtLjM4LjI5cy0uNC4xMy0uNy4xM1pNMTcuNDIsMTcuMzhjLjMsMCwuNTUtLjA4Ljc0LS4yNS4xOS0uMTcuMjktLjM5LjI5LS42N3YtLjA5aC0xLjA4Yy0uMiwwLS4zNi4wNC0uNDcuMTMtLjExLjA5LS4xNy4yLS4xNy4zNnMuMDYuMjguMTguMzhjLjEyLjEuMjkuMTUuNTIuMTVaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjU2LDE2LjAzdi0uMTRjMC0uNDQuMDktLjgyLjI2LTEuMTQuMTgtLjMyLjQxLS41Ni43LS43My4yOS0uMTcuNjEtLjI1Ljk2LS4yNS4zOSwwLC42OC4wNy44OC4yLjIuMTQuMzQuMjguNDQuNDNoLjE1di0uNTFoMS4wNnY0Ljk4YzAsLjI5LS4wOS41Mi0uMjYuNy0uMTcuMTctLjQuMjYtLjY4LjI2aC0yLjgzdi0uOTRoMi40NmMuMTYsMCwuMjQtLjA5LjI0LS4yNnYtMS4xaC0uMTVjLS4wNi4wOS0uMTQuMTgtLjI0LjI4LS4xLjA5LS4yNC4xNy0uNDEuMjMtLjE3LjA2LS4zOS4wOS0uNjUuMDktLjM1LDAtLjY3LS4wOC0uOTYtLjI1LS4yOS0uMTctLjUzLS40MS0uNy0uNzMtLjE4LS4zMi0uMjYtLjctLjI2LTEuMTRaTTIyLjc5LDE3LjIxYy4zMywwLC42MS0uMTEuODMtLjMyLjIyLS4yMS4zMy0uNTEuMzMtLjg5di0uMDljMC0uMzktLjExLS42OC0uMzMtLjg5LS4yMi0uMjEtLjUtLjMxLS44My0uMzFzLS42MS4xLS44My4zMWMtLjIyLjIxLS4zMy41LS4zMy44OXYuMDljMCwuMzguMTEuNjguMzMuODkuMjIuMjEuNS4zMi44My4zMloiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPg==') 24 24, grab !important;
  }
  

  
  .custom-drag-cursor:active,
  .custom-drag-cursor.dragging,
  .custom-drag-cursor.dragging * {
    cursor: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2YwZjFmMDsKICAgICAgfQoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjMWExYzFjOwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8ZyBpZD0iTGF5ZXJfMS0yIiBkYXRhLW5hbWU9IkxheWVyIDEiPgogICAgPHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzIsOC44OXYxNC4yMmMwLC45OC0uOCwxLjc4LTEuNzgsMS43OHMtMS43OC44LTEuNzgsMS43OC0uOCwxLjc4LTEuNzgsMS43OGgtLjAxYy0uOTgsMC0xLjc4LjgtMS43OCwxLjc4cy0uOCwxLjc4LTEuNzgsMS43OGgtMTQuMjJjLS45OCwwLTEuNzgtLjgtMS43OC0xLjc4cy0uNzktMS43Ny0xLjc3LTEuNzhoLS4wMWMtLjk3LDAtMS43Ny0uOC0xLjc3LTEuNzhzLS44LTEuNzgtMS43OC0xLjc4LTEuNzgtLjc5LTEuNzgtMS43OHYtMTQuMjJjMC0uOTguOC0xLjc4LDEuNzgtMS43OHMxLjc4LS44LDEuNzgtMS43OC43OS0xLjc3LDEuNzctMS43OGguMDFjLjk3LDAsMS43Ny0uOCwxLjc3LTEuNzhzLjgtMS43OCwxLjc4LTEuNzhoMTQuMjJjLjk4LDAsMS43OC44LDEuNzgsMS43OHMuOCwxLjc4LDEuNzgsMS43OGguMDFjLjk4LDAsMS43OC44LDEuNzgsMS43OHMuOCwxLjc4LDEuNzgsMS43OCwxLjc4LjgsMS43OCwxLjc4WiIvPgogICAgPGc+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTguOSwxOC4yNWMtLjM0LDAtLjY1LS4wOC0uOTQtLjI1LS4yOS0uMTctLjUzLS40MS0uNy0uNzQtLjE4LS4zMi0uMjYtLjcyLS4yNi0xLjE4di0uMTRjMC0uNDYuMDktLjg1LjI2LTEuMTguMTgtLjMyLjQxLS41Ny43LS43NC4yOS0uMTcuNjEtLjI1Ljk1LS4yNS4yNiwwLC40Ny4wMy42NC4wOS4xNy4wNi4zMS4xNC40Mi4yMy4xMS4wOS4xOS4xOS4yNS4yOWguMTV2LTIuMjNoMS4wOHY1Ljk3aC0xLjA2di0uNTFoLS4xNWMtLjEuMTYtLjI1LjMtLjQ1LjQ0LS4yLjEzLS41LjItLjg4LjJaTTkuMjIsMTcuMzFjLjMzLDAsLjYxLS4xMS44My0uMzJzLjMzLS41Mi4zMy0uOTN2LS4wOWMwLS40MS0uMTEtLjcyLS4zMy0uOTMtLjIyLS4yMS0uNS0uMzItLjgzLS4zMnMtLjYxLjExLS44My4zMmMtLjIyLjIxLS4zMy41Mi0uMzMuOTN2LjA5YzAsLjQxLjExLjcyLjMzLjkzLjIyLjIxLjUuMzIuODMuMzJaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEyLjY0LDE4LjEzdi00LjIzaDEuMDZ2LjQ4aC4xNWMuMDYtLjE3LjE3LS4zLjMxLS4zOC4xNS0uMDguMzEtLjEyLjUxLS4xMmguNTF2Ljk2aC0uNTNjLS4yNywwLS41LjA3LS42Ny4yMi0uMTguMTUtLjI2LjM3LS4yNi42N3YyLjQxaC0xLjA4WiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xNy4yMywxOC4yNWMtLjMsMC0uNTctLjA1LS44MS0uMTYtLjI0LS4xMS0uNDMtLjI2LS41Ny0uNDYtLjE0LS4yLS4yMS0uNDUtLjIxLS43NHMuMDctLjUzLjIxLS43M2MuMTQtLjIuMzMtLjM0LjU4LS40NC4yNS0uMS41My0uMTUuODUtLjE1aDEuMTZ2LS4yNGMwLS4yLS4wNi0uMzYtLjE5LS40OS0uMTMtLjEzLS4zMi0uMTktLjYtLjE5cy0uNDcuMDYtLjYuMThjLS4xMy4xMi0uMjIuMjgtLjI2LjQ3bC0uOTktLjMzYy4wNy0uMjIuMTgtLjQxLjMzLS41OS4xNS0uMTguMzUtLjMyLjYxLS40NC4yNS0uMTEuNTYtLjE3LjkzLS4xNy41NiwwLDEsLjE0LDEuMzIuNDIuMzIuMjguNDkuNjguNDksMS4yMXYxLjU4YzAsLjE3LjA4LjI2LjI0LjI2aC4zNHYuODloLS43MmMtLjIxLDAtLjM4LS4wNS0uNTItLjE1LS4xNC0uMS0uMi0uMjQtLjItLjQxaDBzLS4xNiwwLS4xNiwwYy0uMDIuMDctLjA3LjE2LS4xNS4yNy0uMDguMTEtLjIuMjEtLjM4LjI5cy0uNC4xMy0uNy4xM1pNMTcuNDIsMTcuMzhjLjMsMCwuNTUtLjA4Ljc0LS4yNS4xOS0uMTcuMjktLjM5LjI5LS42N3YtLjA5aC0xLjA4Yy0uMiwwLS4zNi4wNC0uNDcuMTMtLjExLjA5LS4xNy4yLS4xNy4zNnMuMDYuMjguMTguMzhjLjEyLjEuMjkuMTUuNTIuMTVaIi8+CiAgICAgIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTIwLjU2LDE2LjAzdi0uMTRjMC0uNDQuMDktLjgyLjI2LTEuMTQuMTgtLjMyLjQxLS41Ni43LS43My4yOS0uMTcuNjEtLjI1Ljk2LS4yNS4zOSwwLC42OC4wNy44OC4yLjIuMTQuMzQuMjguNDQuNDNoLjE1di0uNTFoMS4wNnY0Ljk4YzAsLjI5LS4wOS41Mi0uMjYuNy0uMTcuMTctLjQuMjYtLjY4LjI2aC0yLjgzdi0uOTRoMi40NmMuMTYsMCwuMjQtLjA5LjI0LS4yNnYtMS4xaC0uMTVjLS4wNi4wOS0uMTQuMTgtLjI0LjI4LS4xLjA5LS4yNC4xNy0uNDEuMjMtLjE3LjA2LS4zOS4wOS0uNjUuMDktLjM1LDAtLjY3LS4wOC0uOTYtLjI1LS4yOS0uMTctLjUzLS40MS0uNy0uNzMtLjE4LS4zMi0uMjYtLjctLjI2LTEuMTRaTTIyLjc5LDE3LjIxYy4zMywwLC42MS0uMTEuODMtLjMyLjIyLS4yMS4zMy0uNTEuMzMtLjg5di0uMDljMC0uMzktLjExLS42OC0uMzMtLjg5LS4yMi0uMjEtLjUtLjMxLS44My0uMzFzLS42MS4xLS44My4zMWMtLjIyLjIxLS4zMy41LS4zMy44OXYuMDljMCwuMzguMTEuNjguMzMuODkuMjIuMjEuNS4zMi44My4zMloiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPg==') 24 24, grabbing !important;
  }
  

}


