:root {
  --white: #ffffff;
  --gray-50: #f7f7f7;
  --gray-200: #dfdfdf;
  --gray-300: #c8c8c8;
  --gray-400: #adadad;
  --gray-700: #7b7b7b;
  --dark-500: #04060b;
  --light-950: #242528;
  --gray-500: #a1a1a1;
  --primary-blue-700: #1a5c77;
  --primary-blue-600: #217599;
  --primary-blue-500: #2481a8;
  --primary-blue-300: #6cabc5;
  --primary-blue-200: #9ac5d7;
  --primary-blue-100: #ccd8de;
  --neutral-blue-50: #eff3f4;
  --neutral-blue-100: #ccd8de;
  --secondary-blue-200: #a1d7ee;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--gray-50);
  color: var(--dark-500);
}

/* ===== SECTION BASE ===== */
.section {
  width: 100%;
  max-width: 1392px;
  margin: 0 auto 24px;
  border-radius: 24px;
  overflow: hidden;
  box-sizing: border-box;
}

/* ===== SHARED TYPOGRAPHY ===== */
.section-title-lg {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: -0.96px;
  color: var(--dark-500);
}

.section-title-lg strong {
  font-weight: 700;
  color: var(--primary-blue-500);
}

.section-title-lg.white-text {
  color: var(--white);
}

.section-title-lg.white-text strong {
  color: var(--white);
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark-500);
}

.section-subtitle.gray {
  color: var(--gray-700);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.section-header.white .section-title-lg {
  color: var(--white);
}

.section-header.white .section-subtitle {
  color: var(--white);
}

.section-header.white .section-title-lg strong {
  color: var(--white);
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 4px 24px;
  border-radius: 999px;
  background: var(--primary-blue-500);
  border: none;
  color: var(--white);
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--neutral-blue-50);
  flex-shrink: 0;
}

.btn-arrow.blue {
  background: var(--primary-blue-500);
}

.btn-white {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 4px 24px;
  border-radius: 999px;
  background: var(--white);
  border: none;
  color: var(--dark-500);
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
  background: transparent;
  border: none;
  font-size: 16px;
  color: var(--light-950);
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(36, 129, 168, 0.24);
  background: var(--primary-blue-600);
}

.btn-outline:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: var(--gray-50);
}

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 64px;
  background: var(--white);
  border-radius: 16px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  width: 88px;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 88px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

.menu {
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border-radius: 999px;
  padding: 8px 16px;
  gap: 8px;
}

.menu-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark-500);
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

.menu-item.active {
  background: var(--primary-blue-500);
  color: var(--white);
}

.menu-item:hover {
  background: var(--primary-blue-500);
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--white);
  padding-bottom: 48px;
}

.hero-content {
  display: flex;
  gap: 80px;
  padding: 0 64px 0;
}

.text-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 718px;
}

h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2px;
  color: var(--dark-500);
}

h1 span {
  font-weight: 700;
  color: var(--primary-blue-500);
}

.search-job {
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border-radius: 999px;
  padding: 8px;
  gap: 12px;
}

.search-input,
.location-input {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  padding: 14px 16px;
  gap: 8px;
}

.search-input {
  flex: 1;
}

.location-input {
  width: 155px;
  flex-shrink: 0;
}

.search-input svg,
.location-input svg {
  flex-shrink: 0;
}

input[type="text"],
input[type="email"] {
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.55;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex: 1;
  min-width: 0;
  background: transparent;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--primary-blue-500);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.description {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.description p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.36px;
  color: var(--dark-500);
}

.button-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.avatars {
  display: flex;
  position: relative;
}

.avatars img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-left: -28px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

/* Hero Images */
.images {
  display: flex;
  gap: 16px;
}

.row1,
.row2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 280px;
}

.profile-img {
  width: 280px;
  height: 452px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--secondary-blue-200);
}

.profile-img img {
  position: absolute;
  top: calc(50% + 84px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 343px;
  height: 620px;
  object-fit: cover;
}

.card {
  width: 280px;
  height: 250px;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: var(--primary-blue-200);
}

.row2 .card {
  background: var(--primary-blue-300);
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.36px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.faq-img {
  width: 280px;
  height: 452px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--neutral-blue-100);
}

.faq-img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}

/* ===== HOW WE WORK ===== */
.how-we-work {
  background: var(--primary-blue-600);
  position: relative;
  padding: 64px;
}

.hww-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/background-1.b99237b56d7c.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hww-content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.hww-image {
  flex: 1;
  height: 552px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.hww-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
}

.hww-steps {
  width: 450px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 32px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--white);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.4px;
}

.step-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

/* ===== JOBS SECTION ===== */
.jobs-section {
  background: var(--white);
  padding: 64px;
}

#vagas {
  scroll-margin-top: 16px;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.jobs-row {
  display: flex;
  gap: 32px;
}

.job-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
  min-width: 0;
}

.job-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.job-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.job-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: var(--dark-500);
}

.job-location {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.28px;
  color: var(--gray-700);
}

.job-time {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.28px;
  color: var(--gray-700);
  white-space: nowrap;
  flex-shrink: 0;
}

.job-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--primary-blue-700);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.28px;
  white-space: nowrap;
}

.job-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job-avatars {
  display: flex;
  align-items: center;
}

.job-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: -18px;
  object-fit: cover;
  position: relative;
}

.avatar-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue-700);
  border: none;
  cursor: pointer;
  margin-right: -18px;
  position: relative;
  flex-shrink: 0;
}

.apply-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--primary-blue-500);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== SOMETHING ABOUT ===== */
.something-about {
  display: flex;
  gap: 16px;
  height: 552px;
}

.sa-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray-50);
  position: relative;
  min-width: 0;
}

.sa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sa-text {
  width: 498px;
  flex-shrink: 0;
  border-radius: 24px;
  background: var(--primary-blue-300);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.sa-text-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/background-2.d8cb13b4176e.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.sa-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.sa-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* ===== FAQs ===== */
.faqs-section {
  background: var(--white);
  padding: 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-item {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.faq-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
}

.faq-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-q {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: var(--dark-500);
}

.faq-a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gray-700);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.faq-item.open .faq-a {
  max-height: 180px;
  opacity: 1;
  margin-top: 8px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle-symbol {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--gray-700);
}

/* ===== LATEST BLOGS ===== */
.blogs-section {
  background: var(--white);
  padding: 64px;
}

.blogs-grid {
  display: flex;
  gap: 32px;
}

.blog-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
  min-width: 0;
}

.blog-img-wrap {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray-50);
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  transform: scale(1);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.04);
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.4px;
  color: var(--dark-500);
}

.blog-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--gray-700);
}

.read-more a {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-blue-500);
  text-decoration: none;
  letter-spacing: -0.32px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary-blue-300);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  padding: 32px 64px;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/background-2.d8cb13b4176e.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: -0.96px;
  color: var(--gray-50);
}

.cta-title strong {
  font-weight: 700;
  color: var(--gray-50);
}

.cta-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
}

.cta-section .btn-white {
  position: relative;
  z-index: 1;
}

.cta-image {
  position: absolute;
  right: 85px;
  top: 21px;
  width: 574px;
  height: 744px;
  overflow: hidden;
  pointer-events: none;
}

.cta-image img {
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--white);
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.newsletter-title {
  width: 596px;
  flex-shrink: 0;
}

.newsletter-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-input-wrap {
  flex: 1;
  border: 1px solid var(--gray-400);
  border-radius: 999px;
  padding: 12px 16px;
}

.newsletter-input-wrap input {
  width: 100%;
  font-size: 16px;
  color: var(--gray-300);
}

.footer-details {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.footer-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.footer-social p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.28px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-500);
}

.social-icons a:hover {
  color: var(--primary-blue-500);
}

.social-icons img,
.social-icons svg {
  width: 24px;
  height: auto;
  display: block;
}

.footer-nav {
  display: flex;
  gap: 64px;
  flex-shrink: 0;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-nav-col a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark-500);
  text-decoration: none;
  white-space: nowrap;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark-500);
}

.footer-copyright a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark-500);
  text-decoration: none;
  white-space: nowrap;
}
