/* ========================================
   TAESA - Portal de Fornecedores V07
   Figma Design System
   ======================================== */

/* ---------- Material Icons (self-hosted) ---------- */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(assets/fonts/material-icons.woff2) format('woff2');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Design Tokens ---------- */
:root {
  --color-100: #EDF5FF;
  --color-200: #0F62FE;
  --color-400: #002D9C;
  --color-700: #001141;
  --color-dark: #042769;
  --color-orange: #F36A00;
  --color-yellow: #F8CF56;
  --color-yellow-text: #A74C00;
  --color-gray-light: #DFDFDF;
  --color-blue-light: #7487AA;
  --font-family: 'Roboto', sans-serif;
  --h1-size: 47.78px;
  --h2-size: 39.81px;
  --h3-size: 33.18px;
  --text-size: 16px;
  --nav-size: 16px;
  --btn-size: 18px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --radius-xs: 10px;
  --radius-btn: 10px;
  --max-width: 1440px;
  --side-padding: 240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  font-size: var(--text-size);
  color: #000;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Utilities ---------- */
.animate-in { opacity: 1 !important; transform: translateY(0) !important; }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.header.scrolled {
  background: rgba(4, 39, 105, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 37px 240px 20px;
  max-width: 1920px;
  margin: 0 auto;
}
.header__logo img {
  height: 47px;
  width: 127px;
  object-fit: contain;
}
.header__hamburger {
  display: none;
  color: #fff;
  font-size: 32px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 56px;
}
.header__nav a {
  color: var(--color-100);
  font-size: var(--nav-size);
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.header__nav a:hover { opacity: 0.8; }
.header__nav-close { display: none; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 11, 4, 0.09);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 240px;
}
.hero__box {
  background: var(--color-200);
  border-radius: var(--radius-lg);
  padding: 74px 68px;
  max-width: 639px;
}
.hero__title {
  font-size: var(--h1-size);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 36px;
}
.hero__subtitle {
  font-size: var(--text-size);
  font-weight: 400;
  color: #f1f1f1;
  line-height: 1.5;
}

/* ========================================
   RELACIONAMENTO
   ======================================== */
.relacionamento {
  background: var(--color-dark);
  padding: 120px 0 140px;
}
.relacionamento__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 240px;
}
.relacionamento__title {
  font-size: var(--h1-size);
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1;
}
.relacionamento__text {
  color: #f1f1f1;
  font-size: 18px;
  line-height: 28px;
  max-width: 1477px;
}
.relacionamento__text p {
  margin-bottom: 24px;
}
.relacionamento__text strong {
  font-weight: 700;
}

/* ========================================
   ATIVIDADES
   ======================================== */
.atividades {
  background: var(--color-100);
  padding: 65px 0 80px;
  position: relative;
  overflow: hidden;
}
.atividades__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 140px;
}
.atividades__title {
  font-size: var(--h2-size);
  font-weight: 400;
  color: #000;
  padding-left: 100px;
  margin-bottom: 50px;
}
.atividades__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.atividade-card {
  border-radius: var(--radius-md);
  padding: 41px 37px;
  min-height: 361px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.atividade-card:hover { transform: translateY(-4px); }
.atividade-card__title {
  font-size: var(--h3-size);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}
.atividade-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.atividade-card__link {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.atividade-card__arrow {
  color: rgba(255,255,255,0.9);
  font-size: 24px;
}

/* ---------- Decorative Lines & Elements ---------- */

/* Green lines - Atividades & Documentos sections (left side) */
.decor-green-lines {
  position: absolute;
  left: -318px;
  top: 49px;
  width: 537px;
  height: 79px;
  pointer-events: none;
  z-index: 1;
}
.decor-green-lines--docs {
  top: 49px;
}

/* Orange line - Como se tornar fornecedor (behind card) */
.decor-orange-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30%;
  width: 3094px;
  max-width: none;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Blue line - Compras/Participe section (top, slightly above photo) */
.decor-blue-line {
  position: absolute;
  left: -270px;
  top: -20px;
  width: 2713px;
  max-width: none;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Green/Yellow line - Manuais section */
.decor-manuais-line {
  position: absolute;
  left: -270px;
  top: 0;
  width: 2713px;
  max-width: none;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Fluxo path - inside fluxo card, aligned with number rows */
.decor-fluxo-path {
  position: absolute;
  left: 2.5%;
  top: 67px;
  width: 95%;
  height: 410px;
  pointer-events: none;
  z-index: 0;
}

/* Footer decoration */
.decor-footer {
  position: absolute;
  right: -100px;
  bottom: -600px;
  width: 500px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

/* Hide decorative elements on mobile */
@media (max-width: 1024px) {
  .decor-green-lines,
  .decor-orange-line,
  .decor-blue-line,
  .decor-manuais-line,
  .decor-footer {
    display: none;
  }
}

/* ---------- Decorative Waves ---------- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}
.wave-top {
  margin-bottom: -1px;
}

/* ========================================
   COMO SE TORNAR FORNECEDOR
   ======================================== */
.como-fornecedor {
  padding: 80px 97px;
  position: relative;
  overflow: hidden;
}
.como-fornecedor__title {
  font-size: var(--h2-size);
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}
.como-fornecedor__card {
  background: var(--color-100);
  border-radius: var(--radius-md);
  padding: 80px 142px;
  overflow: hidden;
}
.como-fornecedor__img {
  width: 100%;
  height: auto;
}

/* ========================================
   COMPRAS SECTION (two-column)
   ======================================== */
.compras-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.compras-section__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 956px 1fr;
  gap: 0;
  align-items: start;
}
.compras-section__image {
  position: relative;
  height: 586px;
  overflow: hidden;
}
.compras-section__image img {
  width: 710px;
  height: 586px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-left: auto;
}
.compras-section__content {
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  min-height: 586px;
}
.compras-section__title {
  font-size: var(--h3-size);
  font-weight: 400;
  color: rgba(0,0,0,0.9);
}
.compras-section__text {
  font-size: var(--text-size);
  line-height: 28px;
  color: #000;
}
.compras-section__text p {
  margin-bottom: 12px;
}
.compras-section__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  font-size: var(--btn-size);
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; }
.btn--primary {
  background: var(--color-200);
  color: #fff;
}
.btn--link {
  background: none;
  color: var(--color-400);
  padding-left: 10px;
}
.btn--link .material-icons {
  font-size: 20px;
  margin-left: 2px;
}

/* ========================================
   MANUAIS E PROCEDIMENTOS
   ======================================== */
.manuais {
  padding: 0 240px 80px;
  position: relative;
  overflow: hidden;
}
.manuais__inner {
  max-width: 1920px;
  margin: 0 auto;
}
.manuais__card {
  background: var(--color-100);
  border-radius: 21px;
  padding: 45px 64px;
}
.manuais__title {
  font-size: var(--h3-size);
  font-weight: 400;
  color: rgba(0,0,0,0.9);
  margin-bottom: 31px;
}
.manuais__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.manuais__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: opacity 0.2s;
}
.manuais__item:hover { opacity: 0.7; }
.manuais__item-text {
  font-size: var(--btn-size);
  color: #000;
  white-space: nowrap;
}
.manuais__item-line {
  flex: 1;
  height: 1px;
  background: #000;
  opacity: 0.3;
}
.manuais__item-icon {
  color: #000;
  font-size: 24px;
}

/* ========================================
   HOMOLOGAÇÃO SECTION (two-column)
   ======================================== */
.homologacao-section {
  padding: 80px 0;
}
.homologacao-section__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 956px 1fr;
  gap: 0;
  align-items: start;
}
.homologacao-section__image {
  position: relative;
  height: 586px;
  overflow: hidden;
}
.homologacao-section__image img {
  width: 711px;
  height: 586px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-left: auto;
}
.homologacao-section__content {
  padding: 43px 100px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  justify-content: center;
  min-height: 586px;
}
.homologacao-section__title {
  font-size: var(--h3-size);
  font-weight: 400;
  color: rgba(0,0,0,0.9);
}
.homologacao-section__text {
  font-size: var(--text-size);
  line-height: 26px;
  color: #000;
}

/* ========================================
   DOCUMENTOS EXIGIDOS
   ======================================== */
.documentos {
  background: var(--color-dark);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.documentos__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 240px;
}
.documentos__title {
  font-size: var(--h2-size);
  font-weight: 400;
  color: #fff;
  margin-bottom: 50px;
}
.documentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.documentos__card {
  border-radius: var(--radius-md);
  padding: 51px 46px;
  min-height: 561px;
}
.documentos__card-title {
  font-size: var(--h3-size);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  line-height: 1.2;
}
.documentos__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.documentos__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 2px;
  font-size: var(--btn-size);
  color: #fff;
  line-height: 1.4;
}
.documentos__list .material-icons {
  font-size: 18px;
  color: #fff;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ========================================
   FLUXO DE PAGAMENTOS
   ======================================== */
.fluxo {
  padding: 80px 0 100px;
}
.fluxo__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 117px;
}
.fluxo__title {
  font-size: var(--h2-size);
  font-weight: 400;
  color: #000;
  margin-bottom: 16px;
  padding-left: 132px;
}
.fluxo__legend {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding-left: 132px;
}
.fluxo__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
}
.fluxo__legend-dot {
  width: 27px;
  height: 27px;
  border-radius: 4px;
  display: inline-block;
}
.fluxo__card {
  background: var(--color-100);
  border-radius: var(--radius-md);
  padding: 60px 44px;
  display: flex;
  flex-direction: column;
  gap: 180px;
  position: relative;
  overflow: hidden;
}
.fluxo__row {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.fluxo__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 210px;
}
.fluxo__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-200);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
}
.fluxo__box {
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  font-size: 16.5px;
  line-height: 1.3;
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fluxo__box--blue {
  background: var(--color-200);
  color: #fff;
}
.fluxo__box--yellow {
  background: var(--color-yellow);
  color: var(--color-yellow-text);
}
.fluxo__box--tall {
  min-height: 102px;
}

/* ========================================
   CENTRAL DE NOTAS
   ======================================== */
.central-notas {
  padding: 80px 0;
}
.central-notas__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 709px;
  gap: 0;
  align-items: stretch;
}
.central-notas__image {
  min-height: 586px;
  overflow: hidden;
}
.central-notas__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.central-notas__content {
  background: var(--color-100);
  border-radius: var(--radius-md);
  padding: 46px 100px;
  min-height: 594px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.central-notas__title {
  font-size: var(--h3-size);
  font-weight: 400;
  color: rgba(0,0,0,0.9);
}
.central-notas__text {
  font-size: var(--text-size);
  line-height: 24px;
  color: #000;
}
.central-notas__text p { margin-bottom: 12px; }
.central-notas__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 10px;
}

/* ========================================
   FALE CONOSCO
   ======================================== */
.contato {
  padding: 80px 240px;
}
.contato__inner {
  display: grid;
  grid-template-columns: 713px 1fr;
  gap: 40px;
  align-items: stretch;
}
.contato__form-wrapper {
  background: var(--color-100);
  border-radius: var(--radius-md);
  padding: 57px 69px;
}
.contato__title {
  font-size: var(--h2-size);
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}
.contato__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: var(--text-size);
  color: #000;
  line-height: 1.5;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: #fff;
  border: 1px solid var(--color-gray-light);
  border-radius: 8px;
  padding: 12px;
  font-size: var(--text-size);
  color: #000;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-200);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.6);
}
.form-group textarea {
  resize: vertical;
  min-height: 180px;
  border-radius: var(--radius-sm);
}
.form-group select {
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
}
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  padding-right: 40px;
}
.select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(0,0,0,0.6);
}
.contato__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contato__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--color-100);
  padding: 63px 0 80px;
}
.faq__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 240px;
}
.faq__title {
  font-size: var(--h2-size);
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 100%;
}
.faq-item {}
.faq-question {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  width: 100%;
  text-align: left;
  border-radius: var(--radius-btn);
  font-size: var(--btn-size);
  color: #000;
  cursor: pointer;
}
.faq-question span:first-child {
  white-space: nowrap;
}
.faq-question__line {
  flex: 1;
  height: 1px;
  background: #000;
  opacity: 0.3;
}
.faq-question__icon {
  font-size: 24px;
  transition: transform 0.3s;
}
.faq-item--open .faq-question__icon {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item--open .faq-answer {
  max-height: 500px;
  padding: 10px 0 20px;
}
.faq-answer p {
  font-size: var(--text-size);
  line-height: 1.6;
  color: #333;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-100);
  padding: 40px 240px 60px;
  position: relative;
  overflow: hidden;
}
.footer__inner {
  max-width: 1920px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 30px;
}
.footer__logo img {
  height: 47px;
}
.footer__nav {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: var(--text-size);
  color: var(--color-700);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer__nav a:hover { opacity: 1; }
.footer__bottom {
  display: flex;
  gap: 40px;
  font-size: var(--text-size);
  color: var(--color-700);
  opacity: 0.6;
}
.footer__bottom a {
  transition: opacity 0.2s;
}
.footer__bottom a:hover { opacity: 1; }

/* ========================================
   MOBILE-ONLY COMPONENTS (hidden on desktop)
   ======================================== */

/* --- Timeline: Como se tornar fornecedor (mobile) --- */
.como-fornecedor__timeline {
  display: none;
}
.timeline__line {
  position: absolute;
  left: 40px;
  top: 125px;
  bottom: 60px;
  width: 11px;
  background: #58595B;
  border: 4px solid #fff;
  border-radius: 19px;
  box-shadow: 0 2.6px 7px rgba(0,0,0,0.25);
  z-index: 0;
}
.timeline__step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.timeline__marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.timeline__number {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.timeline__marker--check {
  background: var(--color-yellow);
}
.timeline__marker--check .material-icons {
  color: #535353;
  font-size: 20px;
}
.timeline__content {
  flex: 1;
  padding-top: 2px;
}
.timeline__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline__text {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
.timeline__badge {
  display: flex;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.timeline__badge-text {
  font-size: 16.5px;
  font-weight: 500;
  color: #535353;
  background: var(--color-yellow);
  border-radius: 12px;
  padding: 17px 20px;
}

/* --- Fluxo Vertical (mobile) --- */
.fluxo__mobile {
  display: none;
}
.fluxo__mobile-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  bottom: 30px;
  width: 15px;
  background: #58595B;
  border: 4px solid #fff;
  border-radius: 19px;
  box-shadow: 0 2.6px 7px rgba(0,0,0,0.25);
  z-index: 0;
}
.fluxo__mobile-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.fluxo__mobile-step .fluxo__number {
  width: 44px;
  height: 44px;
}
.fluxo__mobile-step .fluxo__box {
  width: 240px;
  min-height: 57px;
  font-size: 16px;
  padding: 14px 12px;
}

/* ========================================
   RESPONSIVE - Tablet (<=1024px)
   ======================================== */
@media (max-width: 1440px) {
  :root {
    --side-padding: 120px;
  }
  .header__inner { padding: 30px 120px 20px; }
  .header__nav { gap: 32px; }
  .hero__content { padding: 0 120px; }
  .relacionamento__inner { padding: 0 120px; }
  .atividades__inner { padding: 0 80px; }
  .atividades__title { padding-left: 60px; }
  .como-fornecedor { padding: 60px; }
  .como-fornecedor__card { padding: 60px 80px; }
  .compras-section__inner { grid-template-columns: 1fr 1fr; }
  .compras-section__image img { width: 100%; }
  .homologacao-section__inner { grid-template-columns: 1fr 1fr; }
  .homologacao-section__image img { width: 100%; }
  .documentos__inner { padding: 0 120px; }
  .fluxo__inner { padding: 0 60px; }
  .fluxo__title { padding-left: 60px; }
  .fluxo__legend { padding-left: 60px; }
  .manuais { padding: 0 120px 60px; }
  .contato { padding: 60px 120px; }
  .faq__inner { padding: 0 120px; }
  .footer { padding: 40px 120px 60px; }
}

@media (max-width: 1024px) {
  .header__inner {
    padding: 20px 40px;
  }
  .header__hamburger { display: flex; }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    padding: 80px 40px 40px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 1001;
  }
  .header__nav.open { right: 0; }
  .header__nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 28px;
  }
  .hero__content { padding: 0 40px; }
  .hero__box {
    max-width: 100%;
    padding: 40px 32px;
  }
  .hero__title { font-size: 36px; }
  .relacionamento { padding: 80px 0 100px; }
  .relacionamento__inner { padding: 0 40px; }
  .relacionamento__title { font-size: 36px; }
  .relacionamento__text { font-size: 18px; line-height: 28px; }
  .atividades__inner { padding: 0 40px; }
  .atividades__title { font-size: 28px; padding-left: 0; }
  .atividades__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .atividade-card { min-height: 280px; padding: 30px 24px; }
  .atividade-card__title { font-size: 24px; }
  .como-fornecedor { padding: 40px; }
  .como-fornecedor__title { font-size: 28px; }
  .como-fornecedor__card { padding: 40px; }
  .compras-section__inner { grid-template-columns: 1fr; }
  .compras-section__image { height: 400px; }
  .compras-section__image img { width: 100%; height: 100%; margin-left: 0; border-radius: var(--radius-md); }
  .compras-section__content { padding: 40px; min-height: auto; }
  .manuais { padding: 0 40px 60px; }
  .manuais__card { padding: 32px; }
  .manuais__item-text { white-space: normal; font-size: 16px; }
  .homologacao-section__inner { grid-template-columns: 1fr; }
  .homologacao-section__image { height: 400px; }
  .homologacao-section__image img { width: 100%; height: 100%; margin-left: 0; border-radius: var(--radius-md); }
  .homologacao-section__content { padding: 40px; min-height: auto; }
  .documentos__inner { padding: 0 40px; }
  .documentos__grid { grid-template-columns: 1fr; gap: 24px; }
  .documentos__card { min-height: auto; padding: 40px 32px; }
  .fluxo__inner { padding: 0 40px; }
  .fluxo__title { font-size: 28px; padding-left: 0; }
  .fluxo__legend { padding-left: 0; }
  .fluxo__card { padding: 40px 24px; }
  .central-notas__inner { grid-template-columns: 1fr; }
  .central-notas__image { height: 400px; }
  .central-notas__image img { border-radius: var(--radius-md); }
  .central-notas__content { margin-top: 24px; padding: 32px 40px; min-height: auto; }
  .contato { padding: 40px; }
  .contato__inner { grid-template-columns: 1fr; }
  .contato__form-wrapper { padding: 40px 32px; }
  .contato__image { height: 400px; }
  .faq__inner { padding: 0 40px; }
  .faq__title { font-size: 28px; }
  .faq-question span:first-child { white-space: normal; }
  .footer { padding: 40px; }
  .footer__top { flex-direction: column; gap: 24px; }
  .footer__nav { gap: 20px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* ========================================
   RESPONSIVE - Mobile (<=480px)
   ======================================== */
@media (max-width: 480px) {
  .header__inner { padding: 16px 20px; }
  .hero { min-height: 600px; }
  .hero__content { padding: 0 20px; align-items: flex-end; padding-bottom: 60px; }
  .hero__box { padding: 24px; text-align: center; }
  .hero__title { font-size: 28px; margin-bottom: 20px; }
  .hero__subtitle { font-size: 14px; }
  .relacionamento { padding: 60px 0 80px; }
  .relacionamento__inner { padding: 0 20px; }
  .relacionamento__title { font-size: 28px; margin-bottom: 40px; }
  .relacionamento__text { font-size: 16px; line-height: 24px; }
  .atividades { padding: 40px 0 60px; }
  .atividades__inner { padding: 0 20px; }
  .atividades__title { font-size: 24px; }
  .atividades__grid { grid-template-columns: 1fr; }
  .atividade-card { min-height: 200px; }
  .como-fornecedor { padding: 30px 20px; }
  .como-fornecedor__title { font-size: 24px; }
  .como-fornecedor__card { padding: 20px; background: none; }
  .como-fornecedor__img { display: none; }
  .como-fornecedor__timeline {
    display: flex;
    flex-direction: column;
    gap: 53px;
    position: relative;
    padding: 0 0 0 0;
  }
  .compras-section { padding: 40px 0; }
  .compras-section__image { height: 280px; padding: 0 20px; }
  .compras-section__content { padding: 30px 20px; }
  .compras-section__title { font-size: 24px; }
  .compras-section__actions { flex-direction: column; align-items: flex-start; }
  .manuais { padding: 0 20px 40px; }
  .manuais__card { padding: 24px 20px; }
  .manuais__title { font-size: 24px; }
  .homologacao-section { padding: 40px 0; }
  .homologacao-section__image { height: 280px; padding: 0 20px; }
  .homologacao-section__content { padding: 30px 20px; }
  .homologacao-section__title { font-size: 24px; }
  .documentos { padding: 40px 0 60px; }
  .documentos__inner { padding: 0 20px; }
  .documentos__title { font-size: 24px; }
  .documentos__card { padding: 30px 20px; }
  .documentos__card-title { font-size: 24px; }
  .fluxo { padding: 40px 0 60px; }
  .fluxo__inner { padding: 0 20px; }
  .fluxo__title { font-size: 24px; }
  .fluxo__card { padding: 30px 16px; overflow: visible; gap: 30px; }
  .fluxo__row { display: none; }
  .decor-fluxo-path { display: none; }
  .fluxo__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    padding: 10px 0;
  }
  .central-notas { padding: 40px 0; }
  .central-notas__image { height: 280px; padding: 0 20px; }
  .central-notas__image img { border-radius: var(--radius-md); }
  .central-notas__content { padding: 24px 20px; margin-top: 16px; }
  .central-notas__title { font-size: 24px; }
  .contato { padding: 30px 20px; }
  .contato__form-wrapper { padding: 30px 20px; }
  .contato__title { font-size: 24px; }
  .contato__image { height: 300px; }
  .faq { padding: 40px 0 60px; }
  .faq__inner { padding: 0 20px; }
  .faq__title { font-size: 24px; }
  .faq-question { font-size: 15px; }
  .footer { padding: 30px 20px 40px; }
}