/* ==========================================================================
   J.O.S Engenharia & Construção — Folha de estilo principal
   Paleta extraída da logo: terracota (#da8c67) + azul-marinho (#1f324b)
   ========================================================================== */

:root {
  --primary: #da8c67;        /* terracota da marca */
  --primary-dark: #c2734d;
  --primary-light: #e8a583;
  --navy: #1f324b;           /* azul-marinho do texto da logo */
  --navy-dark: #16273a;
  --navy-deep: #0f1c2b;
  --accent: #e0a07e;
  --ink: #1f324b;
  --muted: #5b6b7e;
  --bg-soft: #f6f4f1;
  --bg-soft-2: #eef1f5;
  --white: #ffffff;
  --line: rgba(31, 50, 75, 0.10);
  --shadow-sm: 0 4px 14px rgba(15, 28, 43, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 28, 43, 0.12);
  --shadow-lg: 0 25px 60px -12px rgba(15, 28, 43, 0.30);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1200px;
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--primary-dark); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Utilitários de seção ---------- */
.section { padding: 5.5rem 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--navy {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #28415e 55%, var(--navy-dark) 100%);
  color: #dfe6ee;
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}
.section--navy .eyebrow { color: var(--primary-light); }
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0 0 1rem;
}
.section-lead { font-size: 1.05rem; color: var(--muted); margin: 0; }
.section--navy .section-lead { color: rgba(255, 255, 255, 0.78); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(218, 140, 103, 0.40);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(218, 140, 103, 0.55); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary-dark); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-light:hover { color: var(--navy); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-wa { background: linear-gradient(145deg, #25d366, #128c7e); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,0.4); }
.btn-wa:hover { color: #fff; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 0.85rem 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 22px rgba(15, 28, 43, 0.10);
  padding: 0.5rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; transition: height 0.3s; }
.site-header.scrolled .nav-logo img { height: 40px; }
/* logo pill garante leitura sobre o hero escuro antes do scroll */
.nav-logo-pill {
  background: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: box-shadow 0.3s;
}
.site-header.scrolled .nav-logo-pill { box-shadow: none; padding: 0.2rem 0.4rem; }

/* ----- Header em páginas internas: barra azul (navy) fixa ----- */
.site-header.header-inner,
.site-header.header-inner.scrolled {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #243a54 100%);
  box-shadow: 0 4px 20px rgba(15, 28, 43, 0.28);
  padding: 0.6rem 0;
}
.site-header.header-inner .nav-menu a,
.site-header.header-inner.scrolled .nav-menu a { color: #fff; }
.site-header.header-inner .nav-menu a:hover,
.site-header.header-inner.scrolled .nav-menu a:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.site-header.header-inner .nav-logo-pill { box-shadow: none; }
/* compensa a altura do header fixo no conteúdo das páginas internas */
body.inner-page { padding-top: 74px; }

/* ----- Banner de página interna (page-header.php) ----- */
.page-header {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 3.25rem 0 3rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #28415e 55%, var(--navy-dark) 100%);
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(218,140,103,0.06) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header-title { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0.5rem 0 0.75rem; }
.page-header-desc { color: rgba(255, 255, 255, 0.8); max-width: 640px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.breadcrumb-jos {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.5rem 1.15rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
}
.breadcrumb-jos a { color: rgba(255, 255, 255, 0.85); display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.breadcrumb-jos a:hover { color: var(--primary-light); }
.breadcrumb-jos .sep { color: var(--primary-light); font-size: 0.72rem; }
.breadcrumb-jos .current { color: var(--primary-light); }

.nav-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.1rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 0.5rem 0.62rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
/* Em telas médias, encolhe um pouco mais para caber tudo numa linha */
@media (max-width: 1200px) and (min-width: 992px) {
  .nav-menu a { font-size: 0.84rem; padding: 0.45rem 0.45rem; }
  .nav-logo img { height: 40px; }
}
.nav-menu a:hover { background: rgba(255,255,255,0.14); }
.site-header.scrolled .nav-menu a { color: var(--navy); }
.site-header.scrolled .nav-menu a:hover { background: var(--bg-soft); color: var(--primary-dark); }
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
}
.site-header.scrolled .nav-toggle { background: var(--bg-soft); color: var(--navy); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(15,28,43,0.94) 0%, rgba(31,50,75,0.82) 55%, rgba(15,28,43,0.70) 100%),
    linear-gradient(135deg, #16273a 0%, #28415e 50%, #16273a 100%);
  overflow: hidden;
}
.hero::after {
  /* textura geométrica inspirada na marca */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(218,140,103,0.06) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 8.5rem 0 4.5rem;
}
.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(218,140,103,0.18);
  border: 1px solid rgba(218,140,103,0.4);
  color: var(--primary-light);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 1.25rem;
}
.hero h1 .hl { color: var(--primary-light); }
.hero p {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 0 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Destaque Visual do Hero (Coluna Direita) */
.hero-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(218, 140, 103, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}
.hero-image-wrapper:hover {
  transform: translateY(-4px);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 2px);
}

/* ----- Slideshow do hero (fade) ----- */
.hero-slider {
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease-in-out;
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  /* leve efeito Ken Burns enquanto o slide está ativo */
  transition: opacity 1.1s ease-in-out, transform 6s ease-out;
}
.hero-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
.hero-slider-dots button.active {
  width: 22px;
  border-radius: 5px;
  background: var(--primary);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 0.4s linear; transform: none; }
  .hero-slide.active { transform: none; }
}
.hero-floating-card {
  position: absolute;
  bottom: 35px;
  left: -28px;
  background: rgba(15, 28, 43, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md), 0 8px 32px rgba(0, 0, 0, 0.3);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  animation: float-slow 4s ease-in-out infinite;
}
.hero-floating-card i {
  font-size: 1.6rem;
  color: var(--primary-light);
  background: rgba(218, 140, 103, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.hero-floating-card strong {
  display: block;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.1;
  font-weight: 800;
}
.hero-floating-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 1.6rem; z-index: 2;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ==========================================================================
   NÚMEROS / STATS
   ========================================================================== */
.stats {
  position: relative;
  margin-top: -3.5rem;
  z-index: 5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
}
.stat { text-align: center; padding: 0.5rem; }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--primary-dark); line-height: 1; }
.stat-num .suffix { color: var(--navy); }
.stat-label { margin-top: 0.5rem; color: var(--muted); font-weight: 600; font-size: 0.95rem; }

/* ==========================================================================
   SOBRE
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.about-media { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.about-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 1.25rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-md); max-width: 220px;
}
.about-badge strong { display: block; font-size: 1.8rem; line-height: 1; }
.about-badge span { font-size: 0.85rem; opacity: 0.9; }
.about-text p { color: var(--muted); margin-bottom: 1.1rem; }

/* Missão / Visão / Valores */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.mvv-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s;
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.5rem; color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  margin-bottom: 1.1rem;
}
.mvv-card h3 { margin: 0 0 0.6rem; }
.mvv-card p { color: var(--muted); margin: 0; font-size: 0.97rem; }
.values-list { list-style: none; margin: 0; padding: 0; }
.values-list li { position: relative; padding-left: 1.7rem; margin-bottom: 0.55rem; color: var(--muted); font-size: 0.95rem; }
.values-list li::before {
  content: "\F26B"; font-family: "bootstrap-icons";
  position: absolute; left: 0; top: 0; color: var(--primary-dark);
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 2.2rem; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: width 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.7rem;
  background: var(--bg-soft); color: var(--primary-dark);
  margin-bottom: 1.25rem; transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon { background: linear-gradient(145deg, var(--primary), var(--primary-dark)); color: #fff; }
.service-card h3 { font-size: 1.2rem; margin: 0 0 0.65rem; }
.service-card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ==========================================================================
   OBRAS / PORTFÓLIO
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  font-family: inherit; font-weight: 600; font-size: 0.9rem;
  padding: 0.5rem 1.2rem; border-radius: 50px; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.work-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; cursor: pointer;
  background: var(--bg-soft-2);
}
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.work-card:hover img { transform: scale(1.08); }

.work-zoom {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  background: rgba(15, 28, 43, 0.45);
  color: #fff; font-size: 1.8rem;
  opacity: 0; transition: opacity 0.3s;
}
.work-card:hover .work-zoom { opacity: 1; }

/* ----- Swiper das Obras ----- */
.works-swiper { position: relative; padding: 0 0 0.5rem; }
.works-swiper .swiper { border-radius: var(--radius); overflow: hidden; padding-bottom: 2.5rem; }
.works-swiper .swiper-slide { height: auto; }
.works-swiper .work-card { aspect-ratio: 1 / 1; border-radius: var(--radius); cursor: pointer; }
.works-swiper .work-card img { width: 100%; height: 100%; object-fit: cover; }

/* setas de navegação personalizadas */
.swiper-nav-btn {
  position: absolute; top: calc(50% - 1.25rem); transform: translateY(-50%);
  z-index: 10; width: 48px; height: 48px; border-radius: 50%;
  border: none; cursor: pointer;
  background: #fff; color: var(--navy);
  box-shadow: var(--shadow-md); font-size: 1.3rem;
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}
.swiper-nav-btn:hover { background: var(--primary); color: #fff; }
.swiper-button-prev-obras { left: -10px; }
.swiper-button-next-obras { right: -10px; }
.swiper-nav-btn.swiper-button-disabled { opacity: 0.35; cursor: default; }
.swiper-nav-btn.swiper-button-disabled:hover { background: #fff; color: var(--navy); }

/* paginação (bolinhas) */
.works-swiper .swiper-pagination { bottom: 0; }
.works-swiper .swiper-pagination-bullet { background: var(--navy); opacity: 0.35; transition: opacity 0.2s, width 0.2s, background 0.2s; }
.works-swiper .swiper-pagination-bullet-active { background: var(--primary); opacity: 1; width: 24px; border-radius: 5px; }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,28,43,0.92) 0%, rgba(15,28,43,0.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; opacity: 0; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s;
}
.work-card:hover .work-overlay { opacity: 1; transform: translateY(0); }
.work-tag {
  align-self: flex-start; background: var(--primary); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 50px; margin-bottom: 0.6rem;
}
.work-overlay h4 { color: #fff; margin: 0 0 0.25rem; font-size: 1.15rem; }
.work-overlay p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.85rem; }
.work-status {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem; border-radius: 50px; color: #fff;
}
.work-status.andamento { background: #e0a800; }
.work-status.concluida { background: #2faa6b; }

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.diff-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 1.75rem; transition: background 0.25s, transform 0.25s;
}
.diff-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-5px); }
.diff-icon { font-size: 1.8rem; color: var(--primary-light); margin-bottom: 0.85rem; }
.diff-card h4 { color: #fff; font-size: 1.05rem; margin: 0 0 0.4rem; }
.diff-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   SUSTENTABILIDADE
   ========================================================================== */
.sust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sust-list { display: grid; gap: 1.25rem; }
.sust-item { display: flex; gap: 1rem; align-items: flex-start; }
.sust-item .ic {
  flex: none; width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.4rem; color: #fff;
  background: linear-gradient(145deg, #2faa6b, #1c8050);
}
.sust-item h4 { margin: 0 0 0.25rem; font-size: 1.1rem; }
.sust-item p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.sust-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* ==========================================================================
   MAPA DE ATUAÇÃO
   ========================================================================== */
.atuacao-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: center; }
.atuacao-states { display: grid; gap: 1rem; }
.state-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  transition: background 0.25s, transform 0.25s;
}
.state-card:hover { background: rgba(255, 255, 255, 0.10); transform: translateX(4px); }
.state-dot { flex: none; width: 18px; height: 18px; border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,255,255,0.08); }
.state-dot.dot-ma { background: #7cb342; }   /* verde Maranhão */
.state-dot.dot-pi { background: #4a90d9; }   /* azul Piauí */
.state-card strong { display: block; color: #fff; font-size: 1.05rem; }
.state-card span { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }
.atuacao-map { display: flex; justify-content: center; }
.atuacao-map img {
  width: 100%; max-width: 420px; height: auto; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(218, 140, 103, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   CLIENTES / PARCEIROS / DEPOIMENTOS
   ========================================================================== */
.logos-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; align-items: center;
  margin-bottom: 3.5rem;
}
.logo-chip {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.1rem 1.6rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s; font-size: 1.05rem;
  display: grid; place-items: center; min-height: 96px; min-width: 150px;
}
.logo-chip img {
  max-height: 60px; max-width: 150px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.7; transition: filter 0.25s, opacity 0.25s;
}
.logo-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.logo-chip:hover img { filter: grayscale(0); opacity: 1; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm); position: relative;
}
.testimonial .quote { font-size: 2.5rem; color: var(--primary); line-height: 1; opacity: 0.4; }
.testimonial p { color: var(--muted); font-style: italic; margin: 0.5rem 0 1.5rem; }
.testimonial .who { display: flex; align-items: center; gap: 0.85rem; }
.testimonial .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff; display: grid; place-items: center; font-weight: 700;
}
.testimonial .who strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial .who span { color: var(--muted); font-size: 0.85rem; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16/10; background: var(--bg-soft-2); position: relative; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-cat {
  position: absolute; top: 1rem; left: 1rem; background: var(--primary); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 50px;
}
.post-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-date { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; }
.post-body h3 { font-size: 1.12rem; margin: 0 0 0.6rem; }
.post-body p { color: var(--muted); font-size: 0.92rem; margin: 0 0 1.1rem; }
.post-link { margin-top: auto; font-weight: 700; color: var(--primary-dark); font-size: 0.9rem; }

/* paginação do blog */
.blog-pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; }
.blog-pagination .page-btn {
  min-width: 44px; height: 44px; padding: 0 0.9rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; border: 1px solid var(--line); background: #fff;
  color: var(--navy); font-weight: 700; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.blog-pagination .page-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.blog-pagination .page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.blog-pagination .page-btn.disabled { opacity: 0.4; pointer-events: none; }
.pagination-info { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 1rem; }

/* estado vazio do blog */
.blog-empty { max-width: 480px; margin: 1rem auto; text-align: center; padding: 3rem 1.5rem; }
.blog-empty i { font-size: 3rem; color: var(--primary); display: block; margin-bottom: 1rem; }
.blog-empty h3 { margin: 0 0 0.5rem; }
.blog-empty p { color: var(--muted); margin: 0 0 1.5rem; }

/* ==========================================================================
   POST / NOTÍCIA (single)
   ========================================================================== */
.post-article {
  max-width: 820px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.post-article-cover { aspect-ratio: 16 / 8; overflow: hidden; background: var(--bg-soft-2); }
.post-article-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-article-body { padding: 2.5rem; }
.post-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; color: var(--muted); font-size: 0.88rem; font-weight: 600; margin-bottom: 1rem; }
.post-meta i { color: var(--primary-dark); margin-right: 0.3rem; }
.post-article-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 0 0 0.75rem; }
.post-article-sub { font-size: 1.15rem; color: var(--muted); font-style: italic; margin: 0 0 1.5rem; }

.post-share { display: flex; align-items: center; gap: 0.6rem; padding: 1rem 0 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.post-share-label { color: var(--muted); font-weight: 600; font-size: 0.9rem; margin-right: 0.25rem; }
.share-btn { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 1.1rem; transition: transform 0.2s, opacity 0.2s; }
.share-btn:hover { transform: translateY(-3px); color: #fff; opacity: 0.92; }
.share-btn.wa { background: #25d366; }
.share-btn.fb { background: #1877f2; }
.share-btn.li { background: #0a66c2; }

.post-video { position: relative; aspect-ratio: 16/9; margin: 0 0 1.75rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.post-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.post-content { font-size: 1.08rem; line-height: 1.85; color: #38475a; }
.post-content p { margin: 0 0 1.4rem; }
.post-content h2, .post-content h3, .post-content h4 { color: var(--navy); margin: 2rem 0 0.9rem; }
.post-content h3 { font-size: 1.3rem; }
.post-content a { color: var(--primary-dark); text-decoration: underline; }
.post-content a:hover { color: var(--primary); }
.post-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; }
.post-content ul, .post-content ol { margin: 0 0 1.4rem; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content blockquote { border-left: 4px solid var(--primary); background: var(--bg-soft); padding: 1rem 1.5rem; margin: 1.5rem 0; font-style: italic; color: var(--muted); border-radius: 0 12px 12px 0; }
.post-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.post-content th, .post-content td { padding: 0.75rem; border: 1px solid var(--line); }
.post-content th { background: var(--bg-soft); color: var(--navy); font-weight: 700; }

.post-back { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

@media (max-width: 640px) {
  .post-article-body { padding: 1.5rem; }
  .post-content { font-size: 1rem; }
}

/* ==========================================================================
   TRABALHE CONOSCO
   ========================================================================== */
.career-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.career-points { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.career-points li { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.9rem; color: rgba(255,255,255,0.85); }
.career-points i { color: var(--primary-light); font-size: 1.2rem; }

/* página Trabalhe Conosco (tema claro) */
.career-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.career-benefits .benefit { display: flex; gap: 0.8rem; align-items: flex-start; }
.career-benefits .benefit i { color: var(--primary-dark); font-size: 1.3rem; margin-top: 0.15rem; }
.career-benefits .benefit strong { display: block; color: var(--navy); font-size: 0.98rem; }
.career-benefits .benefit span { color: var(--muted); font-size: 0.86rem; }

.vagas-list { display: grid; gap: 0.8rem; margin-top: 1rem; }
.vaga-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.05rem 1.25rem; box-shadow: var(--shadow-sm); }
.vaga-item summary { font-weight: 700; color: var(--navy); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; list-style: none; }
.vaga-item summary::-webkit-details-marker { display: none; }
.vaga-item summary i { color: var(--primary-dark); transition: transform 0.2s; }
.vaga-item[open] summary i.bi-caret-right-fill { transform: rotate(90deg); }
.vaga-item .vaga-prazo { font-size: 0.8rem; color: var(--muted); font-weight: 600; white-space: nowrap; }
.vaga-item p { color: var(--muted); font-size: 0.93rem; margin: 0.85rem 0 0; }

.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.check-chip {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 0.9rem; border: 1.5px solid var(--line); border-radius: 11px;
  background: #fdfdfc; cursor: pointer; font-size: 0.9rem; color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.check-chip:hover { border-color: var(--primary); }
.check-chip input { width: 18px; height: 18px; accent-color: var(--primary); flex: none; }
.check-chip:has(input:checked) { border-color: var(--primary); background: #fdf2ec; }

/* faixa CTA (Trabalhe Conosco na home) */
.cta-band { display: grid; grid-template-columns: 1.4fr auto; gap: 2.5rem; align-items: center; }
.cta-band-action { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-band-action .btn { white-space: nowrap; }

/* CTA de contato/orçamento (home) */
.contact-cta {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 2.75rem 2.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  align-self: start;
}
.contact-cta-icon {
  width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center;
  font-size: 2rem; color: #fff; margin-bottom: 0.75rem;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 24px rgba(218, 140, 103, 0.30);
}
.contact-cta h3 { margin: 0 0 0.5rem; font-size: 1.5rem; }
.contact-cta p { color: var(--muted); margin: 0 0 1.5rem; }
.contact-cta .btn { width: 100%; max-width: 320px; justify-content: center; margin-bottom: 0.25rem; }

@media (max-width: 991px) {
  .cta-band { grid-template-columns: 1fr; gap: 1.75rem; }
  .cta-band-action .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   FORMULÁRIOS
   ========================================================================== */
.form-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.97rem; color: var(--ink);
  padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: 11px;
  background: #fdfdfc; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(218,140,103,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input[type="file"] { padding: 0.6rem; background: #fff; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }
.form-feedback { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 11px; font-size: 0.92rem; display: none; }
.form-feedback.ok { display: block; background: #e6f6ee; color: #1c8050; border: 1px solid #b6e3cb; }
.form-feedback.err { display: block; background: #fdeaea; color: #c0392b; border: 1px solid #f2c4c0; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info { display: grid; gap: 2.25rem; align-content: start; padding-top: 0.5rem; }
.contact-item { display: flex; gap: 1.25rem; align-items: center; }
.contact-item .ic {
  flex: none; width: 68px; height: 68px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.85rem; color: #fff; background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 24px rgba(218, 140, 103, 0.30);
}
.contact-item h4 { margin: 0 0 0.3rem; font-size: 1.18rem; }
.contact-item p, .contact-item a { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.contact-item a:hover { color: var(--primary-dark); }
.map-embed { border: 0; width: 100%; height: 260px; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-top: 0.5rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { background: #fff; display: inline-block; padding: 0.7rem 1rem; border-radius: 12px; margin-bottom: 1.2rem; }
.footer-logo img { height: 42px; }
.footer-about p { font-size: 0.92rem; line-height: 1.7; }
.footer-col h5 { color: #fff; font-size: 1rem; margin: 0 0 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff; font-size: 1.1rem; transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-contact-line { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.8rem; font-size: 0.92rem; }
.footer-contact-line i { color: var(--primary-light); margin-top: 0.2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: space-between;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}

/* ---------- WhatsApp flutuante ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 1100;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(145deg, #25d366, #128c7e); color: #fff;
  display: grid; place-items: center; font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5); transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.1); color: #fff; }

/* ---------- Lightbox simples ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1200; background: rgba(15,28,43,0.92);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; }

/* ---------- Placeholders de imagem (trocar pelas fotos reais) ---------- */
.ph {
  width: 100%; height: 100%; min-height: 100%;
  display: grid; place-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #34506f 100%);
  color: rgba(255,255,255,0.55); position: relative;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(218,140,103,0.10) 0 2px, transparent 2px 22px);
}
.ph i { font-size: 2.4rem; color: rgba(255,255,255,0.45); z-index: 1; }
.ph span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; z-index: 1; }
.ph--soft { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%); color: rgba(255,255,255,0.85); }
.ph--soft i, .ph--soft span { color: rgba(255,255,255,0.9); }
.ph--green { background: linear-gradient(135deg, #2faa6b 0%, #1c8050 100%); }
.about-media .ph, .sust-media .ph { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; }
.sust-media .ph { aspect-ratio: 1/1; }

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

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 84vw);
    background: var(--navy-dark); flex-direction: column; align-items: stretch;
    padding: 5.5rem 1.5rem 2rem; gap: 0.25rem; transition: right 0.32s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { color: #fff; padding: 0.85rem 1rem; font-size: 1rem; }
  .site-header.scrolled .nav-menu a { color: #fff; }
  .nav-cta { margin: 0.75rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 999; display: none; }
  .nav-backdrop.show { display: block; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .sust-grid, .career-wrap, .contact-grid, .atuacao-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { left: 16px; bottom: -20px; }
  .mvv-grid, .services-grid, .works-grid, .testimonials, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid.gallery { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Hero Responsivo 991px */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
    padding: 7.5rem 0 3.5rem;
  }
  .hero-text-content {
    align-items: center;
  }
  .hero-text-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-wrapper {
    max-width: 380px;
    aspect-ratio: 4 / 3;
  }
  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    animation: float-slow-mobile 4s ease-in-out infinite;
  }
}

@keyframes float-slow-mobile {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .stats { margin-top: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 1.75rem 1rem; gap: 0.75rem; }
  .mvv-grid, .services-grid, .works-grid, .testimonials, .blog-grid, .diff-grid { grid-template-columns: 1fr; }
  .works-grid.gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .career-benefits, .check-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .logos-row { gap: 0.75rem; }
  .logo-chip { padding: 0.8rem 1.1rem; font-size: 0.9rem; }

  /* Hero Responsivo 640px */
  .hero-image-wrapper {
    max-width: 100%;
    aspect-ratio: 1.1 / 1;
  }
  .hero-floating-card {
    padding: 0.8rem 1.1rem;
    bottom: -15px;
  }
  .hero-floating-card i {
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
  }
  .hero-floating-card strong {
    font-size: 1.15rem;
  }
  .hero-floating-card span {
    font-size: 0.75rem;
  }
}
