/* =======================================
   EXCELLENT TRIP — v3 Clean Premium
   ======================================= */

:root {
  --gold:    #C4A84F;
  --gold-lt: #D4BC78;
  --black:   #0C0C0C;
  --ink:     #141414;
  --surface: #1A1A1A;
  --line:    rgba(255,255,255,0.07);
  --white:   #FFFFFF;
  --cream:   #F0EDE6;
  --muted:   rgba(255,255,255,0.45);

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: rgba(196,168,79,0.4); }

/* ── LAYOUT ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* ── TYPE ── */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

h2 em {
  font-style: italic;
  color: var(--gold);
}

h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

p { color: var(--muted); font-size: 0.95rem; }

.sec-head { margin-bottom: 52px; }
.sec-sub { max-width: 420px; margin-top: 8px; }

/* ── REVEAL ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 28px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-solid:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,168,79,0.25);
}
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1FAD53;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 100px;
  margin-bottom: 32px;
  transition: background 0.25s, transform 0.25s;
}
.btn-wpp:hover { background: #17963f; transform: translateY(-1px); }

/* ── NAVBAR ── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  margin-left: -500px;
  z-index: 200;
  width: 1000px;
  max-width: calc(100% - 48px);
  transition: top 0.3s;
}

.nav__pill {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(14, 14, 14, 0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 12px 20px 12px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}

.nav__pill:hover {
  border-color: rgba(196,168,79,0.2);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 30px;
  height: 30px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--black);
  font-weight: 400;
  flex-shrink: 0;
}

.nav__logo > span {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--white);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--white); }

.nav__ig {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav__ig:hover { color: var(--gold); }

.nav__cta {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold-lt); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--white);
  transition: 0.3s;
}

/* menu mobile */
.nav__mobile-menu {
  display: none;
  list-style: none;
  position: fixed;
  top: 76px;
  left: 12px;
  right: 12px;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px;
  flex-direction: column;
  gap: 0;
  z-index: 9999;
}
.nav__mobile-menu.open {
  display: flex;
}
.nav__mobile-menu a {
  font-size: 16px;
  font-family: var(--sans);
  color: #ffffff;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
}
.nav__mobile-menu li:last-child a { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 30% 25%;
  filter: brightness(0.5);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,0.05) 0%,
    rgba(12,12,12,0.3)  50%,
    rgba(12,12,12,0.92) 100%
  );
}

.hero__body {
  position: relative;
  z-index: 2;
  padding: 0 24px 80px;
  width: 100%;
  margin-top: auto;
}

.hero__body-inner {
  max-width: 540px;
  width: 100%;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  animation: hero-in 0.9s ease forwards;
  animation-delay: 0.16s;
  opacity: 0;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 700px;
  animation: hero-in 0.9s ease forwards;
  animation-delay: 0.32s;
  opacity: 0;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 480px;
  animation: hero-in 0.9s ease forwards;
  animation-delay: 0.48s;
  opacity: 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: hero-in 0.9s ease forwards;
  animation-delay: 0.64s;
  opacity: 0;
}

.hero__numbers {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 28px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  justify-content: flex-end;
}

.hero__num {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
}
.hero__num strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__num strong span { color: var(--gold); }
.hero__num > span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__num-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ── SOBRE ── */
.sobre {
  background: var(--ink);
  padding: 120px 0;
}

.sobre__top {
  max-width: 700px;
  margin-bottom: 0;
}

.sobre__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.sobre__tagline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.sobre__divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 56px 0;
}

.sobre__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.sobre__col {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--line);
}
.sobre__col:first-child { padding-left: 0; }
.sobre__col:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.sobre__col:not(:first-child):not(:last-child) { padding-left: 40px; }

.sobre__col h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sobre__col p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}


/* ── FULLBLEED PHOTO ── */
.fullbleed-photo {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.fullbleed-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.75);
  transition: transform 0.8s var(--ease);
}
.fullbleed-photo:hover img { transform: scale(1.02); }

.fullbleed-photo--tall {
  height: 600px;
}

.fullbleed-photo__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  gap: 20px;
  background: rgba(12,12,12,0.45);
}
.fullbleed-photo__text .label { margin-bottom: 0; }
.fullbleed-photo__text h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 0;
  color: var(--white);
}

/* ── SERVIÇOS ── */
.servicos {
  background: var(--black);
  padding-top: 100px;
  padding-bottom: 0;
}

.servicos__head {
  text-align: center;
  margin-bottom: 64px;
}
.servicos__head h2 { margin-bottom: 12px; }
.servicos__sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black);
}

.servico-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.servico-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.65);
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.servico-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8);
}

.servico-item__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  transition: padding 0.3s var(--ease);
}
.servico-item:hover .servico-item__info { padding-bottom: 40px; }

.servico-item__info .label {
  margin-bottom: 6px;
  font-size: 10px;
}
.servico-item__info h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--white);
}
.servico-item__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}

.servico-item__info a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  display: inline-block;
  transition: opacity 0.3s, transform 0.3s;
}
.servico-item:hover .servico-item__info a {
  opacity: 1;
  transform: none;
}

/* ── FROTA ── */
.frota {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.frota__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.frota__header h2 { margin-bottom: 0; }

.frota__tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
  flex-shrink: 0;
}

.frota__tab {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.25s;
  white-space: nowrap;
}
.frota__tab:hover { color: var(--white); }
.frota__tab.active {
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
}

.frota__slides { }
.frota__slide { display: none; }
.frota__slide.active {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
}

/* stage: viewer + foto real + toggle */
.frota__stage {
  position: relative;
  border-radius: 20px;
  background: var(--black);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  /* clip-path recorta visualmente sem criar stacking context que bloqueia events */
  clip-path: inset(0 round 20px);
}

.frota__viewer {
  position: relative;
  height: 480px;
  background: var(--black);
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.frota__viewer img,
.frota__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.frota__photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 5;
}
.frota__photo.visible { opacity: 1; }

.sf-mask { display: none; }

/* toggle bolinhas */
.frota__view-toggle {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 7px;
  align-items: center;
}
.fvt__btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.fvt__btn.fvt__btn--active {
  background: var(--gold);
  transform: scale(1.25);
}
.fvt__btn:hover:not(.fvt__btn--active) { background: rgba(255,255,255,0.6); }

/* hint de swipe */
.frota__swipe-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.frota__swipe-hint span {
  font-size: 14px;
  animation: hint-nudge 1.6s ease-in-out infinite;
}
@keyframes hint-nudge {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4px); }
}

/* info lateral */
.frota__info h3 {
  font-size: 1.9rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
.frota__info > p { margin-bottom: 28px; }
.frota__info ul {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.frota__info ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.frota__info ul li::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}


/* ── DEPOIMENTOS ── */
.depo {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

@keyframes depo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.depo__wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.depo__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: depo-scroll 36s linear infinite;
}
.depo__track.paused { animation-play-state: paused; }
@media (hover: hover) {
  .depo__track:hover { animation-play-state: paused; }
}

.depo__card {
  flex: 0 0 360px;
  background: var(--ink);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--line);
  transition: border-color 0.3s;
}
.depo__card:hover { border-color: rgba(196,168,79,0.2); }
.depo__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 14px; }
.depo__card > p {
  font-style: italic;
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}
.depo__who { display: flex; align-items: center; gap: 12px; }
.depo__av {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depo__who strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
}
.depo__who span { font-size: 0.75rem; color: var(--muted); }

/* ── CONTATO ── */
.contato__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.contato__left {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.contato__left img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.6);
}
.contato__left-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--black) 100%);
}
.contato__right {
  background: var(--black);
  padding: 80px 56px;
  border-left: 1px solid var(--line);
}
.contato__right h2 { margin-bottom: 8px; }
.contato__sub { margin-bottom: 28px; }

.contato__form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fg {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.fg label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 14px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}
.fg select {
  background-color: rgba(255,255,255,0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C4A84F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  color: var(--white);
}
.fg select option {
  background: #1A1A1A;
  color: var(--white);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: rgba(196,168,79,0.5);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(2);
  cursor: pointer;
}
.fg textarea { resize: vertical; min-height: 82px; }
.form-bloco { margin-bottom: 0; }

.form-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.contato__details {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contato__details > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--white);
}
.footer__grid > div > p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 240px;
  line-height: 1.7;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__wpp,
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  border: 1px solid rgba(196,168,79,0.25);
  padding: 9px 18px;
  border-radius: 100px;
  transition: border-color 0.2s, background 0.2s;
  width: fit-content;
}
.footer__wpp:hover,
.footer__ig:hover { background: rgba(196,168,79,0.07); border-color: var(--gold); }

.footer__grid h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__grid ul li { margin-bottom: 9px; }
.footer__grid ul a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__grid ul a:hover { color: var(--gold); }

.footer__hours { display: flex; flex-direction: column; gap: 8px; }
.footer__hours > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.footer__hours span { color: var(--muted); }
.footer__hours strong { color: var(--white); font-weight: 400; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ── WPP FAB ── */
.wpp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 300;
  width: 52px; height: 52px;
  background: #1FAD53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(31,173,83,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(31,173,83,0.45);
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .frota__slide.active { grid-template-columns: 1fr; }
  .frota__header { flex-direction: column; align-items: flex-start; }
  .contato__split { grid-template-columns: 1fr; }
  .contato__left { display: none; }
  .contato__right { padding: 72px 32px; border-left: none; }
}

@media (max-width: 768px) {
  .nav { top: 12px; left: 12px; margin-left: 0; width: calc(100% - 24px); }
  .nav__pill { gap: 12px; padding: 10px 20px; justify-content: space-between; }
  .nav__logo { padding-left: 4px; }
  .nav__links { display: flex; gap: 12px; flex: 1; justify-content: flex-end; padding-right: 4px; }
  .nav__links a { font-size: 12px; }
  .nav__ig { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: none; }
  .nav__mobile-menu { display: none !important; }
  .frota__tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .frota__tabs::-webkit-scrollbar { display: none; }
  .frota__tab { font-size: 11px; padding: 8px 14px; white-space: nowrap; }
  .frota__viewer { height: 280px; }
  .hero__body { padding: 0 20px 60px; }
  .hero__title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero__sub { font-size: 0.9rem; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn-solid,
  .hero__actions .btn-ghost { padding: 12px 20px; font-size: 13px; }
  .sobre__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sobre__col { border-right: none; padding: 0 0 28px 0 !important; border-bottom: 1px solid var(--line); }
  .sobre__col:last-child { border-bottom: none; }
  .servicos__grid { grid-template-columns: 1fr 1fr; }
  .servico-item img { height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__bottom { text-align: center; }
  .depo__card { flex: 0 0 min(340px, calc(90vw - 28px)); }
  .depo__wrap { mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); }
  .hero__numbers { flex-wrap: wrap; gap: 20px; }
  .hero__num-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .servicos__grid { grid-template-columns: 1fr; }
  .sobre__cols { grid-template-columns: 1fr; }
}
