﻿@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

:root {
  --red: #e1251b;
  --red-dark: #b71512;
  --ink: #202124;
  --muted: #6b6f76;
  --line: #eceff1;
  --paper: #ffffff;
  --soft: #f6f7f8;
  --black: #080808;
  --green: #25a51f;
  --container: 1180px;
  --shadow: 0 20px 60px rgb(15 23 42 / 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  animation: page-enter 520ms ease-out both;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--red);
  border-bottom: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}

.topbar__inner {
  width: min(var(--container), calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand img {
  width: 210px;
  height: auto;
}

.brand {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  animation: logo-enter 560ms ease-out both;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -72px;
  width: 42px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
  opacity: 0;
  transform: translateX(-80px) rotate(18deg);
  pointer-events: none;
}

.brand:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 20px rgb(0 0 0 / .16));
}

.brand:hover::after {
  opacity: 1;
  animation: logo-shine 720ms ease;
}

.brand--white img {
  filter: brightness(0) invert(1);
}

.brand .custom-logo-link {
  display: block;
}

.brand .custom-logo {
  width: 210px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.menu a {
  position: relative;
  padding: 8px 0;
}

.menu .header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  margin-left: 4px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  box-shadow: 0 12px 30px rgb(0 0 0 / .16);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.menu .header-cta::before {
  content: "";
  position: absolute;
  inset: -90% auto auto -35%;
  width: 58px;
  height: 160px;
  background: linear-gradient(90deg, transparent, rgba(225,37,27,.2), transparent);
  transform: rotate(25deg) translateX(-36px);
  transition: transform 480ms ease;
  z-index: -1;
}

.menu .header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgb(0 0 0 / .22);
}

.menu .header-cta:hover::before {
  transform: rotate(25deg) translateX(148px);
}

.menu .header-cta::after {
  display: none;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.84) 0%, rgba(8,8,8,.58) 44%, rgba(225,37,27,.28) 100%),
    url("../images/bg-posto.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), #ff493f, var(--red-dark));
}

.hero__inner {
  width: min(var(--container), calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 56px;
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--red);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(50px, 6.2vw, 84px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span {
  color: #ff3a31;
}

.hero p {
  max-width: 660px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 24px;
  font: 900 13px "Roboto", Arial, sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--red {
  background: var(--red);
  color: #fff;
}

.btn--ghost {
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

.hero__card {
  align-self: end;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero__card img {
  width: 230px;
  margin-bottom: 24px;
}

.hero__card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.stats {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.stats__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  min-height: 138px;
  padding: 30px 22px;
  border-right: 1px solid var(--line);
}

.stat:first-child {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: var(--soft);
}

.values-first {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, #e1251b 0%, #b71512 54%, #7f0e0b 100%);
  color: #fff;
}

.values-first::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .6;
  pointer-events: none;
}

.values-hero__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 72px 0 76px;
}

.values-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.values-intro .eyebrow {
  color: #fff;
  margin-bottom: 18px;
}

.values-intro .eyebrow::before {
  background: #fff;
}

.values-intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: .98;
  font-weight: 900;
}

.value-slider,
.manifesto-slider {
  position: relative;
  padding-inline: 58px;
}

.value-slide-track,
.manifesto-track {
  display: block;
  overflow: hidden;
}

.value-slide-track::-webkit-scrollbar,
.manifesto-track::-webkit-scrollbar {
  display: none;
}

.value-slide {
  display: none;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1fr);
  gap: 26px;
  min-height: 430px;
  scroll-snap-align: start;
}

.value-slide.is-active {
  display: grid;
  animation: carousel-shell-in 360ms ease both;
}

.value-slide__text {
  background: #fff;
  color: var(--ink);
  padding: clamp(30px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 28px 80px rgb(0 0 0 / .22);
}

.value-slide.is-active .value-slide__text {
  animation: value-text-in 520ms cubic-bezier(.2,.75,.2,1) both;
}

.value-slide__text span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.value-slide__text h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: .98;
  font-weight: 900;
}

.value-slide__text p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.value-slide__image {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 80px rgb(0 0 0 / .24);
}

.value-slide__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(225,37,27,.18), rgba(0,0,0,.1));
}

.value-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-slide.is-active .value-slide__image {
  animation: value-image-in 620ms cubic-bezier(.2,.75,.2,1) both;
}

.value-slider .carousel-btn,
.manifesto-slider .carousel-btn {
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--red);
}

.value-slider .carousel-btn:hover,
.manifesto-slider .carousel-btn:hover {
  background: #f3f3f3;
  transform: translateY(-50%) scale(1.04);
}

.value-slider .carousel-dots,
.manifesto-slider .carousel-dots {
  margin-top: 22px;
}

/* Legacy fallback for older Elementor snippets. */
.values-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.values-summary article {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.values-summary article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #fff;
  transform: scaleY(.34);
  transform-origin: top;
  transition: transform 220ms ease;
}

.values-summary article:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.36);
}

.values-summary article:hover::before {
  transform: scaleY(1);
}

.values-summary strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 900;
}

.values-summary p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.48;
}

.value-slider .carousel-dot,
.manifesto-slider .carousel-dot {
  background: rgba(255,255,255,.38);
}

.value-slider .carousel-dot.is-active,
.manifesto-slider .carousel-dot.is-active {
  background: #fff;
}

.manifesto {
  background: var(--red);
  color: #fff;
  padding: 28px 0 70px;
}

.manifesto__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.manifesto-slide {
  min-height: 235px;
  display: none;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 28px;
  scroll-snap-align: start;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

.manifesto-slide.is-active {
  display: grid;
  animation: manifesto-in 420ms ease both;
}

.manifesto-slide span {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.manifesto-slide h2 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  font-weight: 900;
}

.section__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading .eyebrow {
  color: var(--red);
}

.section-heading .eyebrow::before {
  background: var(--red);
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.values-carousel {
  position: relative;
  padding-inline: 56px;
}

.values-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 0 22px;
}

.values-track::-webkit-scrollbar {
  display: none;
}

.value-card {
  min-height: 270px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgb(15 23 42 / .06);
  scroll-snap-align: start;
}

.value-card__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.value-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.carousel-btn {
  position: absolute;
  top: 118px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgb(225 37 27 / .22);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.carousel-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.carousel-btn:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}

.carousel-btn--prev {
  left: 0;
}

.carousel-btn--next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #c9ced3;
  padding: 0;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--red);
}

.value-slider .carousel-dot.is-active,
.manifesto-slider .carousel-dot.is-active {
  animation: dot-pulse 720ms ease both;
}

.companies {
  background: #fff;
  color: #fff;
  padding: 92px 0;
}

.companies .section-heading h2,
.companies .section-heading p {
  color: var(--ink);
}

.companies .section-heading p {
  color: var(--muted);
}

.companies__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.company-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
  padding: 0;
  background: #0b0b0b;
  border: 1px solid #e7e7e7;
  box-shadow: 0 18px 46px rgb(15 23 42 / .10);
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.company-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225,37,27,.38);
  box-shadow: 0 28px 70px rgb(15 23 42 / .18);
}

.company-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
}

.company-card:nth-child(even) .company-card__visual {
  order: 2;
}

.company-card:nth-child(even) .company-card__body {
  order: 1;
}

.company-card::before,
.company-card::after {
  display: none;
}

.company-card__visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.company-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg) center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 480ms ease;
}

.company-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(225,37,27,.25)),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.36));
}

.company-card:hover .company-card__visual::before {
  transform: scale(1.08);
}

.company-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  background:
    radial-gradient(circle at 100% 0%, rgba(225,37,27,.22), transparent 38%),
    linear-gradient(145deg, #191919, #080808);
}

.company-card__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red);
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform 340ms ease;
}

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

.company-card__logo {
  width: min(260px, 78%);
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}

.company-card.is-red .company-card__logo {
  filter: none;
}

.company-card p {
  min-height: 0;
  max-width: 670px;
  margin: 0 0 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.64;
  font-weight: 500;
  opacity: .9;
}

.company-card__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-left: 4px solid var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.company-card__link::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

.company-card__link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.62);
}

.company-card__link:hover::before {
  left: 110%;
}

.company-card__link span {
  color: var(--red);
  font-size: 20px;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(177,21,18,.76)),
    url("../images/bg-contato.jpg") center / cover no-repeat;
  color: #fff;
  padding: 86px 0;
}

.contact__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 520px) 1fr;
  gap: 78px;
  align-items: center;
}

.form-panel,
.jobs-panel {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.72);
}

.form-panel h2,
.jobs-panel h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.05;
  font-weight: 900;
}

.form-kicker,
.jobs-panel__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-kicker::before,
.jobs-panel__tag::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.form p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.form label {
  display: block;
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #d7dce0;
  border-radius: 0;
  background: linear-gradient(180deg, #fff, #fafafa);
  padding: 14px 15px;
  margin-top: 7px;
  margin-bottom: 0;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgb(225 37 27 / .12), 0 10px 26px rgb(15 23 42 / .08);
  transform: translateY(-1px);
}

.form textarea {
  min-height: 118px;
  resize: vertical;
}

.form button {
  width: 100%;
  border: 0;
  color: #fff;
  padding: 16px 20px;
  font: 900 14px "Roboto", Arial, sans-serif;
  cursor: pointer;
}

.uiverse-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 54px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 16px 34px rgb(225 37 27 / .24);
}

.uiverse-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg, transparent, #fff, transparent, #ff7a73, transparent);
  opacity: .55;
  animation: spin-soft 3.4s linear infinite;
  z-index: -2;
}

.uiverse-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  z-index: -1;
}

.uiverse-btn span {
  position: relative;
  z-index: 1;
}

.jobs-panel {
  position: relative;
  max-width: 460px;
  min-height: 340px;
  overflow: hidden;
  justify-self: end;
  background:
    linear-gradient(145deg, rgba(8,8,8,.92), rgba(60,7,6,.9)),
    url("../images/bg-motorista.jpg") center / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jobs-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}

.jobs-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(#0000, #0000) padding-box,
    conic-gradient(from var(--spin-angle), rgba(255,255,255,.08), #fff, var(--red), rgba(255,255,255,.08)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-spin 5s linear infinite;
  pointer-events: none;
}

.jobs-panel > * {
  position: relative;
  z-index: 1;
}

.jobs-panel .jobs-panel__tag,
.jobs-panel h2 {
  color: #fff;
}

.jobs-panel p {
  margin: 0 0 26px;
  color: rgba(255,255,255,.78);
  line-height: 1.56;
}

.jobs-panel a,
.jobs-panel__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #fff;
  color: var(--red);
  border-left: 4px solid var(--red);
  box-shadow: 0 14px 34px rgb(0 0 0 / .24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.jobs-panel__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgb(0 0 0 / .32);
}

.jobs-panel a {
  color: var(--red);
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  background: #050505;
  padding: 54px 0 42px;
  color: #fff;
}

.footer__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 46px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.footer img {
  width: 290px;
  filter: brightness(0) invert(1);
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
}

.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu a {
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.footer__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.footer__menu a:hover {
  color: #ff4a42;
  transform: translateY(-2px);
}

.footer__menu a:hover::after {
  transform: scaleX(1);
}

.footer p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 23px;
  line-height: 1.35;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise .58s ease forwards;
}

.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
.reveal:nth-child(4) { animation-delay: .24s; }

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

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes logo-enter {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logo-shine {
  from {
    transform: translateX(-80px) rotate(18deg);
  }
  to {
    transform: translateX(330px) rotate(18deg);
  }
}

@keyframes spin-soft {
  to {
    transform: rotate(1turn);
  }
}

@keyframes carousel-shell-in {
  from {
    opacity: .72;
  }
  to {
    opacity: 1;
  }
}

@keyframes value-text-in {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes value-image-in {
  from {
    opacity: 0;
    transform: translateX(22px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes manifesto-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dot-pulse {
  0% {
    transform: scale(.82);
  }
  55% {
    transform: scale(1.16);
  }
  100% {
    transform: scale(1);
  }
}

@property --spin-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  to {
    --spin-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 1024px) {
  .topbar__inner {
    min-height: 76px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .brand img {
    width: 210px;
  }

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

  .hero__card {
    max-width: 520px;
    align-self: auto;
  }

  .stats__inner,
  .companies__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-card,
  .company-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .company-card:nth-child(even) .company-card__visual,
  .company-card:nth-child(even) .company-card__body {
    order: initial;
  }

  .values-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

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

  .jobs-panel {
    justify-self: start;
  }

  .footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__menu {
    justify-content: flex-start;
    gap: 22px;
    font-size: 20px;
  }

  .footer-menu-list {
    justify-content: flex-start;
    gap: 22px;
  }

  .value-slide {
    grid-template-columns: 1fr;
  }

  .values-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-slide__image {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .topbar__inner,
  .hero__inner,
  .stats__inner,
  .section__inner,
  .contact__inner,
  .footer__inner {
    width: min(100% - 34px, var(--container));
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    font-size: 13px;
  }

  .topbar {
    position: relative;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    padding: 72px 0 48px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__card {
    padding: 22px;
  }

  .stats__inner,
  .companies__grid {
    grid-template-columns: 1fr;
  }

  .values-carousel {
    padding-inline: 0;
  }

  .values-track {
    grid-auto-columns: 86%;
    padding-bottom: 18px;
  }

  .carousel-btn {
    display: none;
  }

  .stat,
  .stat:first-child {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section,
  .companies,
  .contact {
    padding: 58px 0;
  }

  .values-first {
    min-height: auto;
  }

  .values-hero__inner {
    width: min(100% - 34px, var(--container));
    padding: 46px 0 50px;
  }

  .values-intro h1 {
    font-size: 39px;
  }

  .value-slider,
  .manifesto-slider {
    padding-inline: 0;
  }

  .value-slide {
    min-height: auto;
    gap: 14px;
  }

  .value-slide__text {
    padding: 28px 24px;
  }

  .value-slide__text h2 {
    font-size: 34px;
  }

  .value-slide__text p {
    font-size: 16px;
  }

  .value-slide__image {
    min-height: 250px;
  }

  .values-summary {
    grid-template-columns: 1fr;
  }

  .values-summary article {
    min-height: auto;
  }

  .value-slider .carousel-btn,
  .manifesto-slider .carousel-btn {
    display: none;
  }

  .manifesto {
    padding: 22px 0 48px;
  }

  .manifesto__inner {
    width: min(100% - 34px, var(--container));
  }

  .manifesto-slide {
    min-height: 250px;
    padding: 24px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 36px;
  }

  .company-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .company-card__visual {
    min-height: 230px;
  }

  .company-card__body {
    padding: 30px 24px;
  }

  .company-card__logo {
    width: 190px;
  }

  .company-card p {
    min-height: auto;
    font-size: 15px;
  }

  .form-panel,
  .jobs-panel {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__inner {
    text-align: center;
  }

  .footer__top {
    align-items: center;
    gap: 28px;
  }

  .footer__menu {
    justify-content: center;
    gap: 18px;
    font-size: 18px;
  }

  .footer-menu-list {
    justify-content: center;
    gap: 18px;
  }

  .footer img {
    width: 245px;
  }

  .footer p {
    font-size: 16px;
  }
}

/* Estrutura institucional completa */
.btn--white {
  background: #fff;
  color: var(--red);
}

.about-section {
  background: #fff;
  padding: 92px 0;
}

.about-section__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 58px;
  align-items: center;
}

.about-section__media {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-section__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225,37,27,.18), rgba(0,0,0,.08));
}

.about-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section__content {
  max-width: 540px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 38px;
  height: 3px;
  background: currentColor;
}

.about-section h2,
.operation-section h2,
.cta-band h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: .98;
  font-weight: 900;
}

.about-section p,
.operation-section .section-heading p,
.cta-band p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.about-section .btn {
  margin-top: 12px;
}

.stats {
  background: var(--red);
  border-bottom: 0;
  color: #fff;
}

.stat {
  border-right-color: rgba(255,255,255,.22);
}

.stat:first-child {
  border-left-color: rgba(255,255,255,.22);
}

.stat strong {
  color: #fff;
}

.stat span {
  color: rgba(255,255,255,.82);
}

.operation-section {
  background: #fff;
  padding: 90px 0;
}

.operation-section__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.operation-card {
  min-height: 275px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 36px rgb(15 23 42 / .06);
}

.operation-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 26px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.operation-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}

.operation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(225,37,27,.95), rgba(127,14,11,.92)),
    url("../images/bg-amor.jpg") center / cover no-repeat;
  color: #fff;
  padding: 72px 0;
}

.cta-band__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-band .section-kicker,
.cta-band h2 {
  color: #fff;
}

.cta-band p {
  max-width: 640px;
  color: rgba(255,255,255,.88);
}

@media (max-width: 1024px) {
  .about-section__inner,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .about-section__media {
    min-height: 390px;
  }

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

@media (max-width: 680px) {
  .about-section,
  .operation-section,
  .cta-band {
    padding: 58px 0;
  }

  .about-section__inner,
  .operation-section__inner,
  .cta-band__inner {
    width: min(100% - 34px, var(--container));
  }

  .about-section__media {
    min-height: 270px;
  }

  .about-section h2,
  .operation-section h2,
  .cta-band h2 {
    font-size: 35px;
  }

  .about-section p,
  .operation-section .section-heading p,
  .cta-band p {
    font-size: 16px;
  }

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