*,
*::before,
*::after { box-sizing: border-box; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 30;
  background: #111;
  color: #fff;
  padding: 8px 12px;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1240px, calc(100% - 48px));
  min-height: var(--header-h);
}

.logo img {
  display: block;
  width: 254px;
  height: auto;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 0;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--red);
  padding: 8px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  width: 100%;
}

.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 20px 20px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #111;
}

.mobile-panel a[aria-current="page"] { color: var(--red); }

.accent-bar {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: var(--red);
  flex: 0 0 auto;
}

.page-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 26px;
}

.page-head h1,
.block-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading);
  text-transform: uppercase;
}

.prose {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.prose p { margin: 0 0 1em; }
.prose strong { color: #3a3a3a; font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
}

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.checks svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.dots {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.dots li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 8px;
  color: var(--text);
}

.dots li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.frame {
  position: relative;
  justify-self: end;
  width: min(100%, 530px);
}

.frame::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 78%;
  height: 46px;
  background-color: var(--red);
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.8px, transparent 0.9px);
  background-size: 5px 5px;
}

.frame img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #1c1c1c;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}

.slide.is-active { opacity: 1; z-index: 1; }

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.slide-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 80px));
}

.slide-kicker {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.slide-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
}

.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }

.about {
  position: relative;
  background: #282828 url("/assets/img/bg-dark.jpg") center top / cover no-repeat;
  color: #fff;
  padding: 70px 0 80px;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 40, 0.96);
}

.about-accent {
  position: absolute;
  left: 0;
  top: 70px;
  bottom: 80px;
  width: 22px;
  background-color: var(--red);
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.7px, transparent 0.8px);
  background-size: 4px 4px;
  z-index: 2;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  width: min(1280px, calc(100% - 80px));
  margin-inline: auto;
}

.about-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.about h2 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.about p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 8px 22px;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--red);
  color: #fff;
}

.btn-solid {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  min-width: 110px;
}

.btn-solid:hover { filter: brightness(0.95); color: #fff; }

.solutions {
  position: relative;
  padding: 54px 0 20px;
}

.solutions .block-title { margin-bottom: 28px; }

.title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  padding-bottom: 36px;
}

.sol-card { text-align: center; }

.sol-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.sol-body {
  position: relative;
  z-index: 1;
  width: min(250px, 86%);
  margin: -36px auto 0;
  background: #f4f4f4;
  padding: 18px 16px 16px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sol-body h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
}

.banner {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.banner-copy {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 32px));
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.banner-copy p { margin: 0; }

.feats {
  padding: 48px 0 36px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: inherit;
}

.feat-visual {
  position: relative;
  width: 100%;
}

.feat-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 0;
  height: 70%;
  background-color: var(--red);
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 0.8px, transparent 0.9px);
  background-size: 5px 5px;
}

.feat-visual img {
  position: relative;
  display: block;
  width: calc(100% - 18px);
  margin-top: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feat-cap {
  position: absolute;
  left: 0;
  right: 18px;
  bottom: 0;
  background: rgba(70, 70, 70, 0.82);
  color: #fff;
  text-align: center;
  padding: 12px 10px 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.25;
}

.feat-cap span {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 8px;
}

.site-footer {
  background: var(--footer);
  border-top: 1px solid #e6e6e6;
  padding: 28px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 22px;
}

.footer-logo img { width: 210px; height: auto; }

.site-footer h2 {
  margin: 6px 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #3a3a3a;
}

.footer-line,
.footer-links a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin: 0 0 8px; }

.footer-links a:hover,
.footer-line:hover { color: var(--red); }

.footer-line svg,
.footer-links svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #4b4f58;
}

.footer-links.plain a { display: block; }

.copyright {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 15px;
}

.copyright p { margin: 0; }
.copyright a { color: #fff; }
.copyright a:hover { text-decoration: underline; }

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.wa-float-btn {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page {
  padding-bottom: 10px;
}

.jobs {
  padding: 88px 0 120px;
  color: #8a8a8a;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.jobs p { margin: 0 0 22px; }

.jobs a {
  color: var(--red);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
}

.contact-grid iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

.contact label {
  display: block;
  margin: 0 0 14px;
  color: #666;
  font-size: 15px;
}

.contact input,
.contact textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #d5d5d5;
  background: #fff;
  font: inherit;
  color: #333;
}

.contact textarea { min-height: 150px; resize: vertical; }

.lgpd {
  margin: 8px 0 16px;
  color: #666;
  font-size: 15px;
}

.form-feedback {
  min-height: 1.4em;
  margin-top: 12px;
  color: var(--red);
}

.certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  align-items: start;
  padding: 10px 0 40px;
}

.certs h2 {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
}

.cert-doc h2 { text-align: center; }

.certs a { display: block; }
.certs img { display: block; width: min(100%, 420px); margin-inline: auto; }

.rev {
  text-align: right;
  color: var(--muted);
  margin: 0 0 8px;
}

.iso-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 20px;
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .mobile-panel.is-open,
  .mobile-panel:not([hidden]) { display: block; }
  .logo img { width: 210px; }
  .sol-grid,
  .feat-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .split,
  .contact-grid,
  .certs,
  .iso-row { grid-template-columns: 1fr; }
  .frame { justify-self: stretch; }
  .hero-slider { height: 280px; }
  .slide-kicker { font-size: 18px; }
  .slide-title,
  .banner-copy,
  .about h2,
  .page-head h1 { font-size: 24px; }
  .slider-btn { display: none; }
}

@media (max-width: 700px) {
  .header-inner { min-height: 88px; width: min(100% - 28px, 1240px); }
  .logo img { width: 180px; }
  .hero-slider { height: 210px; }
  .slide-copy { width: calc(100% - 28px); }
  .slide-kicker { font-size: 15px; letter-spacing: 0.5px; }
  .slide-title { font-size: 18px; }
  .about { padding: 28px 0 36px; }
  .about-accent { display: none; }
  .about-grid { width: min(100% - 32px, 1280px); gap: 18px; }
  .about h2 { font-size: 22px; }
  .sol-grid,
  .feat-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .banner { min-height: 180px; }
  .banner-copy { font-size: 16px; }
  .page-head h1 { font-size: 22px; }
  .contact-grid iframe { height: 320px; }
  .jobs { padding: 48px 0 72px; }
}
