/* ==========================================================================
   ICNextGroup — Landing page
   Paleta: #cc1f15 (vermelho) · #ff5200 (laranja) · #1e1e1b (grafite) · #fff
   ========================================================================== */

:root {
  --red: #cc1f15;
  --orange: #ff5200;
  --dark: #1e1e1b;
  --white: #ffffff;

  --gray-050: #f7f6f5;
  --gray-100: #efeeec;
  --gray-300: #d7d5d2;
  --gray-500: #9a9793;
  --gray-700: #4d4b48;

  --gradient-brand: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);

  --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --container-w: 1200px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px -20px rgba(30, 30, 27, 0.25);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0 0 .5em; line-height: 1.15; }
p { line-height: 1.7; margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

[id] { scroll-margin-top: 96px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gradient-brand); color: #fff; padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  background: var(--gradient-brand);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.is-scrolled {
  background: var(--gradient-brand);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: #fff; font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  padding: 6px 2px; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--orange); transition: right var(--transition);
}
.main-nav a:hover::after { right: 0; }
.main-nav a.nav-cta {
  background: var(--gradient-brand); padding: 10px 20px; border-radius: 100px;
  font-weight: 600;
}
.main-nav a.nav-cta::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  color: #fff; font-weight: 700; font-size: .85rem; border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 100px; padding: 6px 14px; transition: var(--transition);
}
.lang-switch:hover { background: #fff; color: var(--dark); border-color: #fff; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: 0; padding: 0;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: var(--transition); margin: 0 auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 0; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transform: translateX(100%); transition: transform var(--transition);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 26px; text-align: center; }
  .main-nav a { font-size: 1.3rem; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   Parallax sections (genérico)
   ========================================================================== */
.parallax-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  isolation: isolate;
}
.parallax-section.is-dark { background: var(--dark); color: #fff; }
.parallax-section.is-light { background: var(--white); color: var(--dark); }
.parallax-section.is-tint { background: var(--gray-050); color: var(--dark); }

.parallax-layer {
  position: absolute; will-change: transform; z-index: 0; pointer-events: none;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(2px); opacity: .18;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Hero (ICNextGroup)
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 160px;
  background: radial-gradient(120% 100% at 15% 0%, #2a2a25 0%, var(--dark) 55%);
}

.hero-inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
}

/* Visual do hero: logo das marcas flutuando sobre um brilho gradiente */
.hero-visual { position: relative; height: 460px; }
.hero-visual-glow {
  position: absolute; inset: 0; margin: auto; width: 360px; height: 360px; border-radius: 50%;
  background: var(--gradient-brand); filter: blur(70px); opacity: .4;
}
.hero-cards { position: relative; width: 100%; height: 100%; }
.hero-card {
  position: absolute; background: #fff; border-radius: 16px; padding: 16px 22px;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-card img { max-width: 118px; max-height: 34px; width: auto; height: auto; object-fit: contain; }
.hero-card-imagem-corporativa img { max-width: 177px; max-height: 51px; }
.hero-card:nth-child(1) { top: 42%; left: 30%; animation-delay: 0s; }
.hero-card:nth-child(2) { top: 0;   right: 2%; animation-delay: .9s; }
.hero-card:nth-child(3) { top: 4%;  left: 6%;  animation-delay: 1.8s; }
.hero-card:nth-child(4) { bottom: 14%; left: 0;  animation-delay: 2.7s; }
.hero-card:nth-child(5) { bottom: 2%;  right: 12%; animation-delay: 3.6s; }
.hero-card:nth-child(6) { top: 40%; right: 6%; animation-delay: 4.5s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; margin-top: 8px; }
  .hero-card { padding: 12px 16px; }
  .hero-card img { max-width: 92px; max-height: 26px; }
}
@media (max-width: 560px) {
  .hero-visual { height: 260px; }
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  font-size: .8rem; margin-bottom: 18px;
}
.hero-kicker::before { content: ''; width: 30px; height: 2px; background: var(--orange); }

.hero-logo { max-width: 420px; margin-bottom: 24px; }
.hero-logo img { filter: brightness(0) invert(1); width: 100%; }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  max-width: 900px;
}
.hero .hero-lead {
  font-size: 1.15rem; color: rgba(255,255,255,.82); max-width: 640px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }

.hero-scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: .05em; z-index: 2;
}
.hero-scroll-cue .dot {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.5); border-radius: 100px;
  position: relative;
}
.hero-scroll-cue .dot::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 4px; background: var(--orange);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 18px; } 100% { opacity: 0; top: 6px; } }

/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gradient-brand); color: #fff; box-shadow: 0 14px 30px -12px rgba(204,31,21,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(204,31,21,.65); }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn-outline-dark { border-color: var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ==========================================================================
   Marcas do grupo (seções alternadas)
   ========================================================================== */
.brand-section { padding: 130px 0; }
.brand-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center;
}
.brand-section.reverse .brand-grid { direction: rtl; }
.brand-section.reverse .brand-grid > * { direction: ltr; }

.brand-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.is-dark .brand-eyebrow { background: rgba(255,255,255,.12); color: var(--orange); }
.is-light .brand-eyebrow, .is-tint .brand-eyebrow { background: rgba(204,31,21,.1); color: var(--red); }

.brand-section h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.brand-desc { font-size: 1.05rem; max-width: 560px; }
.is-dark .brand-desc { color: rgba(255,255,255,.78); }
.is-light .brand-desc, .is-tint .brand-desc { color: var(--gray-700); }

.brand-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 56px; border-radius: var(--radius-lg);
  background: #fff; box-shadow: var(--shadow-soft);
}

.brand-visual a.brand-logo-link { display: block; width: 100%; max-width: 320px; transition: transform var(--transition); }
.brand-visual a.brand-logo-link:hover { transform: scale(1.03); }
.brand-visual img { width: 100%; height: auto; }

.brand-cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }

/* --- Sub-blocos: clientes e redes sociais, dentro de cada marca --- */
.brand-subblocks { margin-top: 56px; display: grid; gap: 32px; }
.subblock-label {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px; opacity: .7;
}
.client-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.client-row .client-logo {
  background: #fff; border-radius: 10px; padding: 10px 14px; display: flex; align-items: center;
  justify-content: center; height: 56px; box-shadow: 0 6px 18px -10px rgba(0,0,0,.25);
  filter: grayscale(1); opacity: .75; transition: var(--transition);
}
.client-row .client-logo:hover { filter: grayscale(0); opacity: 1; }
.client-row .client-logo img { height: 28px; width: auto; object-fit: contain; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.is-dark .social-row a { background: rgba(255,255,255,.1); color: #fff; }
.is-dark .social-row a:hover { background: var(--orange); }
.is-light .social-row a, .is-tint .social-row a { background: var(--gray-100); color: var(--dark); }
.is-light .social-row a:hover, .is-tint .social-row a:hover { background: var(--red); color: #fff; }
.social-row svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .brand-grid { grid-template-columns: 1fr; gap: 44px; }
  .brand-section.reverse .brand-grid { direction: ltr; }
  .brand-visual { padding: 36px; order: -1; }
  .brand-section { padding: 88px 0; }
}

/* ==========================================================================
   Clientes (visão geral) — usado no topo da seção de clientes, se aplicável
   ========================================================================== */
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-heading h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.section-heading p { color: var(--gray-700); font-size: 1.05rem; }

/* ==========================================================================
   Segmentos de mercado
   ========================================================================== */
.segments-section { background: var(--white); padding: 100px 0; }
.segment-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  max-width: 920px; margin: 0 auto;
}
.segment-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gray-050); color: var(--dark); font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: 100px; box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.segment-chip::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.segment-chip.is-red::before { background: var(--red); }
.segment-chip.is-orange::before { background: var(--orange); }
.segment-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(204,31,21,.35);
  border-color: transparent;
}
@media (max-width: 640px) {
  .segment-chip { font-size: .85rem; padding: 10px 16px; }
}

.clients-section { background: var(--white); padding: 120px 0; }
.client-group { margin-bottom: 40px; }
.client-group:last-child { margin-bottom: 0; }
.client-group-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.client-group-head img { height: 33px; width: auto; object-fit: contain; }
.client-group-head-imagem-corporativa img { height: 50px; }
.client-group-head-walk4good img { height: 43px; }
.client-group-head-europa-brasil img { height: 23px; }
.client-group-head span { font-weight: 700; font-size: .95rem; color: var(--gray-700); }
.client-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px;
}
.client-grid .client-logo {
  background: var(--gray-050); border-radius: 12px; padding: 14px; display: flex; align-items: center;
  justify-content: center; height: 76px; filter: grayscale(1); opacity: .8; transition: var(--transition);
}
.client-grid .client-logo:hover { filter: grayscale(0); opacity: 1; background: #fff; box-shadow: var(--shadow-soft); }
.client-grid .client-logo img { max-height: 36px; width: auto; object-fit: contain; }

/* ==========================================================================
   FAQ (SEO / GEO)
   ========================================================================== */
.faq-section { background: var(--white); padding: 100px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-md); padding: 18px 24px;
  transition: var(--transition);
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-family: var(--font-heading); font-size: 1.02rem;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--red); flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 14px; color: var(--gray-700); }

/* ==========================================================================
   Contato
   ========================================================================== */
.contact-section { background: var(--gray-050); padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }
.contact-info p { color: var(--gray-700); }
.contact-brands-list { margin: 48px 0 40px; display: grid; gap: 14px; }
.contact-brands-list > div {
  display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--dark);
  padding: 16px 0; border-bottom: 1px solid var(--gray-300);
}
.contact-brands-list > div img { height: 30px; width: auto; object-fit: contain; }
.contact-brands-list > div.contact-brand-europa-brasil img { height: 20px; }
.contact-brands-list > div.contact-brand-latam-squad { border-bottom: none; }
.contact-brands-list > div.contact-brand-imagem-corporativa img,
.contact-brands-list > div.contact-brand-walk4good img { height: 45px; }

.contact-form {
  background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-soft);
}
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--gray-300);
  font-family: inherit; font-size: .95rem; background: #fff; transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(204,31,21,.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-error { color: var(--red); font-size: .82rem; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field.has-error .field-error { display: block; }

.form-feedback { margin-top: 18px; padding: 14px 18px; border-radius: 10px; font-size: .92rem; display: none; }
.form-feedback.show { display: block; }
.form-feedback.success { background: #e9f7ee; color: #1a7a3d; }
.form-feedback.error { background: #fdeceb; color: var(--red); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-contact ul { gap: 14px; }
.footer-contact li > a,
.footer-contact li.footer-address {
  display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  color: var(--orange);
}
.footer-address { color: inherit; font-size: .92rem; line-height: 1.5; }
.footer-logo { height: 60px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-about p { font-size: .92rem; max-width: 340px; }
.footer-links h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.footer-links ul { display: grid; gap: 12px; }
.footer-links a { font-size: .92rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-partners {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 24px;
  border-top: 1px solid rgba(255,255,255,.1); padding: 32px 0; text-align: center;
}
.footer-partners-label {
  color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
}
.footer-partners-badge {
  display: flex; align-items: center; gap: 14px; background: var(--white);
  border-radius: 100px; padding: 8px 20px 8px 8px;
}
.footer-partners-logo { height: 32px; width: auto; }
.footer-partners-badge p {
  margin: 0; color: var(--gray-700); font-size: .85rem; font-weight: 600; text-align: left;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .82rem; text-align: center;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 18px;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: underline; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}

#back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--gradient-brand); color: #fff; font-size: 1.1rem;
  box-shadow: 0 12px 24px -10px rgba(204,31,21,.6);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: var(--transition);
}
#back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ==========================================================================
   Trabalhe Conosco
   ========================================================================== */
.jobs-hero {
  padding: 190px 0 90px; background: var(--dark); color: #fff;
  background: radial-gradient(120% 100% at 85% 0%, #2a2a25 0%, var(--dark) 60%);
}
.jobs-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.jobs-hero p { color: rgba(255,255,255,.8); max-width: 640px; font-size: 1.05rem; }

.jobs-list { padding: 90px 0; background: var(--white); }
.job-card {
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-md);
  padding: 28px 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 18px; transition: var(--transition); flex-wrap: wrap;
}
.job-card:hover { border-color: var(--red); box-shadow: var(--shadow-soft); }
.job-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .86rem; color: var(--gray-700); }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-tag {
  display: inline-block; background: rgba(204,31,21,.08); color: var(--red);
  padding: 4px 12px; border-radius: 100px; font-size: .78rem; font-weight: 700; margin-bottom: 10px;
}
.jobs-empty {
  text-align: center; padding: 40px; border: 1.5px dashed var(--gray-300); border-radius: var(--radius-md);
  color: var(--gray-700);
}

.apply-section { background: var(--gray-050); padding: 90px 0; }
.apply-form-wrap { max-width: 760px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-soft); }
.selected-job-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(204,31,21,.08); color: var(--red); padding: 14px 20px; border-radius: 10px;
  margin-bottom: 26px; font-weight: 600; font-size: .92rem;
}
.selected-job-banner button { background: none; border: none; color: var(--red); font-weight: 700; text-decoration: underline; }

.file-drop {
  border: 2px dashed var(--gray-300); border-radius: 12px; padding: 26px; text-align: center;
  cursor: pointer; transition: var(--transition); position: relative;
}
.file-drop.is-dragover, .file-drop:hover { border-color: var(--red); background: rgba(204,31,21,.03); }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop .file-name { font-weight: 600; color: var(--red); margin-top: 8px; }

/* ==========================================================================
   Utilitários
   ========================================================================== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
