/* ══════════════════════════════════════════
   CIA Seguranca e Vigilancia — Landing Page
   Brand tokens from identity manual
   ══════════════════════════════════════════ */

:root {
  --gold: #D3AF37;
  --gold-light: #e6c84d;
  --gold-dark: #b8961e;
  --black: #2E2E2E;
  --dark: #3A3A3A;
  --gray: #CBCCCC;
  --off-white: #F9F5F1;
  --white: #FFFFFF;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --header-height: 80px;
  --section-padding: 100px 0;
  --container-width: 1200px;
}

/* ── Reset ── */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

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

/* ── Container ── */

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ── Section base ── */

.section {
  padding: var(--section-padding);
}

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

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

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

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.section--light .section__title {
  color: var(--dark);
}

.section__title span {
  color: var(--gold);
}

.section__subtitle {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section--light .section__subtitle {
  color: #555;
}

/* ── Animations ── */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background-color: rgba(46, 46, 46, 0.95);
  box-shadow: 0 2px 20px rgba(46, 46, 46, 0.5);
  backdrop-filter: blur(10px);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo__sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}

.logo__img {
  height: 60px;
  width: auto;
}

/* Nav */
.nav__list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger__line {
  width: 28px;
  height: 2px;
  background: var(--off-white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="none" stroke="rgba(211,175,55,0.05)" stroke-width="0.5" width="60" height="60"/></svg>')
    repeat;
  z-index: 0;
}

/* ── Hero logo animation ── */

.hero__logo-wrapper {
  position: relative;
}

.hero__logo {
  width: 300px;
  height: auto;
  opacity: 0;
  filter: blur(8px);
  animation: logoPhase1 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Phase 1: logo appears centered and big (blur -> sharp) */
@keyframes logoPhase1 {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* Phase 2: logo shrinks and slides left, content appears */
.hero__logo-wrapper {
  animation: logoSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.6s both;
}

@keyframes logoSlide {
  0% {
    transform: scale(1.6) translateX(0);
  }
  100% {
    transform: scale(1) translateX(-95%);
  }
}

.hero__content {
  position: absolute;
  right: 5%;
  width: 50%;
  opacity: 0;
  text-align: left;
  transform: translateX(30px);
  animation: contentReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards;
  pointer-events: none;
}

@keyframes contentReveal {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
  }
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 175, 55, 0.3) 0%, rgba(211, 175, 55, 0.1) 40%, transparent 70%);
  animation: glowPulse 2.5s ease-in-out 0.4s infinite;
  opacity: 0;
}

@keyframes glowPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

/* ── Hero content stagger ── */

.hero__anim {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s ease-out forwards;
}

.hero__anim--1 { animation-delay: 2.2s; }
.hero__anim--2 { animation-delay: 2.5s; }
.hero__anim--3 { animation-delay: 2.8s; }
.hero__anim--4 { animation-delay: 3.1s; }

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  border: 1px solid rgba(211, 175, 55, 0.3);
  padding: 8px 20px;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--gold);
}

.hero__text {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 175, 55, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid var(--gray);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   QUEM SOMOS
   ══════════════════════════════════════════ */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(211, 175, 55, 0.15);
  border-radius: 12px;
}

.about__image img,
.fleet-card__img,
.location__img {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.about__image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 1;
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 1;
}

.about__content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about__content h3 span {
  color: var(--gold);
}

.about__content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--off-white);
}

.about__value-icon {
  width: 36px;
  height: 36px;
  background: rgba(211, 175, 55, 0.1);
  border: 1px solid rgba(211, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__value-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* ══════════════════════════════════════════
   SERVICOS
   ══════════════════════════════════════════ */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--dark);
  padding: 40px 30px;
  border: 1px solid rgba(211, 175, 55, 0.1);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  border-color: rgba(211, 175, 55, 0.3);
  transform: translateY(-4px);
}

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

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(211, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--off-white);
}

.service-card__text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FROTA
   ══════════════════════════════════════════ */

/* Frota é um carrossel horizontal em qualquer tela (no mobile o media query
   abaixo só ajusta a largura dos cards). 3 viaturas visíveis por vez no desktop. */
.fleet__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.fleet__grid::-webkit-scrollbar {
  display: none;
}

/* Dots do carrossel da Frota também no desktop. Escopo só na Frota para não
   exibir os containers vazios de Serviços/Clientes (que só viram carrossel no mobile). */
.carousel-dots[data-carousel="fleet__grid"] {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.fleet-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(211, 175, 55, 0.1);
  border-radius: 12px;
  transition: border-color 0.3s;
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
}

/* Destaque do card ativo no carrossel (cantos dourados, estilo "mira") — mesmo
   efeito que o mobile já tinha, agora válido também no desktop. O JS aplica a
   classe .carousel-active no card em foco; no desktop só a Frota roda o carrossel. */
.carousel-active {
  border-color: transparent !important;
}

.carousel-active::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 2;
}

.carousel-active::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 0;
  right: 0;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 2;
}

.fleet-card:hover {
  border-color: rgba(211, 175, 55, 0.4);
}

.fleet-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--dark);
  border-radius: 12px;
}

.fleet-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(46, 46, 46, 0.9), transparent);
}

.fleet-card__label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   CLIENTES
   ══════════════════════════════════════════ */

.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.client-card {
  background: var(--dark);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid rgba(211, 175, 55, 0.08);
  transition: border-color 0.3s, transform 0.3s;
}

.client-card:hover {
  border-color: rgba(211, 175, 55, 0.3);
  transform: translateY(-4px);
}

.client-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(211, 175, 55, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--gold);
}

.client-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--off-white);
}

.client-card__text {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   ONDE ESTAMOS
   ══════════════════════════════════════════ */

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(211, 175, 55, 0.15);
  border-radius: 12px;
}

.location__info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.location__info h3 span {
  color: var(--gold);
}

.location__info p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location__item-icon {
  width: 40px;
  height: 40px;
  background: rgba(211, 175, 55, 0.1);
  border: 1px solid rgba(211, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location__item-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.location__item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--off-white);
  margin-bottom: 4px;
}

.location__item-text span {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Botão compacto "Ver no mapa" abaixo do endereço (outline dourado). */
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.map-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.map-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ══════════════════════════════════════════
   CONTATO
   ══════════════════════════════════════════ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.contact__info h3 span {
  color: var(--gold);
}

.contact__info > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(211, 175, 55, 0.1);
  border: 1px solid rgba(211, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__channel-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact__channel-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--off-white);
  margin-bottom: 2px;
}

.contact__channel-text span {
  color: var(--gray);
  font-size: 0.9rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
}

.form__input,
.form__textarea {
  background: var(--dark);
  border: 1px solid rgba(211, 175, 55, 0.15);
  padding: 14px 16px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #666;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__submit {
  align-self: flex-start;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.footer {
  background: var(--black);
  border-top: 1px solid rgba(211, 175, 55, 0.1);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer__about p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 360px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--gold);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  color: #666;
  font-size: 0.8rem;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(211, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, border-color 0.3s;
}

.footer__social:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: fill 0.3s;
}

.footer__social:hover svg {
  fill: var(--black);
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
  opacity: 0;
  animation: whatsappShow 0.5s ease-out 4.5s forwards;
}

@keyframes whatsappShow {
  to {
    opacity: 1;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

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

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --header-height: 70px;
  }

  /* Header mobile */
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 46, 46, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__list {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    overflow: hidden;
  }

  .hero__grid {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .hero__logo-wrapper {
    position: relative !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: logoShrink 2s ease-in-out forwards !important;
    transform: scale(1.15);
  }

  .hero__logo {
    width: 180px;
    opacity: 1;
    filter: none;
    animation: none;
  }

  .hero__glow {
    width: 240px;
    height: 240px;
  }

  .hero__content {
    position: relative;
    right: auto;
    width: 100%;
    padding: 0;
    opacity: 0;
    text-align: center;
    transform: translateY(10px);
    animation: contentFadeIn 0.8s ease-out 1.8s forwards;
    pointer-events: none;
    box-sizing: border-box;
    z-index: 1;
    margin-top: 24px;
  }

  @keyframes logoShrink {
    0% {
      opacity: 0;
      transform: scale(1.15);
    }
    30% {
      opacity: 1;
      transform: scale(1.15);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes contentFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
  }

  .hero__title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero__scroll {
    display: none;
  }

  .whatsapp-float {
    bottom: 60px;
    right: 30px;
  }

  /* Sections */
  .section__title {
    font-size: 1.8rem;
  }

  .about__grid,
  .location__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services__grid,
  .fleet__grid,
  .clients__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services__grid::-webkit-scrollbar,
  .fleet__grid::-webkit-scrollbar,
  .clients__grid::-webkit-scrollbar {
    display: none;
  }

  .carousel-active {
    border-color: transparent !important;
  }

  .carousel-active::before {
    content: '' !important;
    position: absolute !important;
    width: 40px !important;
    height: 40px !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    background: none !important;
    border: none !important;
    border-top: 3px solid var(--gold) !important;
    border-left: 3px solid var(--gold) !important;
    transform: none !important;
    z-index: 2;
  }

  .carousel-active::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    z-index: 2;
  }

  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 8px;
    align-items: center;
  }

  .service-card__icon {
    grid-row: 1;
    grid-column: 1;
    width: 48px;
    height: 48px;
  }

  .service-card__title {
    grid-row: 1;
    grid-column: 2;
    font-size: 1rem;
    margin-top: 0;
  }

  .service-card__text {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 0.85rem;
    margin-top: 0;
  }

  .client-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 8px;
    align-items: center;
  }

  .client-card__icon {
    grid-row: 1;
    grid-column: 1;
    width: 48px;
    height: 48px;
  }

  .client-card__title {
    grid-row: 1;
    grid-column: 2;
    font-size: 1rem;
    margin-top: 0;
  }

  .client-card__text {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 0.85rem;
    margin-top: 0;
  }

  .fleet-card {
    flex: 0 0 92%;
    scroll-snap-align: center;
  }

  .services__grid,
  .clients__grid {
    padding-left: 14%;
    padding-right: 14%;
  }

  .fleet__grid {
    padding-left: 4%;
    padding-right: 4%;
  }

  /* Carousel dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
  }

  .carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
  }

  .section--light .carousel-dot {
    background: rgba(46, 46, 46, 0.2);
  }

  .section--light .carousel-dot.active {
    background: var(--gold);
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 40px 0;
  }

  /* Hero */
  .hero__logo {
    width: 100px;
  }

  .hero__glow {
    width: 140px;
    height: 140px;
  }

  .hero__title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .hero__text {
    font-size: 0.8rem;
  }

  .hero__badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }

  .hero__content {
    margin-top: 16px;
  }

  /* Botões */
  .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 12px 20px;
  }

  /* Seções */
  .section__tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .section__subtitle {
    font-size: 0.85rem;
  }

  .section__header {
    margin-bottom: 30px;
  }

  /* Quem Somos */
  .about__content h3 {
    font-size: 1.3rem;
  }

  .about__content p {
    font-size: 0.85rem;
  }

  .about__value {
    font-size: 0.8rem;
  }

  .about__value-icon {
    width: 36px;
    height: 36px;
  }

  /* Cards carrossel */
  .service-card,
  .client-card {
    flex: 0 0 82%;
    padding: 18px 16px;
  }

  .service-card__title,
  .client-card__title {
    font-size: 0.9rem;
  }

  .service-card__text,
  .client-card__text {
    font-size: 0.78rem;
  }

  .service-card__icon,
  .client-card__icon {
    width: 40px;
    height: 40px;
  }

  .fleet-card {
    flex: 0 0 88%;
  }

  .fleet-card__label {
    font-size: 0.75rem;
  }

  /* Onde Estamos */
  .location__info h3 {
    font-size: 1.2rem;
  }

  .location__detail {
    font-size: 0.85rem;
  }

  /* Fale Conosco */
  .form__input,
  .form__select,
  .form__textarea {
    font-size: 0.85rem;
    padding: 10px 14px;
  }

  /* Header */
  .logo__img {
    height: 45px;
  }

  /* Footer */
  .footer {
    font-size: 0.8rem;
  }
}
