:root {
  --orange-dark: #FC7112;
  --orange-medium: #ffbd3a;
  --orange-white: #ffe5cc;
  --black: #1B2024;
  --white: #FFFAFA;
  --gray-light: #ececec;
  --gray-medium: #757575;
  --text-header: #FC7112;
  --text-primary: #1B2024;
  --text-secundary: #FC7112;
  --text-ternary: #e1e1e1;
}

/* ---------------- Reset ---------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.6;
}

/* aplica justify apenas onde precisa */
.section p {
  text-align: justify;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.3;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}


/* ---------------- HEADER ---------------- */
.site-header {
  background-color: var(--black);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 52px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-header);
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

.main-nav a:hover {
  background-color: var(--gray-light);
}

.main-nav a.active {
  color: var(--orange-dark);
  font-weight: 600;
}

.btn-nav {
  background-color: var(--orange-dark);
  color: var(--white) !important;
}

.btn-nav:hover {
  background-color: var(--orange-medium);
}

/* ---------------- HERO ---------------- */
.hero {
  background: var(--orange-dark);
  color: var(--white);
  padding: 56px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1rem;
  max-width: 540px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: slide 30s infinite;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

/* ---------------- BUTTONS ---------------- */
.btn-primary,
.btn-secondary,
.btn-ternary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid var(--black);
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background-color: var(--black);
  color: var(--white);
  transition: background-color 0.25s ease, transform 0.2s ease;
  will-change: transform;
}

.btn-primary:hover {
  background-color: var(--orange-medium);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--gray-light);
  color: var(--black);
  border: 1px solid var(--gray-medium);
  transition: background-color 0.25s ease, transform 0.2s ease;
  will-change: transform;
}

.btn-secondary:hover {
  background-color: var(--orange-medium);
  transform: translateY(-2px);
}

.btn-ternary {
  background-color: transparent;
  color: var(--orange-dark);
  border: 1px solid var(--orange-dark);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.btn-ternary:hover {
  color: var(--white);
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-link {
  display: inline-block;
  margin-top: 12px;
  /* espaço extra acima do link */
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}

.btn-link:hover {
  text-decoration: underline;
}

/* ---------------- SECTIONS ---------------- */
.section {
  padding: 48px 0;
  background-color: var(--gray-light);

}

.section-bg {
  padding: 48px 0;
  background-color: var(--gray-light);

}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text-header);
}

.section-intro {
  max-width: 680px;
  margin-bottom: 24px;
}

.section p {
  margin-top: 30px;
  margin-bottom: 16px;
  /* espaço entre o parágrafo e o link */
  line-height: 1.6;
  color: var(--black);
}

.mg-top-20 {
  margin-top: 20px;
}

.section-divider {
  border-top: 2px solid var(--orange-dark);
  margin: 40px 0;
}

/* Linha com gradiente animado */
.section-divider-gradient {
  height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--black), var(--orange-dark));
  margin: 2px 0;
  background-size: 300% 100%;
  /* aumenta a largura do gradiente */
  background-repeat: no-repeat;
  /* evita repetição */
  animation: moveGradient 4s linear infinite;
}

.two-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  align-items: flex-start;
}

.infra-text {
  flex: 1;
}

.infra-images {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.justificarText {
  text-align: justify;
}



@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Linha com texto centralizado */
.section-divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1px 0;
}

.section-divider-text::before,
.section-divider-text::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--gray-light);
}

.section-divider-text span {
  padding: 0 12px;
  font-weight: bold;
  color: var(--orange-dark);
  text-transform: uppercase;
}



/* ---------------- CARDS ---------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.card {
  background-color: var(--white);
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: var(--black);
}

.cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  will-change: transform;

}

.cards_diferency {
  display: flex;
  flex-direction: column;
  /* cards em coluna */
  gap: 20px;
  /* espaçamento entre os cards */
}

.card_diferency {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 16px;
  margin: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card_diferency:hover {
  background-color: var(--orange-white);
  /* laranja bem clarinho no hover */
  border: 1px solid var(--orange-dark);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* título à esquerda, seta à direita */
  gap: 12px;
}

.card_diferency img {
  width: 48px;
  height: 48px;
}

.card_diferency h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--black);
  flex: 1;
}

.chevron {
  font-size: 1.2rem;
  color: var(--black);
  /* laranja */
  transition: transform 0.3s ease;
}

.card_diferency.active .chevron {
  transform: rotate(180deg);
}

.card_diferency p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  color: var(--black);
}

.card_diferency.active p {
  max-height: 200px;
  /* altura suficiente para o texto */
  opacity: 1;
  margin-top: 12px;
}

/*---------------- highlight ---------------- */
.highlight-cards {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  /* cards um embaixo do outro */
  gap: 16px;
  /* espaçamento entre os cards */
  margin-top: 12px;
}

.highlight-cards .card {
  display: flex;
  align-items: center;
  /* imagem e texto alinhados na mesma linha */
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.highlight-cards .card img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  /* espaço entre ícone e texto */
}

.highlight-cards .card span {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.highlight-cards .card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--text-primary);
  /* preto */
}

.highlight-cards .card p {
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* Destaque permanente para Trabalhe Conosco */
.main-nav a.highlight {
  background-color: var(--orange-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.main-nav a.highlight:hover {
  background-color: var(--orange-medium);
  transform: translateY(-2px);
}

/* ---------------- FORM ---------------- */
.contact-form {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--black);
}

/* Inputs mais refinados */
.form-group input,
.form-group textarea,
.form-group select {
  background-color: var(--gray-light);
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: var(--white);
  transition: border-color 0.3s ease;
}

.form-group select {
  padding: 10px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: bold;
  background-color: var(--orange-dark);
  transition: border-color 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--orange-medium);
}

/* ===== LISTA DE VAGAS ===== */

.vagas-lista {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.vaga-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--orange-dark);
  padding: 16px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.vaga-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.vaga-card h3 {
  margin-bottom: 6px;
  color: var(--black);
}

.vaga-meta {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 10px;
}

/* ===== DIFERENCIAIS EMPRESA ===== */

.diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.diferencial-item {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  text-align: center;
}

.diferencial-item h4 {
  margin-top: 10px;
  font-size: 1rem;
}

.diferencial-item p {
  font-size: 0.9rem;
  margin-top: 6px;
}

/* ===== UPLOAD MELHORADO ===== */

.upload-box {
  border: 2px dashed var(--gray-medium);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  background: #fafafa;
  transition: border-color 0.3s ease;
}

.upload-box:hover {
  border-color: var(--orange-dark);
}

.upload-box span {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* ---------------- Foco ---------------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange-dark);
  outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange-dark);
  box-shadow: 0 0 0 3px rgba(255, 92, 0, 0.2);
  outline: none;
}

/* ---------------- Select customizado ---------------- */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23FF5C00' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ---------------- Upload ---------------- */
input[type="file"] {
  padding: 10px;
  background: var(--gray-light);
  border: 1px solid var(--gray-medium);
  border-radius: 6px;
  cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
  background: var(--orange-dark);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--orange-medium);
}

/* ---------------- Botão enviar ---------------- */
.contact-form button {
  width: fit-content;
  padding: 10px 20px;
  font-size: 0.95rem;
  border: none;
  border-radius: 4px;
  background-color: var(--orange-dark);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: var(--orange-medium);
  transform: translateY(-2px);
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background-color: var(--black);
  color: var(--text-header);
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  flex-basis: 100%;
  margin-top: 8px;
}

/* ---------------- TOP IMAGE ---------------- */
.top-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.partners-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  /* opcional, deixa mais suave */
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  /* permite quebrar para baixo */
  justify-content: center;
  /* centraliza os logos */
  gap: 32px;
  /* espaço entre eles */
  margin-top: 24px;
}

.partners-logos img {
  max-height: 70px;
  /* controla altura */
  object-fit: contain;
  /* mantém proporção */
  flex: 0 1 auto;
  /* deixa cada logo se ajustar */
}

/* ------------ BANNER ----------------- */
.banner-container {
  width: 100%;
  height: 600px;
  background-image: url('../img/1040002.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* estica lateralmente sem cortar vertical */
  background-color: #000;
  /* fundo de segurança */
}

.banner-container-produto {
  width: 100%;
  height: 600px;
  background-image: url('../img/1040006.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* estica lateralmente sem cortar vertical */
  background-color: #000;
  /* fundo de segurança */
}

.banner-container-servico {
  width: 100%;
  height: 600px;
  background-image: url('../img/1040003.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* estica lateralmente sem cortar vertical */
  background-color: #000;
  /* fundo de segurança */
}

.banner-container-certification {
  width: 100%;
  height: 600px;
  background-image: url('../img/1040005.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* estica lateralmente sem cortar vertical */
  background-color: #000;
  /* fundo de segurança */
}

.banner-container-contato {
  width: 100%;
  height: 600px;
  background-image: url('../img/1040007.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* estica lateralmente sem cortar vertical */
  background-color: #000;
  /* fundo de segurança */
}


/* ------------CERTIFICADO ------------- */
.cert-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}

.cert-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 15px;
  background: #f1f1f1;
  transition: background 0.3s, transform 0.2s;
  position: relative;
}

.cert-header::after {
  content: "▼";
  /* seta */
  position: absolute;
  right: 15px;
  transition: transform 0.5s ease;
}

.cert-header:hover {
  background: #e0e0e0;
  /* muda a cor ao passar o mouse */
  transform: scale(1.02);
  /* dá um leve zoom */
}

.cert-header img {
  height: 40px;
  margin-right: 15px;
  transition: transform 0.3s;
}

.cert-header:hover img {
  transform: rotate(-5deg);
  /* inclina levemente o logo */
}

.cert-header h3 {
  margin: 0;
  font-size: 18px;
  transition: color 0.3s;
}

.cert-header:hover h3 {
  color: #ff7b00;
  /* muda a cor do título */
}

.cert-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.2s ease-in-out, padding 0.8s ease-in-out;
  background: #fff;
  padding: 0 10px;
}

.cert-item.active {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  /* sombra quando aberto */
}

.cert-item.active .cert-content {
  max-height: 600px;
  /* altura suficiente para o iframe */
  padding: 10px;
  /* aparece suavemente */
}

.cert-item.active .cert-header::after {
  transform: rotate(180deg);
  /* seta gira */
}


.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.equip-item {
  display: contents;
  /* permite alternar imagem e texto em posições diferentes */
}

.equip-item img {
  width: 100%;
  border-radius: 8px;
}

.equip-summary {
  margin-top: 3rem;
  text-align: center;
}

.equip-summary h3 {
  margin-bottom: 1rem;
  color: #333;
}

/* ---------------- UX FORM ---------------- */

.input-error {
  border-color: #e53935 !important;
}

.input-success {
  border-color: #2e7d32 !important;
}

.error-message {
  color: #e53935;
  font-size: 0.8rem;
  margin-top: 4px;
}

.success-message {
  color: #2e7d32;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Spinner botão */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #1B2024;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- BENEFÍCIOS ---------------- */

.beneficios-box {
  padding: 24px;
  margin-top: 20px;
}

.beneficios-titulo {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--orange-dark);
}

/* lista organizada e com espaçamento lateral */
.ul-beneficio {
  list-style: none;
  padding-left: 20px;
  /* espaço da lateral */
}

/* itens um abaixo do outro com espaçamento */
.ul-beneficio li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  font-size: 0.95rem;
}

/* bolinha personalizada (mais profissional) */
.ul-beneficio li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange-dark);
  font-weight: bold;
}

/* ---------------- VIDEO RESPONSIVO ---------------- */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  /* controla largura no desktop */
  margin: 20px auto 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* proporção 16:9 automática */
.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------- VIDEO LOCAL PROFISSIONAL ---------------- */

.video-box-local {
  max-width: 900px;
  margin: 20px auto 0;
  position: relative;
}

/* thumbnail */
.video-thumbnail-local {
  position: relative;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* proporção 16:9 */
.video-thumbnail-local::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-thumbnail-local img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* botão play */
.video-play-local {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;

  width: 70px;
  height: 70px;

  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-play-local:hover {
  background: var(--orange-dark);
  transform: translate(-50%, -50%) scale(1.1);
}

/* video */
.video-player {
  display: none;
  width: 100%;
  border-radius: 8px;
}

/* ---------------- cookie ---------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 15px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* BOTÕES */
.btn-cookie {
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
}

.btn-cookie.primary {
  background: #ff6600;
  color: #fff;
}

.btn-cookie.primary:hover {
  background: #cc5200;
}

.btn-cookie.secondary {
  background: #444;
  color: #fff;
}

.btn-cookie.link {
  background: transparent;
  color: #ff6600;
}

/* ===== MODAL ===== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.cookie-modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}

.cookie-option {
  margin: 15px 0;
}

.modal-actions {
  margin-top: 20px;
}

a {
  color: #ff6600;
  /* laranja */
  text-decoration: none;
}

a:hover {
  color: #cc5200;
  /* laranja mais escuro no hover */
  text-decoration: underline;
}

.checkbox-lgpd {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-top: 10px;
    background: #fff4ec;
  padding: 12px;
  border-left: 4px solid var(--orange-dark);
  border-radius: 6px;
}

.checkbox-lgpd label {
  font-size: 0.85rem;
  line-height: 1.4;
}

.checkbox-lgpd input {
  margin-top: 3px;
}


/* ===== FEEDBACK DE ENVIO ===== */

.form-feedback {
  padding: 12px;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-feedback.success {
  background: #e8f5e9;
  color: #2e7d32;
}

.form-feedback.error {
  background: #ffebee;
  color: #c62828;
}


/* ===== POLÍTICA DE PRIVACIDADE ===== */

.politica {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 15.5px;
  color: #333;
}

/* Título principal */
.politica h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
  border-left: 5px solid #ff6600;
  padding-left: 12px;
}

/* Subtítulos */
.politica h2 {
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 10px;
  color: #222;
  position: relative;
}

/* Linha sutil abaixo do H2 */
.politica h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ff6600;
  margin-top: 6px;
}

/* Parágrafos */
.politica p {
  margin-bottom: 14px;
  text-align: justify;
}

/* Listas */
.politica ul {
  margin: 10px 0 20px 20px;
  padding-left: 10px;
}

.politica ul li {
  margin-bottom: 8px;
  position: relative;
}

/* Bullet customizado */
.politica ul li::marker {
  color: #ff6600;
}

/* Destaque */
.politica strong {
  color: #000;
}

/* Links */
.politica a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 500;
}

.politica a:hover {
  text-decoration: underline;
  color: #cc5200;
}

/* Box de destaque (LGPD importante) */
.politica .highlight-box {
  background: #fff4ec;
  border-left: 4px solid #ff6600;
  padding: 15px 18px;
  margin: 25px 0;
  border-radius: 6px;
}

/* Separação entre seções */
.politica hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 40px 0;
}

/* Data de atualização */
.politica .update-date {
  font-size: 13px;
  color: #777;
  margin-top: 30px;
}


/* ------------ Animação automática ------------ */
@keyframes slide {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-100%);
  }

  40% {
    transform: translateX(-200%);
  }

  60% {
    transform: translateX(-300%);
  }

  80% {
    transform: translateX(-400%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .banner-container {
    height: 450px;
    background-size: cover;
    /* ajusta para tablets */
  }
}

@media (max-width: 900px) {

  .hero-content,
  .two-columns,
  .cta-content {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: center;
  }

  .hero {
    padding: 32px 0;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .banner-container {
    height: 350px;
    background-size: contain;
    /* mantém proporção em celulares */
  }

   .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }

  .politica {
    padding: 0 10px;
    font-size: 15px;
  }

  .politica h1 {
    font-size: 26px;
  }

  .politica h2 {
    font-size: 20px;
  }

  .diferenciais {
    grid-template-columns: 1fr;
  }

  .vagas-lista {
    gap: 12px;
  }

  .contact-form {
    padding: 16px;
  }  
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(1.4rem, 4vw, 1.6rem);
    /* tipografia fluida */
    text-align: center;
  }

  .contact-form button {
    width: 100%;
    /* botão ocupa largura total no mobile */
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.2rem, 5vw, 1.4rem);
  }

  .hero p {
    font-size: 0.9rem;
    text-align: center;
  }

  .cards {
    gap: 12px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .site-footer {
    font-size: 0.75rem;
    padding: 16px 0;
  }
}