/* =====================================================
   AGILE TRUCK — STYLE.CSS
   Visual industrial, agressivo e premium.
   ===================================================== */

:root {
  /* Cores */
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --red: #c1121f;
  --red-dark: #8b0a14;
  --red-bright: #e63946;
  --white: #ffffff;
  --gray: #b0b0b0;
  --gray-2: #6b6b6b;
  --gray-light: #f4f4f4;
  --gray-metal: #2a2a2a;

  /* Tipografia */
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --radius: 6px;
  --transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* =====================================================
   RESET
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

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

.text-red {
  color: var(--red);
}

.text-center {
  text-align: center;
}

/* =====================================================
   BOTÕES
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn--xl {
  padding: 1.4rem 2.75rem;
  font-size: 1.2rem;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(193, 18, 31, 0.35);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(193, 18, 31, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: var(--red);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}

.logo {
  width: 60px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 4px;
  position: relative;
  transform: skewX(-8deg);
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 2px solid var(--white);
  border-radius: 4px;
  opacity: 0.2;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.logo-text strong {
  font-weight: 700;
  color: var(--red);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.header__nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.header__nav a:not(.btn):hover {
  color: var(--red);
}

.header__nav a:not(.btn):hover::after {
  width: 100%;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  z-index: 101;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  transition: all var(--transition);
}

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

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

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

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 8rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(28, 28, 28, 0.85) 60%, rgba(193, 18, 31, 0.4) 100%),
    url('img/hero-bg.jpg') center/cover no-repeat;
  /* Fallback caso ainda não tenha a imagem */
  background-color: var(--black);
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(193, 18, 31, 0.25), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.5), transparent 60%);
  z-index: -1;
}

/* Diagonal vermelha inspirada na apresentação */
.hero__diagonal {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 8px;
  height: 130%;
  background: var(--red);
  transform: rotate(15deg);
  box-shadow: -25px 0 0 var(--red), -50px 0 0 var(--black);
  z-index: -1;
  opacity: 0.85;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero__title-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero__title-logo {
  width: clamp(160px, 20vw, 280px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--red);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }

  50% {
    transform: scaleX(0.4);
    opacity: 0.5;
  }
}

/* =====================================================
   SEÇÕES GERAIS
   ===================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section__header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.section__text {
  font-size: 1.05rem;
  color: var(--gray-2);
  margin-bottom: 1rem;
}

.section--dark .section__text {
  color: var(--gray);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
}

.eyebrow--white {
  color: var(--white);
}

.eyebrow--white::before {
  background: var(--white);
}

/* Grid 2 colunas */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* =====================================================
   PLACEHOLDERS DE IMAGENS
   ===================================================== */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(45deg, var(--gray-metal) 0 10px, var(--black-3) 10px 20px);
  color: var(--gray);
  border: 2px dashed var(--red);
  border-radius: var(--radius);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(193, 18, 31, 0.15) 50%, transparent 60%);
}

.img-placeholder svg {
  color: var(--red);
}

.img-placeholder--lg {
  aspect-ratio: 1/1;
}

/* =====================================================
   CARDS — DIFERENCIAIS
   ===================================================== */
.cards {
  display: grid;
  gap: 1.5rem;
}

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

.card {
  padding: 2.25rem 1.75rem;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--red);
  transition: height var(--transition);
}

.card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card:hover::before {
  height: 100%;
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  transform: skewX(-6deg);
}

.card__icon svg {
  width: 26px;
  height: 26px;
  transform: skewX(6deg);
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--gray-2);
  font-size: 0.95rem;
}

/* =====================================================
   SERVIÇOS
   ===================================================== */
.services-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-big {
  padding: 2.5rem;
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.service-big::after {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100%;
  background: var(--red);
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-big:hover {
  border-color: var(--red);
  transform: translateY(-6px);
}

.service-big:hover::after {
  opacity: 0.1;
}

.service-big__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  margin-bottom: 1rem;
  -webkit-text-stroke: 1px var(--red);
  -webkit-text-fill-color: transparent;
}

.service-big h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-big p {
  color: var(--gray);
}

.services-sub {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 3rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.services-sub::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(45deg) translate(50px, -100px);
}

.services-sub__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.services-list li {
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-left: 3px solid var(--white);
  color: var(--white);
  font-weight: 500;
}

/* =====================================================
   ESTRUTURA
   ===================================================== */
.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.structure-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-line {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--white);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.card-line:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(193, 18, 31, 0.15);
}

.card-line__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--red);
  min-width: 40px;
}

.card-line h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.card-line p {
  color: var(--gray-2);
  font-size: 0.95rem;
}

/* =====================================================
   FLUXO
   ===================================================== */
.flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.flow__step {
  flex: 1;
  min-width: 160px;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 8% 50%);
  transition: transform var(--transition);
}

.flow__step:first-child {
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.flow__step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
}

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

.flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--white);
  color: var(--red);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.flow__step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.flow__step p {
  font-size: 0.8rem;
  opacity: 0.9;
}

.flow__arrow {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
}

/* =====================================================
   TIME
   ===================================================== */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.team__card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.team__card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team__photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem;
  background:
    repeating-linear-gradient(45deg, var(--gray-metal) 0 8px, var(--black-3) 8px 16px);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  position: relative;
  /* SUBSTITUIR por background-image quando tiver foto */
}

.team__card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.team__role {
  display: block;
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.team__card p {
  color: var(--gray-2);
  font-size: 0.9rem;
}

.quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-metal) 100%);
  color: var(--white);
  border-radius: var(--radius);
  border-left: 5px solid var(--red);
  position: relative;
}

.quote p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.quote cite {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}

/* =====================================================
   MARCAS
   ===================================================== */
.section--brands {
  background: var(--gray-light);
  padding: 4rem 0;
}

.brands__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-2);
  margin-bottom: 2.5rem;
}

.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-2);
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.brand:hover {
  color: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

.brands__note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-2);
}

.brands__note code {
  background: var(--black);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.75rem;
}

/* =====================================================
   DEPOIMENTOS
   ===================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial {
  padding: 2.5rem;
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
}

.testimonial:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: -1rem;
  font-weight: 700;
}

.testimonial p {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.testimonial strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial span {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 500;
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.cta-final {
  position: relative;
  padding: 6rem 0;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(193, 18, 31, 0.85) 100%);
  z-index: -1;
}

.cta-final__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255, 255, 255, 0.03) 30px 31px);
}

.cta-final__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 1.5rem 0;
  letter-spacing: -0.02em;
}

.cta-final p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* =====================================================
   CONTATO
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
  transition: all var(--transition);
}

.contact-item:hover {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--red);
  font-weight: 600;
}

.contact-item a:hover {
  color: var(--red-dark);
}

.contact-item small {
  display: block;
  color: var(--gray-2);
  font-size: 0.85rem;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--black);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand p {
  color: var(--gray);
  margin-top: 1rem;
  max-width: 350px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.footer__col a,
.footer__col p {
  display: block;
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.5);
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--gray-2);
}

.footer__slogan {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.1em;
}

/* =====================================================
   QUEM SOMOS — IMG
   ===================================================== */
.quem-somos__img {
  position: relative;
}

.quem-somos__img::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: var(--red);
  border-radius: var(--radius);
  z-index: -1;
}

/* =====================================================
   BOTÃO FIXO WHATSAPP
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* =====================================================
   ANIMAÇÕES DE REVEAL (entrada)
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVO — TABLETS
   ===================================================== */
@media (max-width: 1024px) {
  .cards--6 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .flow__step {
    min-width: 140px;
    padding: 1rem;
  }

  .flow__step p {
    display: none;
  }

  .grid-2,
  .structure-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* =====================================================
   RESPONSIVO — MOBILE
   ===================================================== */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 4px solid var(--red);
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav a {
    font-size: 1.1rem;
    width: 100%;
  }

  .header__burger {
    display: flex;
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__stats {
    gap: 2rem;
  }

  .stat strong {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .cards--6,
  .services-main,
  .testimonials,
  .team {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-sub {
    padding: 2rem 1.5rem;
  }

  .flow {
    flex-direction: column;
  }

  .flow__step {
    width: 100%;
    clip-path: none !important;
  }

  .flow__arrow {
    transform: rotate(90deg);
  }

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

  .footer__bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .quem-somos__img::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .btn--lg {
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn--xl {
    padding: 1.1rem 1.75rem;
    font-size: 1rem;
  }

  .hero__title-wrapper {
    gap: 1rem;
  }

  .hero__title-logo {
    width: 128px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .section__title {
    font-size: 1.85rem;
  }

  .service-big {
    padding: 1.75rem;
  }

  .service-big__num {
    font-size: 2.5rem;
  }

  .quote {
    padding: 1.75rem;
  }

  .quote p {
    font-size: 1rem;
  }
}