/* ============================================
   EmpregosAgro – Static Clone Styles
   ============================================ */

:root {
  --green-primary: #006c4c;
  --green-dark: #304A22;
  --green-accent: #62B55A;
  --green-light: #e8f5e9;
  --green-hero-bg: #0b3d2e;
  --yellow: #e4ed49;
  --yellow-badge: #FCEA28;
  --dark: #1f2029;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #eeeeee;
  --gray-400: #999999;
  --gray-600: #666666;
  --gray-800: #333333;
  --font-primary: 'Roboto', sans-serif;
  --font-heading: 'Roboto Slab', serif;
  --font-alt: 'Ubuntu', sans-serif;
  --container-max: 1140px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 40px;
  --shadow-card: 0 4px 20px rgba(0,0,0,.08);
  --transition: .3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.3; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.btn:hover { transform: scale(1.05); }
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary {
  background: var(--white);
  color: var(--green-primary);
  border: 1px solid var(--green-primary);
}
.btn-secondary:hover { background: var(--green-accent); color: var(--white); }
.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}
.btn-yellow:hover { background: #d4dc3e; }
.btn-outline-green {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-outline-green:hover { background: var(--green-primary); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-icon { display: inline-flex; align-items: center; gap: 8px; }

/* ---- Header / Navbar ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo img { height: 38px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 32px; }
.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-800);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-primary);
  transition: width var(--transition);
}
.header__nav a:hover { color: var(--green-primary); }
.header__nav a:hover::after { width: 100%; }
.header__cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  padding: 24px;
  z-index: 99;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav .btn { margin-top: 16px; width: 100%; }

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(135deg, #0a3a2b 0%, #0d5a3f 40%, #0b4e36 100%);
  color: var(--white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,.02) 30px,
      rgba(255,255,255,.02) 60px
    );
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }
.hero__title {
  font-size: 42px;
  font-weight: 700;
  max-width: 600px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.hero__subtitle {
  font-size: 17px;
  font-weight: 400;
  opacity: .9;
  max-width: 800px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero__subtitle b { font-weight: 700; }
.hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-card__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
}
.hero-card__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-primary);
}
.hero-card__actions { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-card__link {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity var(--transition);
}
.hero-card__link:hover { opacity: .8; }

/* ---- Stats Section ---- */
.stats {
  padding: 60px 0;
  background: var(--white);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat-item__icon {
  font-size: 36px;
  color: var(--green-primary);
  margin-bottom: 8px;
}
.stat-item__value {
  font-size: 40px;
  font-weight: 700;
  color: var(--green-primary);
  font-family: var(--font-heading);
}
.stat-item__label {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 220px;
}

/* ---- Featured Jobs ---- */
.featured-jobs {
  padding: 60px 0 80px;
  background: var(--gray-100);
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 40px;
  text-align: center;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.job-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.job-card__logo { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; }
.job-card__title { font-size: 16px; font-weight: 700; color: var(--gray-800); font-family: var(--font-heading); }
.job-card__company { font-size: 14px; color: var(--gray-600); font-weight: 500; }
.job-card__location {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-400);
}
.job-card__location i { color: var(--green-primary); font-size: 14px; }
.job-card .btn { margin-top: auto; align-self: stretch; }
.featured-jobs__cta { text-align: center; }

/* ---- Company Carousel ---- */
.companies {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}
.companies__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 40px;
}
.carousel-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-item {
  flex-shrink: 0;
  width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.carousel-item img { width: 100%; height: 180px; object-fit: cover; }
.carousel-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white);
  padding: 24px 16px 12px;
  font-size: 14px;
  font-weight: 600;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 60px 0;
  background: var(--gray-100);
}
.testimonials .section-title { margin-bottom: 32px; }
.swiper-testimonials {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 48px;
}
.testimonial-slide {
  text-align: center;
  padding: 32px 24px;
}
.testimonial-slide__text {
  font-size: 17px;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-slide__author {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-primary);
}
.swiper-button-prev, .swiper-button-next { color: var(--green-primary) !important; }
.swiper-pagination-bullet-active { background: var(--green-primary) !important; }

/* ---- Como Funciona ---- */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.how-it-works__subtitle {
  font-size: 16px;
  color: var(--green-accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.how-it-works__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 32px;
}
.icon-box {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.icon-box__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  font-size: 16px;
}
.icon-box__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
  font-family: var(--font-primary);
}
.icon-box__content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.how-it-works__image { text-align: center; }
.how-it-works__image img { max-width: 380px; margin: 0 auto; }

/* ---- Principais Caracteristicas ---- */
.features {
  padding: 60px 0 80px;
  background: var(--gray-100);
}
.features .section-title { color: var(--gray-800); }
.features__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-item__badge {
  flex-shrink: 0;
  width: 44px; height: 44px;
}
.feature-item__badge svg { width: 44px; height: 44px; }
.feature-item__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
}
.features__cta { text-align: center; }

/* ---- Diferenciais ---- */
.differentials {
  padding: 80px 0;
  background: var(--white);
}
.differentials .section-title { color: var(--gray-800); margin-bottom: 48px; }
.diff-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.diff-block--reverse { direction: rtl; }
.diff-block--reverse > * { direction: ltr; }
.diff-block__image img { border-radius: var(--radius); width: 100%; }
.diff-block__content {}
.diff-block__video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
}
.diff-block__video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---- CTA Triple Cards ---- */
.cta-cards {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a3a2b 0%, #0d5a3f 100%);
  color: var(--white);
}
.cta-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cta-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-card__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
}
.cta-card__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  font-family: var(--font-primary);
}
.cta-card__actions { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* ---- FAQ Section ---- */
.faq {
  padding: 60px 0 80px;
  background: var(--green-light);
}
.faq .section-title { color: var(--green-primary); }
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,108,76,.15);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--green-primary); }
.faq-item__icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--green-primary);
  transition: transform var(--transition);
}
.faq-item.active .faq-item__icon { transform: rotate(90deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 0 0 26px;
}
.faq-item.active .faq-item__answer {
  max-height: 400px;
  padding: 0 0 18px 26px;
}
.faq-item__answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- Footer ---- */
.footer {
  padding: 48px 0 32px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.footer__social {
  margin-bottom: 24px;
}
.footer__social-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-primary);
}
.footer__social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.footer__social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.footer__social-link:hover { background: var(--green-primary); transform: scale(1.1); }
.footer__legal {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--white); }
.footer__logo { margin-top: 24px; }
.footer__logo img { max-width: 200px; margin: 0 auto; opacity: .7; }

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 50px;
  left: 50px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 2px #aaa316;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 90;
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top i { font-size: 18px; color: var(--dark); }
.back-to-top svg.progress-circle {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.back-to-top svg.progress-circle path {
  fill: none;
  stroke: var(--dark);
  stroke-width: 2;
  stroke-dasharray: 307;
  stroke-dashoffset: 307;
  transition: stroke-dashoffset .1s linear;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-cards__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .diff-block { grid-template-columns: 1fr; }
  .diff-block--reverse { direction: ltr; }
  .how-it-works__grid { grid-template-columns: 1fr; }
  .how-it-works__image { order: -1; }
}

@media (max-width: 768px) {
  .header__nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 15px; }
  .hero__cards { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 60px; }
  .stats__grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-item__value { font-size: 32px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
  .features__list { gap: 16px; }
  .carousel-item { width: 220px; }
  .carousel-item img { height: 140px; }
  .how-it-works__title { font-size: 24px; }
  .diff-block { gap: 24px; }
  .swiper-testimonials { padding: 0 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 24px; }
  .hero-card { padding: 28px 20px; }
  .btn { padding: 12px 24px; font-size: 14px; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Animation: bounceIn for buttons */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(.9); }
  100% { transform: scale(1); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Empresas Page ---- */
.emp-hero {
  background: linear-gradient(135deg, #2d6a3f 0%, #3a8a50 50%, #4caf50 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.emp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,.03) 30px,
      rgba(255,255,255,.03) 60px
    );
  pointer-events: none;
}
.emp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.emp-hero__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}
.emp-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 32px;
}

.emp-stats {
  padding: 60px 0;
  background: var(--green-dark);
  color: var(--white);
}
.emp-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.emp-stats__item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.emp-stats__icon {
  font-size: 32px;
  color: var(--green-accent);
  margin-bottom: 8px;
}
.emp-stats__value {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-heading);
}
.emp-stats__value span { font-size: 24px; }
.emp-stats__label {
  font-size: 14px;
  opacity: .8;
  max-width: 260px;
}

.emp-management {
  padding: 80px 0;
  background: var(--white);
}
.emp-management .section-title { color: var(--gray-800); }
.emp-management__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.emp-management__card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.emp-management__card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.emp-management__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
  font-family: var(--font-primary);
}
.emp-management__card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.emp-management__cta { text-align: center; }

.emp-benefits {
  padding: 80px 0;
  background: var(--gray-100);
}
.emp-benefits .section-title { color: var(--gray-800); }
.emp-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.emp-benefits__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.emp-benefits__card:hover { transform: translateY(-4px); }
.emp-benefits__card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  color: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.emp-benefits__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
  font-family: var(--font-primary);
}
.emp-benefits__card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.emp-benefits__cta { text-align: center; }

.emp-nps {
  padding: 80px 0;
  background: var(--green-primary);
  color: var(--white);
  text-align: center;
}
.emp-nps__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.emp-nps__text {
  font-size: 18px;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.emp-nps__cta { margin-top: 8px; }

.emp-form {
  padding: 80px 0;
  background-color: var(--white);
}
.emp-form__wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.emp-form__iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

@media (max-width: 1024px) {
  .emp-management__grid,
  .emp-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .emp-hero__title { font-size: 28px; }
  .emp-hero { padding: 60px 0 70px; }
  .emp-stats__grid { grid-template-columns: 1fr; gap: 32px; }
  .emp-management__grid,
  .emp-benefits__grid { grid-template-columns: 1fr; }
  .emp-nps__title { font-size: 24px; }
}

/* ---- About Page ---- */
.about-hero {
  background: linear-gradient(135deg, #0a3a2b 0%, #0d5a3f 40%, #0b4e36 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,.02) 30px,
      rgba(255,255,255,.02) 60px
    );
  pointer-events: none;
}
.about-hero__eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.about-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.about-hero__subtitle {
  font-size: 20px;
  opacity: .85;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.about-timeline {
  padding: 80px 0;
  background: var(--white);
}
.about-timeline .container {
  max-width: 780px;
  position: relative;
}
.about-timeline .container::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--green-light);
}
.timeline-block {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-block:last-child { margin-bottom: 0; }
.timeline-block__marker {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.timeline-block__year {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
}
.timeline-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow-badge);
  color: var(--dark);
  font-size: 20px;
}
.timeline-block__content {
  padding-top: 12px;
}
.timeline-block__content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
}
.timeline-block__content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}
.timeline-block__content p:last-child { margin-bottom: 0; }
.about-closing {
  padding: 60px 0 80px;
  background: var(--gray-100);
  text-align: center;
}
.about-closing__quote {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--green-primary);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.5;
  border: none;
  padding: 0;
}
.about-closing__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .about-hero__title { font-size: 32px; }
  .about-hero__subtitle { font-size: 17px; }
  .about-hero { padding: 60px 0; }
  .about-timeline .container::before { left: 28px; }
  .timeline-block { gap: 20px; }
  .timeline-block__content h2 { font-size: 20px; }
  .about-closing__quote { font-size: 20px; }
}

@media (max-width: 480px) {
  .about-hero__title { font-size: 28px; }
  .about-timeline .container::before { display: none; }
  .timeline-block__marker { width: 44px; }
  .timeline-block__year,
  .timeline-block__icon { width: 44px; height: 44px; font-size: 13px; }
  .timeline-block__icon { font-size: 16px; }
  .timeline-block { gap: 16px; }
}

/* ---- Vagas Page ---- */
.vagas-hero {
  background: linear-gradient(135deg, #0a3a2b 0%, #0d5a3f 40%, #0b4e36 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vagas-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,.02) 30px,
      rgba(255,255,255,.02) 60px
    );
  pointer-events: none;
}
.vagas-hero__title {
  font-size: 36px;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vagas-listings {
  padding: 40px 0 80px;
  background: var(--white);
}
.vagas-listings__subtitle {
  font-size: 20px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 32px;
}
.vagas-listings__iframe-wrapper {
  min-height: 600px;
}
.vagas-listings__iframe-wrapper iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

@media (max-width: 768px) {
  .vagas-hero__title { font-size: 26px; }
  .vagas-hero { padding: 40px 0; }
  .vagas-listings__subtitle { font-size: 17px; }
}

/* ---- Página Obrigado (pós-formulário empresas) ---- */
.obrigado-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.obrigado-skip:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 20px;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background: var(--green-primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
}
.obrigado {
  min-height: calc(100vh - 72px);
  padding: 48px 0 80px;
  background: var(--gray-100);
}
.obrigado__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.obrigado__icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(0, 108, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.obrigado__check {
  width: 40px;
  height: 40px;
  color: var(--green-primary);
}
.obrigado__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.obrigado__lead {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}
.obrigado__sub {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}
.obrigado__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.obrigado__btn-primary {
  padding: 16px 28px;
  font-size: 1rem;
}
.obrigado__btn-secondary {
  padding: 16px 28px;
  font-size: 1rem;
  border-width: 2px;
}
.obrigado__steps-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.obrigado__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}
@media (min-width: 640px) {
  .obrigado__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.obrigado-step {
  padding: 24px 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-card);
}
.obrigado-step__num {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(0, 108, 76, 0.1);
  color: var(--green-primary);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
}
.obrigado-step__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.obrigado-step__text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Placeholder page styles */
.placeholder-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.placeholder-page h1 {
  font-size: 36px;
  color: var(--green-primary);
  margin-bottom: 16px;
}
.placeholder-page p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 500px;
}
