/* =============================================
   ORQUÍDEA ALIMENTOS — CSS PRINCIPAL (PREMIUM)
   Paleta: Verde institucional, Branco, Cinza e Ouro
   ============================================= */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #1a6b4a;
  --green-mid: #258358;
  --green-light: #e6f4ee;
  --green-accent: #34a36e;
  --gold: #d4a832;
  --gold-light: #f5e9c0;
  --white: #ffffff;
  --off-white: #f8f9f7;
  --gray-100: #f2f4f1;
  --gray-200: #e4e8e2;
  --gray-500: #7a8c7e;
  --gray-700: #3a4a3e;
  --gray-900: #1a2319;
  --shadow-sm: 0 2px 8px rgba(26, 107, 74, 0.10);
  --shadow-md: 0 8px 32px rgba(26, 107, 74, 0.14);
  --shadow-lg: 0 20px 60px rgba(26, 107, 74, 0.18);
  --radius: 20px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-y: scroll;
  /* Reserva espaço da scrollbar — evita layout shift ao abrir modais */
  /* Padrão moderno para o mesmo efeito */
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.header.scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  height: 64px;
}

.header-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 3.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6rem;
  box-sizing: border-box;
  transition: height var(--transition);
}

.header.scrolled .header-inner {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-mark {
  flex-shrink: 0;
}

.logo-mark img {
  height: auto;
  width: 100px;
  object-fit: contain;
}

/* === BOTÃO DE VOLTAR NO HEADER === */
.header-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  background: rgba(26, 107, 74, 0.08);
  border: 1px solid rgba(26, 107, 74, 0.25);
  color: #1a6b4a;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-back-btn:hover,
.header-back-btn:active {
  background: #1a6b4a;
  color: #ffffff;
  border-color: #1a6b4a;
  transform: translateY(-1px);
}

.nav {
  margin-left: 80px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  font-size: 0.90rem;
  font-weight: 800;
  color: var(--gray-700);
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: var(--green-light);
  color: var(--green-dark);
}



/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2.4rem;
}

.btn-primary:hover {
  background: var(--green-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(26, 107, 74, 0.25);
}


.btn-ghost {
  background: var(--green-light);
  color: var(--green-dark);
}

.btn-ghost:hover {
  background: var(--green-mid);
  color: white;
  transform: translateY(-3px);
}

.btn-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* =============================================
   HERO (BANNER PRINCIPAL)
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 180px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('assets/tela.home.png');
  background-size: cover;
  background-position: center;
  filter: blur(0px);
  transform: scale(1.1);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-shapes {
  display: none;
}

.shape {
  display: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 163, 110, 0.15), transparent);
  animation: float 20s infinite ease-in-out;
  pointer-events: none;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -10%;
  animation-duration: 25s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: -5%;
  animation-duration: 18s;
  animation-delay: -5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 60%;
  animation-duration: 22s;
  animation-delay: -2s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 20;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 80px;
  padding: 4rem 2rem;
  margin-left: auto;
  margin-right: auto;
}


.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: rgba(52, 163, 110, 0.1);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(52, 163, 110, 0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title em {
  font-style: italic;
  color: #ffffff;
  position: relative;
  opacity: 1;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-denuncia-box {
  position: absolute;
  top: 45%;
  left: 4%;
  z-index: 25;
  background: rgba(20, 28, 22, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  width: fit-content;
  max-width: 290px;
  text-align: left;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-denuncia-box:hover {
  border-color: var(--green-accent);
  transform: translateY(-2px);
}

.hero-denuncia-box p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.82rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-weight: 500;
  line-height: 1.35;
}

.btn-denuncia {
  background: rgba(37, 131, 88, 0.2);
  color: #aae0c7;
  border: 1px solid rgba(37, 131, 88, 0.5);
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-denuncia:hover {
  background: rgba(37, 131, 88, 0.45);
  border-color: var(--green-accent);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 107, 74, 0.2);
}

@media (max-width: 900px) {
  .hero-denuncia-box {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    margin: 1.5rem auto 0;
    text-align: center;
    max-width: 100%;
    width: fit-content;
  }

  .hero-denuncia-box p {
    text-align: center;
  }

  .hero-phone-badge {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    inset: auto !important;
    margin: 0.85rem auto 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.6rem 1.4rem !important;
    font-size: 0.88rem !important;
    border-radius: 30px !important;
  }
}

.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.hero-pillars li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.pillar-dot {
  width: 10px;
  height: 10px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--green-accent);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ---- CONTATO TELEFÔNICO ESTÁTICO NA TELA INICIAL ---- */
.hero-phone-badge {
  position: absolute;
  bottom: 60px;
  right: 140px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 0.55rem 1.25rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: default;
  user-select: text;
  white-space: nowrap;
}

.hero-phone-badge svg {
  color: #ffffff;
  flex-shrink: 0;
}

/* =============================================
   CARDS DE DESTAQUE
   ============================================= */
.cards-section {
  padding: 3rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Card Themes (Harmonious Premium Palette) */
.card-fornecedor {
  --theme-color: #0284c7;
  /* Sky/Blue */
  --theme-bg: #f0f9ff;
  --theme-border: #bae6fd;
}

.card-plataforma {
  --theme-color: #6366f1;
  /* Indigo */
  --theme-bg: #f5f3ff;
  --theme-border: #ddd6fe;
}

.card-politicas {
  --theme-color: #f59e0b;
  /* Amber */
  --theme-bg: #fffbeb;
  --theme-border: #fde68a;
}

.card-sst {
  --theme-color: #ef4444;
  /* Crimson Red */
  --theme-bg: #fef2f2;
  --theme-border: #fecaca;
}

.card-sustentabilidade {
  --theme-color: #10b981;
  /* Green/Emerald */
  --theme-bg: #ecfdf5;
  --theme-border: #a7f3d0;
}

.card-familias {
  --theme-color: #06b6d4;
  /* Cyan/Teal */
  --theme-bg: #ecfeff;
  --theme-border: #c5f2f7;
}

.card-qualidade {
  --theme-color: #d97706;
  /* Dark Golden Yellow */
  --theme-bg: #fef3c7;
  --theme-border: #fde68a;
}

.card-etica {
  --theme-color: #8b5cf6;
  /* Violet Purple */
  --theme-bg: #faf5ff;
  --theme-border: #e9d5ff;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--theme-border);
  border-radius: 16px;
  padding: 2.2rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.card:hover {
  border-color: var(--theme-color);
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--theme-color);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: bottom;
}

.card:hover::before {
  transform: scaleY(1);
}

.card-icon {
  width: 58px;
  height: 58px;
  background: var(--theme-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
  /* Ícone mais encorpado */
}

.card:hover .card-icon {
  background: var(--theme-color);
  color: white;
  transform: rotate(8deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.card-arrow {
  font-size: 1.4rem;
  color: var(--gray-400);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-end;
}

.card:hover .card-arrow {
  transform: translateX(6px);
  color: var(--theme-color);
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.content-section {
  padding: 8rem 0;
}

.alt-bg {
  background: var(--off-white);
}

.fornecedor-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.fornecedor-section .container {
  width: 100%;
}

.fornecedor-section .content-text h2 {
  color: var(--white);
}

.fornecedor-section .content-text p {
  color: rgba(255, 255, 255, 0.9);
}

.fornecedor-section .feature-list li {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.fornecedor-section .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.fornecedor-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.fornecedor-section .btn-group {
  justify-content: center;
}

.fornecedor-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/seja_fornecedor_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  filter: blur(5px) brightness(0.4);
  transform: scale(1.1);
  z-index: -1;
}

.fornecedor-steps-card {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
  max-width: 550px;
  width: 100%;
}

.fornecedor-steps-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.fornecedor-steps-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.f-step-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.f-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-accent), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(52, 163, 110, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.f-step-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0.25rem;
}

@media (min-width: 576px) {
  .f-step-content h4 {
    white-space: nowrap;
  }
}

.f-step-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

.politicas-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 4rem 0;
}

.politicas-section .container {
  width: 100%;
}

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

.politicas-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.politicas-intro {
  max-width: 860px;
  margin: 1.25rem auto 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.politicas-intro p {
  margin-bottom: 0.85rem;
}

.politicas-subtext {
  font-weight: 700;
  color: var(--green-accent) !important;
  font-size: 1.08rem;
  margin-top: 1.25rem;
}

.politicas-section .policy-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.politicas-section .policy-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--green-accent);
}

.politicas-section .policy-card h4 {
  color: var(--white);
}

.politicas-section .policy-card p {
  color: rgba(255, 255, 255, 0.85);
}

.politicas-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/politicas_bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-attachment: scroll;
  filter: blur(5px) brightness(0.4);
  transform: scale(1.1);
  z-index: -1;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse>* {
  direction: ltr;
}

.content-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-text p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-list {
  margin: 2rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-list li::before {
  content: '✔';
  color: var(--green-accent);
  font-weight: 900;
}

/* Platform Mockup */
.platform-mockup {
  background: var(--gray-900);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-header {
  background: #2a3a2e;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) {
  background: #ff5f57;
}

.mock-dots span:nth-child(2) {
  background: #febc2e;
}

.mock-dots span:nth-child(3) {
  background: #28c840;
}

.mock-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.mock-body {
  display: flex;
  height: 320px;
}

.mock-sidebar {
  width: 160px;
  background: #1d2b20;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-menu-item {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.mock-menu-item.active {
  background: var(--green-dark);
  color: white;
}

.mock-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.25rem;
}

.stat-n {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-accent);
  display: block;
  margin-bottom: 0.25rem;
}

.mock-stat span:last-child {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   POLÍTICAS GRID
   ============================================= */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.policy-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
}

.policy-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.policy-card h4 {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.policy-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* =============================================
   SEÇÃO SST (PREMIUM)
   ============================================= */
.sst-section {
  background: var(--white);
  padding: 3.5rem 0;
}

.sst-section .container {
  width: 100%;
}

.sst-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.sst-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.sst-text p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sst-text .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.sst-text .btn-primary svg {
  flex-shrink: 0;
}

/* Cards grid — legacy kept for other uses */
.sst-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sst-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}

.sst-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.sst-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.sst-icon-yellow {
  background: #fef3c7;
}

.sst-icon-red {
  background: #fde8e8;
}

.sst-icon-green {
  background: var(--green-light);
}

.sst-card-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.sst-card-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ── HIGHLIGHT BADGE ── */
.sst-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(212, 168, 50, 0.12), rgba(212, 168, 50, 0.06));
  border: 1px solid rgba(212, 168, 50, 0.35);
  border-radius: 60px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.25rem;
}

.sst-badge-icon {
  font-size: 1.4rem;
}

.sst-badge-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── HOMOLOGAÇÃO TEXT (below video) ── */
.sst-homologacao-text {
  background: var(--off-white);
  border-left: 4px solid var(--green-accent);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.75rem;
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--gray-600, #4b5563);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sst-homologacao-text strong {
  color: var(--green-dark);
}

/* ── BLOCKS GRID (2 colunas) ── */
.sst-blocks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.sst-blocks-grid .sst-info-block {
  margin-bottom: 0;
}

/* Controle de Acessos ocupa largura total (tem 4 steps internos) */
.sst-block-controle {
  grid-column: 1 / -1;
}

/* Princípios ocupa largura total (tem 3 princípios em linha) */
.sst-block-principios {
  grid-column: 1 / -1;
}

/* ── INFO BLOCKS (shared) ── */
.sst-info-block {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sst-info-block:hover {
  border-color: var(--green-mid);
  box-shadow: 0 8px 32px rgba(26, 107, 74, 0.08);
}

.sst-info-block:last-child {
  margin-bottom: 0;
}

.sst-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sst-block-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-light), rgba(52, 163, 110, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sst-icon-wrap-yellow {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.sst-icon-wrap-red {
  background: linear-gradient(135deg, #fde8e8, #fca5a5);
}

.sst-icon-wrap-green {
  background: linear-gradient(135deg, var(--green-light), rgba(52, 163, 110, 0.25));
}

.sst-block-header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  letter-spacing: -0.01em;
}

.sst-info-block>p {
  color: var(--gray-600, #4b5563);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.sst-info-block>p:last-child {
  margin-bottom: 0;
}

.sst-info-block>p strong {
  color: var(--green-dark);
}

/* ── RULES GRID (Acesso à Fábrica) ── */
.sst-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.sst-rule-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  transition: all 0.25s ease;
}

.sst-rule-item:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 107, 74, 0.08);
}

.sst-rule-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.sst-rule-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.4;
}

/* ── STEPS FLOW (Controle de Acesso) ── */
.sst-steps-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.sst-flow-step {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.1rem;
  transition: all 0.25s ease;
  position: relative;
}

.sst-flow-step:hover {
  border-color: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 107, 74, 0.1);
}

.sst-flow-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(26, 107, 74, 0.25);
}

.sst-flow-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.2rem;
}

.sst-flow-content p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

/* ── BLOCK DIVIDER ── */
.sst-block-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  margin: 1.5rem 0;
}

/* ── PRINCÍPIOS DE SEGURANÇA ── */
.sst-principios-intro {
  margin-bottom: 0.75rem !important;
}

.sst-principios-list {
  display: flex;
  gap: 0.85rem;
}

.sst-principio-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green-accent);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  transition: all 0.25s ease;
}

.sst-principio-item:hover {
  border-color: var(--green-mid);
  border-left-color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(26, 107, 74, 0.08);
  transform: translateY(-2px);
}

.sst-principio-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-accent), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.sst-principio-item p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.45;
  margin: 0;
  padding-top: 0.15rem;
}

/* ── EMERGENCY CARDS ── */
.sst-emergency-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.sst-emergency-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid #ef4444;
  border-radius: 12px;
  padding: 1.25rem 1.15rem;
  text-align: center;
  transition: all 0.3s ease;
}

.sst-emergency-card:hover {
  border-color: #ef4444;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.12);
}

.sst-emergency-icon {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
}

.sst-emergency-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.sst-emergency-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ── Responsivo SST ── */
@media (max-width: 900px) {
  .sst-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sst-blocks-grid {
    grid-template-columns: 1fr;
  }

  .sst-block-controle,
  .sst-block-principios {
    grid-column: auto;
  }

  .sst-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sst-rules-grid {
    grid-template-columns: 1fr;
  }

  .sst-steps-flow {
    grid-template-columns: 1fr;
  }

  .sst-principios-list {
    flex-direction: column;
  }

  .sst-emergency-cards {
    grid-template-columns: 1fr;
  }

  .sst-info-block {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .sst-cards-grid {
    grid-template-columns: 1fr;
  }

  .sst-info-block {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .sst-block-header h3 {
    font-size: 1.2rem;
  }
}

/* =============================================
   VÍDEO SST
   ============================================= */
.video-placeholder {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-thumb {
  position: relative;
}

.video-thumb img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 107, 74, 0.4);
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}

.video-placeholder:hover .play-btn {
  background: rgba(26, 107, 74, 0.6);
  backdrop-filter: blur(0px);
}


/* =============================================
   FAMÍLIAS DE COMPRAS (PREMIUM)
   ============================================= */
.familias-section {
  position: relative;
  background: var(--white);
  padding: 1.5rem 0 4rem;
  scroll-margin-top: 75px;
}

.familias-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
}

.familias-header {
  text-align: center;
  max-width: 1350px;
  margin: 0 auto 2.5rem;
}

.familias-header .familias-intro-text {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 1400px;
  margin: 1.25rem auto 0;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: center;
}

.familias-header .familias-intro-text strong {
  color: var(--gray-900);
  font-weight: 600;
}

.familias-header .intro-click {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin: 1.5rem auto 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.familias-header .section-tag {
  color: var(--green-dark);
  letter-spacing: 0.2em;
}

.familias-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gray-900);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.familias-header p {
  color: var(--gray-600, #4b5563);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Grid de cards */
.families-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.family-card {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 107, 74, 0.15);
  border-top: 4px solid var(--green-mid);
  border-radius: 20px;
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(26, 107, 74, 0.08);
  position: relative;
  overflow: hidden;
}

.family-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.family-card:hover::before {
  transform: scaleX(1);
}

.family-card:hover {
  border-color: var(--green-dark);
  border-top-color: var(--green-dark);
  background: rgba(255, 255, 255, 0.97);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 107, 74, 0.18);
}

.family-card-icon {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.family-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 0;
  min-height: 4.5rem;
  /* Alinha os subtítulos na mesma posição vertical */
}

.family-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.family-card-arrow {
  align-self: flex-end;
  font-size: 1.1rem;
  color: var(--green-dark);
  opacity: 0.5;
  transition: all 0.3s ease;
  margin-top: auto;
}

.family-card:hover .family-card-arrow {
  color: var(--green-dark);
  opacity: 1;
  transform: translate(3px, -3px);
}

@media (max-width: 1024px) {
  .families-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .families-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =============================================
   MODAL FAMÍLIAS
   ============================================= */
.familia-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 10, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.familia-modal-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.familia-modal {
  background: linear-gradient(135deg, #1e3028 0%, #162620 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  max-width: 820px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Custom Scrollbar for Familia Modal */
.familia-modal::-webkit-scrollbar {
  width: 6px;
}

.familia-modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.familia-modal::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* Step Timeline Component inside Modals */
.steps-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin: 1.5rem 0 0.85rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.homologacao-steps {
  margin: 1rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: all 0.25s ease;
  position: relative;
  text-align: left;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(52, 163, 110, 0.4);
  transform: translateY(-2px);
}

.step-number {
  background: linear-gradient(135deg, var(--green-accent), #1f7a4e);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(52, 163, 110, 0.25);
}

.step-info {
  flex: 1;
}

.step-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.step-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

.step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  background: rgba(212, 168, 50, 0.18);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 50, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.step-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0;
}

.familia-modal-overlay.open .familia-modal {
  transform: translateY(0) scale(1);
}

.familia-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.familia-modal-close:hover {
  background: rgba(212, 168, 50, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.familia-modal-body-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
  text-align: left;
}

.familia-modal-icon {
  font-size: 4rem;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 90px;
  height: 90px;
  border-radius: 20px;
}

.familia-modal-text-content {
  flex: 1;
}

.familia-modal h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.familia-modal p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 680px) {
  .familia-modal {
    padding: 2.5rem 1.5rem;
  }

  .familia-modal-body-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .familia-modal h3 {
    font-size: 1.5rem;
  }
}


/* =============================================
   SEÇÃO SUSTENTABILIDADE (PREMIUM)
   ============================================= */
.sustent-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
  color: var(--white);
}

.sustent-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/sustainable_agriculture.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  filter: blur(5px) brightness(0.4);
  transform: scale(1.1);
  z-index: -1;
}

.sustent-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.sustent-header h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  margin: 0.5rem 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.sustent-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.sustent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.sustent-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 2.5rem 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition);
  text-align: center;
}

.sustent-card:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--green-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.sustent-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.sustent-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
}

.sustent-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* =============================================
   QUALIDADE — DIAGONAL SPLIT
   ============================================= */
.qualidade-section {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  position: relative;
  background: #1a2319;
  /* Dark green background */
}

.qualidade-left {
  flex: 0 0 60%;
  position: relative;
  height: 100vh;
  align-self: flex-start;
  background-image: url('assets/qualidade.png');
  background-size: cover;
  background-position: center;
  background-attachment: local;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.qualidade-photo-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.qualidade-logo-overlay {
  position: absolute;
  bottom: 2.5rem;
  left: 15%;
  z-index: 10;
}

.qualidade-logo {
  width: 180px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.qualidade-right {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  padding: 5rem 3rem 5rem 2.5rem;
  z-index: 1;
  background: #1a2319;
}

.qualidade-content {
  max-width: 600px;
  width: 100%;
}

.qual-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.qualidade-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 4.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.qualidade-intro {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.qualidade-pillars-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pb-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pb-row:last-child {
  border-bottom: none;
}

.pb-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 2rem;
  text-align: center;
  line-height: 1;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

.pb-text strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.pb-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

.qualidade-actions {
  margin-top: 2rem;
}

.btn-ghost-gold {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.btn-ghost-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a2319;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 168, 50, 0.3);
}

/* =============================================
   ITENS COM MODAL — QUALIDADE
   ============================================= */
.pb-modal-item {
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  border-radius: var(--radius-sm);
  padding: 1rem 0.5rem;
  margin: 0 -0.5rem;
}

.pb-modal-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 168, 50, 0.4) !important;
}

.pb-modal-item .pb-text strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: color var(--transition);
}

.pb-modal-item:hover .pb-text strong {
  color: var(--gold);
}

.pb-modal-item .pb-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.pb-arrow {
  font-size: 1.3rem;
  color: var(--gold);
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition), transform var(--transition);
  align-self: center;
}

.pb-modal-item:hover .pb-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

/* =============================================
   MODAL QUALIDADE (POPUP)
   ============================================= */
.qual-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 14, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qual-modal-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.qual-modal {
  background: linear-gradient(135deg, #1e3028 0%, #162620 100%);
  border: 1px solid rgba(212, 168, 50, 0.25);
  border-radius: 24px;
  padding: 3rem;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qual-modal-overlay.open .qual-modal {
  transform: translateY(0) scale(1);
}

.qual-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.qual-modal-close:hover {
  background: rgba(212, 168, 50, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.qual-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qual-modal-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.qual-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.qual-modal-subtitle {
  color: rgba(212, 168, 50, 0.8);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

.qual-modal-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.qual-modal-body p:last-child {
  margin-bottom: 0;
}

/* Scrollbar do modal */
.qual-modal::-webkit-scrollbar {
  width: 4px;
}

.qual-modal::-webkit-scrollbar-track {
  background: transparent;
}

.qual-modal::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 50, 0.35);
  border-radius: 4px;
}

/* Responsive adjustment for split layout */
@media (max-width: 992px) {
  .qualidade-section {
    flex-direction: column;
  }

  .qualidade-left {
    flex: 0 0 350px;
    width: 100%;
    clip-path: none;
  }

  .qualidade-right {
    flex: 1;
    width: 100%;
    padding: 4rem 2rem;
  }
}



/* =============================================
/* =============================================
   FOOTER — NOVO LAYOUT PREMIUM
   ============================================= */
.footer {
  background: linear-gradient(160deg, #111c15 0%, #1a2319 60%, #0f1a12 100%);
  color: rgba(255, 255, 255, 0.6);
}

.footer-main {
  padding: 3.5rem 0 3rem;
}

.footer-new-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* ---- COLUNA ESQUERDA ---- */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-wrap img.footer-logo-img {
  width: 130px;
  border-radius: 0;
  filter: brightness(1.1);
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-address svg {
  color: var(--green-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-brand-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.footer-brand-name em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-site-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-site-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.footer-site-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  transition: all var(--transition);
  width: fit-content;
}

.footer-site-btn:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: white;
  transform: translateY(-2px);
}

.btn-privacy {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  transition: all var(--transition);
  width: fit-content;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: normal;
  text-transform: none;
}

.btn-privacy:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: white;
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-contact-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer-contact-item:last-child {
  border-bottom: none;
}

.footer-contact-icon {
  color: var(--green-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--green-accent);
}

/* ---- COLUNA DIREITA: E-MAILS POR ÁREA (HIGH-TECH DESIGN) ---- */
.footer-right {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 32, 24, 0.75) 0%, rgba(10, 18, 13, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(52, 163, 110, 0.25);
  border-radius: 28px;
  padding: 3rem 3.5rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
  max-width: 960px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(52, 163, 110, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

/* Glowing Top Accent Bar */
.footer-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #34a36e 30%, #2ecc71 70%, transparent);
  box-shadow: 0 0 14px #34a36e;
}

/* Cybernetic Tech Badge */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(52, 163, 110, 0.12);
  border: 1px solid rgba(52, 163, 110, 0.35);
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #34a36e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  box-shadow: 0 0 15px rgba(52, 163, 110, 0.15);
}

.tech-pulse {
  width: 7px;
  height: 7px;
  background-color: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 8px #2ecc71;
  animation: techPulse 1.8s infinite ease-in-out;
}

@keyframes techPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }

  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.footer-form-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 40%, #d1fae5 70%, #34a36e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.footer-form-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  line-height: 1.5;
  text-align: center;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
}

.footer-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
  width: 100%;
  max-width: 640px;
}

.footer-form-group label {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.footer-form-group select {
  background: rgba(12, 22, 16, 0.85);
  border: 1px solid rgba(52, 163, 110, 0.4);
  border-radius: 14px;
  padding: 1.1rem 1.6rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  transition: all var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334a36e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 1.2em;
  padding-right: 3.2rem;
  cursor: pointer;
  text-align: center;
  text-align-last: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.footer-form-group select:focus {
  border-color: #34a36e;
  box-shadow: 0 0 20px rgba(52, 163, 110, 0.35), inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.footer-form-group select option {
  color: #ffffff;
  background-color: #121d16;
  padding: 0.8rem;
}

/* ---- ÁREA DE EXIBIÇÃO DE E-MAILS DE CONTATO ---- */
.area-email-display {
  margin-top: 1.2rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(52, 163, 110, 0.35);
  border-radius: 18px;
  padding: 1.6rem 2rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 900px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.3);
}

.area-email-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}

.area-email-placeholder svg {
  flex-shrink: 0;
  stroke: #34a36e;
  filter: drop-shadow(0 0 6px rgba(52, 163, 110, 0.4));
}

.area-email-result {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  animation: fadeInEmail 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInEmail {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.area-email-header {
  text-align: center;
}

.area-email-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #34a36e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.area-email-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  width: 100%;
  box-sizing: border-box;
}

.area-email-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid rgba(52, 163, 110, 0.2);
  border-radius: 14px;
  padding: 0.95rem 1.3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(22, 107, 74, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  max-width: 100%;
}

.area-email-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 35px rgba(52, 163, 110, 0.25);
  border-color: #34a36e;
}

.area-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
  min-width: 0;
  flex: 1;
}

.area-contact-name-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
}

.area-contact-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(22, 107, 74, 0.12);
  border-radius: 50%;
  color: #166b4a;
  flex-shrink: 0;
  margin-top: 2px;
}

.area-contact-name {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.area-email-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #166b4a;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  word-break: break-all;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
  min-width: 0;
}

.area-email-link:hover {
  color: #2ecc71;
  text-decoration: underline;
}

.area-email-link svg {
  flex-shrink: 0;
  stroke: #166b4a;
}

.btn-copy-email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #166b4a 0%, #34a36e 100%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(22, 107, 74, 0.35);
  flex-shrink: 0;
}

.btn-copy-email:hover {
  background: linear-gradient(135deg, #1fa36c 0%, #2ecc71 100%);
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 6px 18px rgba(46, 204, 113, 0.45);
}

.btn-copy-email.copied {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.6) !important;
}

@media (max-width: 768px) {
  .area-email-display {
    padding: 1.2rem 0.9rem;
  }

  .area-email-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .area-email-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .area-contact-info {
    width: 100%;
    min-width: 0;
  }

  .area-contact-name {
    font-size: 0.95rem;
  }

  .area-email-link {
    font-size: 0.88rem;
  }

  .btn-copy-email {
    align-self: flex-start;
  }
}

.footer-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.footer-form-status {
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-align: center;
  min-height: 0;
  transition: all var(--transition);
}

.footer-form-status.success {
  background: rgba(52, 163, 110, 0.12);
  border: 1px solid rgba(52, 163, 110, 0.3);
  color: #6ecf9e;
}

.footer-form-status.error {
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.25);
  color: #f08080;
}

/* ---- RODAPÉ INFERIOR ---- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.70rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.dev-highlight {
  color: var(--green-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(52, 163, 110, 0.3);
  transition: all var(--transition);
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.dev-highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--green-accent);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dev-highlight:hover {
  color: var(--white);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px var(--green-accent);
  transform: translateY(-1px) scale(1.03);
}

.dev-highlight:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  background-color: var(--white);
}

/* Responsivo */
@media (max-width: 900px) {
  .footer-new-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-form-row {
    grid-template-columns: 1fr;
  }
}



/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}


.visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
   MODAIS & OVERLAYS
   ============================================= */
/* ===== VIDEO MODAL SST ===== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.video-modal-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.video-modal {
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-overlay.open .video-modal {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

.video-modal-body {
  width: 100%;
  height: 100%;
}

.video-modal-body video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gray-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
  }

  .hero-content {
    padding: 2rem;
    text-align: center;
  }

  .hero-desc,
  .hero-pillars {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ethics-layout {
    grid-template-columns: 1fr;
  }

  .sustent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1150px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 0;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-content {
    margin-top: 20px;
    padding: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
    padding: 0 1rem;
    text-align: center;
  }

  .hero-pillars {
    align-items: flex-start;
    padding-left: 20px;
  }

  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .sustent-grid {
    grid-template-columns: 1fr;
  }

  .ethics-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-left {
    align-items: center;
    text-align: center;
  }

  .footer-brand-btns {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .footer-site-btn {
    margin: 0 auto;
  }

  .btn-privacy {
    margin: 1.2rem auto 0;
    text-align: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* =============================================
   CONTENT VISUAL & VISUAL CARD
   ============================================= */
.content-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.visual-card:hover {
  transform: scale(1.02);
}

.visual-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* =============================================
   PLATAFORMA DE COMPRAS — CARD GRID
   ============================================= */
.plat-section {
  position: relative;
  background: var(--white);
  padding: 3.5rem 0;
  overflow: hidden;
}

.plat-section .container {
  width: 100%;
}

/* Cabeçalho Centralizado */
.plat-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.plat-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.plat-header .plat-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Grid de 4 Cards responsivo */
.plat-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .plat-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .plat-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Banner de Chamada para Ação (CTA) */
.plat-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #072a15 0%, #0f4c27 100%);
  border-radius: 24px;
  padding: 3rem 4rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(7, 42, 21, 0.2);
  margin-top: 0;
}

.plat-cta-content {
  max-width: 65%;
  text-align: left;
}

.plat-cta-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.plat-cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

.plat-cta-btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: var(--white);
  color: #0d381e;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  text-decoration: none;
  border: 1px solid transparent;
}

.plat-cta-btn:hover {
  background: #d4af37;
  /* Dourado no Hover */
  color: #0d381e;
  /* Letras verdes no Hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.plat-cta-btn svg {
  transition: transform 0.3s ease;
}

.plat-cta-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Responsividade do CTA Banner */
@media (max-width: 900px) {
  .plat-cta-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 2.5rem;
    gap: 2rem;
  }

  .plat-cta-content {
    max-width: 100%;
    text-align: center;
  }

  .plat-cta-btn {
    justify-content: center;
  }
}

/* --- CARD --- */
.plat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  outline: none;
}

.plat-card:hover,
.plat-card:focus-visible {
  border-color: var(--green-mid);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26, 107, 74, 0.16);
}

/* Thumbnail área */
.plat-card-thumb {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.plat-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.plat-card:hover .plat-thumb-placeholder {
  transform: scale(1.06);
}

/* Gradientes por card */
.plat-thumb-1 {
  background: linear-gradient(135deg, #1a6b4a 0%, #34a36e 100%);
}

.plat-thumb-2 {
  background: linear-gradient(135deg, #1a5b7a 0%, #2d8fb5 100%);
}

.plat-thumb-3 {
  background: linear-gradient(135deg, #4a1a6b 0%, #8a3fbf 100%);
}

.plat-thumb-4 {
  background: linear-gradient(135deg, #6b4a1a 0%, #d4842e 100%);
}

.plat-thumb-5 {
  background: linear-gradient(135deg, #1a3c6b 0%, #3571c8 100%);
}

.plat-thumb-6 {
  background: linear-gradient(135deg, #6b1a2a 0%, #c43b5a 100%);
}

.plat-thumb-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.plat-thumb-icon svg {
  width: 34px;
  height: 34px;
}

/* Badge */
.plat-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Play overlay */
.plat-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 107, 74, 0);
  transition: background var(--transition);
}

.plat-card:hover .plat-play-overlay {
  background: rgba(26, 107, 74, 0.35);
}

.plat-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.plat-card:hover .plat-play-btn {
  opacity: 1;
  transform: scale(1);
}

/* Card body */
.plat-card-body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.5rem;
  min-height: 130px;
  /* Alinha a altura dos cards com títulos longos */
}

.plat-card-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-accent);
  flex-shrink: 0;
  min-width: 36px;
  line-height: 1.2;
}

.plat-card-info {
  flex: 1;
  min-width: 0;
}

.plat-card-info h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
  line-height: 1.4;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.plat-card-info p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.plat-card-arrow {
  font-size: 1.3rem;
  color: var(--gray-500);
  transition: all var(--transition);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.plat-card:hover .plat-card-arrow {
  color: var(--green-dark);
  transform: translate(3px, -3px);
}

/* Gradientes dos Cards */
.plat-thumb-purple {
  background: linear-gradient(135deg, #581c87 0%, #8b5cf6 100%);
}

.plat-thumb-amber {
  background: linear-gradient(135deg, #b45309 0%, #f59e0b 100%);
}

.plat-thumb-green {
  background: linear-gradient(135deg, #065f46 0%, #059669 100%);
}

.plat-thumb-blue {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

/* Badge estilo documento */
.plat-badge-doc {
  background: rgba(26, 107, 74, 0.85) !important;
  border-color: rgba(52, 163, 110, 0.4) !important;
}

/* =============================================
   LBOX — LAYOUT DOC (texto + download)
   ============================================= */
.lbox-doc-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 3rem;
  width: 100%;
  animation: lbox-slide-in 0.35s ease;
  overflow-y: auto;
  max-height: 100%;
}

.lbox-doc-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lbox-doc-icon svg {
  width: 42px;
  height: 42px;
}

.lbox-doc-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
  width: 100%;
}

.lbox-doc-para {
  font-size: 0.97rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin: 0;
  padding: 0;
}

.lbox-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(26, 107, 74, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.lbox-download-btn:hover {
  background: var(--green-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 107, 74, 0.3);
}


.lbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 18, 12, 0.88);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lbox-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.lbox-wrap {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.lbox-overlay.open .lbox-wrap {
  transform: translateY(0) scale(1);
}

/* Header */
.lbox-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 2rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.lbox-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 0.35rem;
}

.lbox-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin: 0;
}

.lbox-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.lbox-close:hover {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-500);
}

/* Media area */
.lbox-media {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide content */
.lbox-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  animation: lbox-slide-in 0.35s ease;
}

@keyframes lbox-slide-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lbox-slide img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.lbox-slide video {
  max-width: 100%;
  max-height: 320px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

/* Placeholder (antes de ter mídia real) */
.lbox-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 3rem;
}

.lbox-placeholder-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green-dark);
}

.lbox-placeholder-icon svg {
  width: 46px;
  height: 46px;
}

.lbox-placeholder h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gray-900);
  margin: 0;
}

.lbox-placeholder p {
  font-size: 0.95rem;
  color: var(--gray-500);
  max-width: 400px;
  margin: 0;
  line-height: 1.6;
}

.lbox-placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* Footer */
.lbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem 1.25rem;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
}

/* Step dots */
.lbox-steps {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all 0.25s ease;
}

.lbox-dot.active {
  background: var(--green-dark);
  width: 24px;
  border-radius: 4px;
}

/* Nav buttons */
.lbox-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lbox-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: all var(--transition);
}

.lbox-nav-btn:hover:not(:disabled) {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
}

.lbox-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lbox-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-500);
  min-width: 48px;
  text-align: center;
}

/* =============================================
   VIDEO LABEL
   ============================================= */
.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* =============================================
   ETHICS SECTION — CARD LAYOUT
   ============================================= */
.etica-section {
  position: relative;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  overflow: hidden;
}

.etica-section::before {
  display: none;
}

/* Container central */
.etica-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

/* Cabeçalho da seção */
.etica-section-header {
  text-align: center;
}

.etica-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0.4rem 0;
  color: #000000;
}

.etica-section-header p {
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Row dos cards */
.etica-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 1.5rem;
  align-items: start;
}

/* ── Card individual ── */
.etica-card {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  width: 100%;
}

/* ── Cabeçalho do card (verde) ── */
.etica-card-head {
  background: linear-gradient(135deg, #0f2318 0%, #1a6b4a 100%);
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  justify-content: flex-start;
}

.etica-card-top-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.4rem;
}

.etica-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

/* ── Título no cabeçalho do card ── */
.etica-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0.25rem 0 0.5rem;
  color: #ffffff;
}

/* ── Descrição no cabeçalho ── */
.etica-panel-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Badge ── */
.etica-panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: fit-content;
}

.etica-badge-gov {
  background: rgba(255, 255, 255, 0.12);
  color: #a3f0c4;
  border: 1px solid rgba(163, 240, 196, 0.3);
}

.etica-badge-cond {
  background: rgba(255, 255, 255, 0.12);
  color: #a3f0c4;
  border: 1px solid rgba(163, 240, 196, 0.3);
}

/* ── Corpo do card (branco) ── */
.etica-card-body {
  padding: 1rem 2rem;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── Lista de itens ── */
.etica-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.etica-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--green-dark);
  transition: all 0.25s ease;
}

.etica-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.etica-item-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-accent);
  flex-shrink: 0;
  min-width: 42px;
  line-height: 1;
  margin-top: 2px;
}

.etica-item strong {
  display: block;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.05rem;
}

.etica-item p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--gray-500);
  margin: 0;
}

/* ── Botões ── */
.etica-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.etica-btn-gov {
  background: var(--green-dark);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(26, 107, 74, 0.3);
}

.etica-btn-gov:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 107, 74, 0.4);
}

.etica-btn-cond {
  background: var(--green-dark);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(26, 107, 74, 0.3);
}

.etica-btn-cond:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 107, 74, 0.4);
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .etica-section {
    padding: 2rem 1rem;
    min-height: unset;
  }

  .etica-cards-row {
    flex-direction: column;
  }

  .etica-card-head {
    padding: 1.5rem;
  }

  .etica-card-body {
    padding: 1.25rem 1.5rem;
  }
}

/* ── Legacy (mantido para compatibilidade) ── */
.etica-split-wrapper,
.etica-panel,
.etica-panel-inner,
.etica-divider,
.etica-divider-line,
.etica-divider-icon {
  display: none;
}







.download-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.download-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.dl-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.download-card h4 {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.download-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* =============================================
   QUALITY PILLARS
   ============================================= */
.quality-subtitle {
  margin: 1.5rem 0 1rem;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.pillars-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pillar-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.pillar-block:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.pb-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.pillar-block strong {
  display: block;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}

.pillar-block p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   POLICY CTA
   ============================================= */
.policy-cta {
  text-align: center;
  margin-top: 2rem;
}

/* =============================================
   FOOTER EXTRAS
   ============================================= */
.footer-main {
  padding-top: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--green-accent);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-top:hover {
  background: var(--green-accent);
  transform: translateY(-3px);
}

/* =============================================
   MODAL CONTENT STYLES
   ============================================= */
#modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

#modal-content p {
  margin-bottom: 2rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* =============================================
   PAGE HERO & PRIVACY PAGE STYLES
   ============================================= */
.page-hero {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  background-color: var(--gray-900);
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, #11422c 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 20;
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem 1.5rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-subtitle {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.privacy-section {
  padding: 5rem 0;
  background: var(--off-white);
}

.privacy-card-full {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-md);
}

.privacy-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-900);
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 2rem;
}

.privacy-intro p {
  margin-bottom: 1.25rem;
}

.privacy-intro p:last-child {
  margin-bottom: 0;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-item h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 0.5rem;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}

.privacy-item p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.privacy-bullet-list {
  margin: 1rem 0 1rem 1.5rem;
  list-style-type: disc;
}

.privacy-bullet-list li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.privacy-highlight-box {
  background: var(--green-light);
  border-left: 4px solid var(--green-dark);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  font-size: 1rem;
  color: var(--green-dark);
}

.privacy-highlight-box a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
}

.privacy-highlight-box a:hover {
  color: var(--green-accent);
}

.privacy-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.privacy-footer p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.privacy-actions {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .privacy-card-full {
    padding: 2.5rem 1.5rem;
  }

  .page-hero {
    min-height: 180px;
  }
}

/* =============================================
   LOADING SCREEN — ORQUÍDEA
   ============================================= */
#orq-loading {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #111c15 0%, #1a2319 60%, #0f1a12 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#orq-loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.orq-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.orq-logo-wrap {
  animation: orqLogoIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.orq-logo-img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.orq-loader-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(52, 163, 110, 0.4);
  text-transform: uppercase;
  animation: orqTextIn 0.7s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.orq-loader-bar {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  animation: orqTextIn 0.7s 0.6s both;
}

.orq-loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-accent));
  border-radius: 2px;
  animation: orqBarFill 1.9s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes orqLogoIn {
  from {
    opacity: 0;
    transform: scale(0.75) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes orqTextIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orqBarFill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* =============================================
   SECTION TITLE CONSOLIDATION (FROM SEJA NOSSO FORNECEDOR ONWARDS)
   ============================================= */
#fornecedor h2,
#plataforma h2,
#politicas h2,
#sustentabilidade h2,
#familias h2,
#qualidade h2,
#etica h2,
#sst h2 {
  font-size: clamp(3rem, 4.5vw, 4.2rem);
}

/* =============================================
   DECORATIVE FLOATING LOGOS IN THE BACKGROUND
   ============================================= */
.cards-section,
.plat-section,
.sst-section,
.familias-section,
.etica-section {
  position: relative;
  overflow: hidden;
}

.bg-decorations {
  display: none;
}

.decor-logo {
  position: absolute;
  pointer-events: none;
  transform: rotate(var(--rot));
  animation: bgFloatRandom var(--dur) ease-in-out var(--delay) infinite;
  will-change: transform;
}

@keyframes bgFloatRandom {

  0%,
  100% {
    transform: translate(0, 0) rotate(var(--rot));
  }

  50% {
    transform: translate(var(--drift-x), var(--drift-y)) rotate(calc(var(--rot) + var(--drift-rot)));
  }
}

/* =============================================
   MOBILE FOOTER CONTACT OVERRIDES (FORCED BYPASS)
   ============================================= */
@media (max-width: 900px) {
  .footer-contact-info {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin: 0 auto !important;
    width: fit-content !important;
  }

  .footer-contact-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.85rem !important;
    width: 100% !important;
    text-align: left !important;
  }

  .footer-contact-item a,
  .footer-contact-item span {
    text-align: left !important;
    margin: 0 !important;
    display: inline-block !important;
  }
}