:root {
      --bg: #000000;
      --panel: #070707;
      --panel-soft: #0d0d0d;
      --line: rgba(255, 255, 255, 0.06);
      --text: #ffffff;
      --muted: #b8b8b8;
      --soft: #e7e7e7;
      --accent: #ffffff;
      --accent-2: #dcdcdc;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
      --radius: 28px;
      --radius-sm: 18px;
      --max: 1160px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background:
        radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.08), transparent 34%),
        radial-gradient(circle at 8% 42%, rgba(255, 255, 255, 0.05), transparent 28%),
        var(--bg);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }

    :focus-visible {
      outline: 3px solid rgba(255, 255, 255, 0.75);
      outline-offset: 4px;
      border-radius: 12px;
    }

    .container {
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
    }

    .section { padding: 48px 0; }

    .section-muted {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    }

    .section-head { margin-bottom: 24px; }

    .section-tag, .eyebrow {
      display: inline-block;
      margin-bottom: 10px;
      color: var(--accent);
      font-size: 11px;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      font-weight: 700;
    }

    .section-title, .hero-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      letter-spacing: -0.035em;
    }

    .section-title {
      font-size: clamp(1.8rem, 5vw, 3rem);
      line-height: 1.08;
    }

    .section-text {
      max-width: 740px;
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
    }

    .grid { display: grid; gap: 16px; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }

    .card, .feature, .testimonial, .fleet-card {
      background: rgba(16, 16, 16, 0.88);
      border: 1px solid var(--line);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    }

    .card, .testimonial {
      padding: 24px;
      border-radius: 24px;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .card:hover, .testimonial:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.35);
      background: rgba(22, 22, 22, 0.92);
    }

    .card h3, .testimonial-name {
      font-size: 20px;
      line-height: 1.2;
      font-weight: 700;
    }

    .service-number {
      width: 44px;
      height: 44px;
      margin-bottom: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      color: var(--accent-2);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .feature-number {
      display: inline-flex;
      margin-right: 10px;
      color: var(--accent);
      font-weight: 800;
    }

    .card p, .testimonial-role {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
    }

    .feature {
      padding: 18px;
      border-radius: 20px;
      color: #ededed;
      font-size: 15px;
      line-height: 1.6;
    }

    .btn, .btn-outline, .btn-dark {
      min-height: 54px;
      border: 1px solid transparent;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      font-size: 15px;
      font-weight: 700;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover, .btn-outline:hover, .btn-dark:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 28px rgba(0,0,0,0.28);
    }

    .btn {
      background: linear-gradient(135deg, var(--accent-2), var(--accent));
      color: #090909;
    }

    .btn-outline {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.18);
      color: var(--text);
    }

    .btn-outline:hover { background: rgba(255, 255, 255, 0.05); }

    .btn-dark {
      width: 100%;
      background: #000;
      color: #fff;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(5, 5, 5, 0.86);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand { display: flex; align-items: center; }

    .brand-logo {
      width: auto;
      height: 74px;
      max-width: 125px;
      object-fit: contain;
    }

    .nav {
      display: none;
      align-items: center;
      gap: 22px;
      color: var(--soft);
      font-size: 14px;
      font-weight: 600;
    }

    .nav a { opacity: 0.82; transition: opacity 0.2s ease, color 0.2s ease; }
    .nav a:hover { opacity: 1; color: var(--accent-2); }

    .hero {
      position: relative;
      padding: 64px 0 38px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 42%);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: center;
    }

    .badge {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 0 15px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      color: var(--accent-2);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      background: rgba(255, 255, 255, 0.06);
    }

    .hero-title {
      max-width: 760px;
      margin-top: 18px;
      font-size: clamp(2.45rem, 8vw, 5.1rem);
      line-height: 0.98;
    }

    .hero-text {
      max-width: 650px;
      margin-top: 20px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 26px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    .trust-item {
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,255,255,0.035);
      color: var(--soft);
      font-size: 13px;
      line-height: 1.5;
    }

    .trust-item strong {
      display: block;
      color: #fff;
      font-size: 20px;
      margin-bottom: 2px;
    }

    .panel {
      padding: 16px;
      background: linear-gradient(180deg, #111, #090909);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .panel-inner {
      padding: 20px;
      background: linear-gradient(135deg, #181818, #242424);
      border: 1px solid var(--line);
      border-radius: 24px;
    }

    .panel-note {
      margin-top: 16px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .gallery-section { padding-top: 48px; }

    .fleet-gallery-premium {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .fleet-card {
      position: relative;
      min-height: 330px;
      overflow: hidden;
      cursor: pointer;
      border-radius: 32px;
      background: #080808;
      isolation: isolate;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .fleet-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.50)),
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 34%);
      pointer-events: none;
      opacity: 0.76;
      transition: opacity 0.35s ease;
    }

    .fleet-card::after {
      content: attr(aria-label);
      position: absolute;
      left: 22px;
      bottom: 20px;
      z-index: 2;
      padding: 9px 14px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.48);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      backdrop-filter: blur(14px);
    }

    .fleet-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 255, 255, 0.42);
      box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
    }

    .fleet-card:hover::before { opacity: 0.5; }

    .fleet-card img {
      width: 100%;
      height: 100%;
      min-height: 330px;
      object-fit: cover;
      filter: saturate(0.95) contrast(1.08) brightness(0.92);
      transform: scale(1.01);
      transition: transform 0.75s ease, filter 0.75s ease;
    }

    .fleet-card:hover img {
      transform: scale(1.08);
      filter: saturate(1.04) contrast(1.12) brightness(1.02);
    }

    .fleet-card.featured { min-height: 520px; }
    .fleet-card.featured img { min-height: 520px; }

    .stars {
      margin-bottom: 12px;
      color: var(--accent);
      font-size: 18px;
      letter-spacing: 0.18em;
    }

    .testimonial-text {
      color: #f1f1f1;
      font-size: 15px;
      line-height: 1.9;
    }

    .testimonial-footer {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid var(--line);
    }

    .testimonial-role { margin-top: 4px; font-size: 14px; }

    .cta-box {
      padding: 26px;
      background: linear-gradient(135deg, #ffffff, #dcdcdc);
      color: #000;
      border-radius: 32px;
      box-shadow: var(--shadow);
    }

    .cta-box .section-tag { color: #5a5a5a; }
    .cta-box .section-title { font-size: clamp(1.7rem, 5vw, 2.7rem); }
    .cta-box .section-text { max-width: 100%; color: #3f3f3f; }

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

    .image-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(0, 0, 0, 0.9);
      opacity: 0;
      backdrop-filter: blur(10px);
      transition: opacity 0.25s ease;
    }

    .image-modal.active { display: flex; opacity: 1; }

    .image-modal img {
      max-width: min(100%, 1280px);
      max-height: 90vh;
      object-fit: contain;
      border-radius: 24px;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
      animation: modalZoom 0.28s ease forwards;
    }

    .image-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .image-modal-close:hover {
      background: rgba(255, 255, 255, 0.18);
      transform: rotate(90deg);
    }

    @keyframes modalZoom {
      from { transform: scale(0.94); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .footer {
      padding: 32px 0;
      border-top: 1px solid var(--line);
      color: #858585;
      font-size: 13px;
    }

    .footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-social {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      color: #fff;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .footer-social a:hover {
      background: #fff;
      border-color: #fff;
      color: #000;
      transform: translateY(-1px);
    }

    .footer-social svg { width: 18px; height: 18px; fill: currentColor; }

    .footer-info {
      line-height: 1.8;
      text-align: center;
      flex: 1;
    }

    .footer-credit {
      color: #5f5f5f;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-align: right;
      white-space: nowrap;
    }

    .float-whatsapp {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 60;
      min-width: 58px;
      height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 18px;
      background: linear-gradient(135deg, var(--accent-2), var(--accent));
      border-radius: 999px;
      color: #000;
      font-size: 15px;
      font-weight: 800;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
    }

    .float-whatsapp span:first-child { font-size: 22px; }

    @media (min-width: 700px) {
      .container { width: min(100% - 48px, var(--max)); }
      .section { padding: 62px 0; }
      .hero { padding: 92px 0 52px; }
      .hero-grid, .grid-2, .cta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .hero-actions { flex-direction: row; flex-wrap: wrap; }
      .trust-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .fleet-gallery-premium { grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr); grid-auto-rows: 255px; }
      .fleet-card { min-height: auto; }
      .fleet-card img { min-height: 100%; }
      .fleet-card.featured { grid-row: span 2; min-height: 530px; }
      .fleet-card.featured img { min-height: 530px; }
      .btn-dark { width: auto; justify-self: end; }
      .nav { display: flex; }
    }

    @media (max-width: 699px) {
      .header-inner { min-height: 72px; }
      .brand-logo { height: 72px; max-width: 96px; }
      .btn, .btn-outline, .btn-dark { width: 100%; }
      .gallery-section { padding-top: 34px; }
      .fleet-card, .fleet-card img { min-height: 340px; }
      .fleet-card.featured, .fleet-card.featured img { min-height: 440px; }
      .footer-content { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
      .footer-social { justify-content: center; order: 1; }
      .footer-info { order: 2; text-align: center; }
      .footer-credit { order: 3; text-align: center; }
      .float-whatsapp { padding: 0; width: 58px; min-width: 58px; }
      .float-whatsapp span:last-child { display: none; }
    }
    
    
    
    body {
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h1 {
  line-height: 1.05;
  letter-spacing: -1px;
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 40%),
              radial-gradient(circle at bottom, rgba(255,255,255,0.03), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.header {
  backdrop-filter: blur(22px);
  background: rgba(0,0,0,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card, .testimonial, .feature {
  backdrop-filter: blur(14px);
}

.btn:hover {
  box-shadow: 0 0 24px rgba(255,255,255,0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 80px 0;
}


/* ===== PREMIUM MOTION UPGRADE ===== */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 35%),
              radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04), transparent 40%),
              radial-gradient(circle at 50% 80%, rgba(255,255,255,0.03), transparent 45%);
  animation: floatBG 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatBG {
  0% { transform: scale(1) translateY(0px); }
  100% { transform: scale(1.05) translateY(-10px); }
}

/* glass hover premium */
.card, .testimonial, .feature, .fleet-card {
  transition: all 0.4s ease;
  backdrop-filter: blur(16px);
}

.card:hover, .testimonial:hover, .feature:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* buttons glow premium */
.btn, .btn-outline, .btn-dark {
  position: relative;
  overflow: hidden;
}

.btn::after, .btn-outline::after, .btn-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
}

.btn:hover::after, .btn-outline:hover::after, .btn-dark:hover::after {
  animation: shine 0.8s ease;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* header premium float */
.header {
  transition: all 0.4s ease;
}

.header:hover {
  background: rgba(0,0,0,0.88);
}

/* slow reveal upgrade */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(.2,.8,.2,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* image hover zoom premium */
.fleet-card img {
  transition: transform 1.2s ease, filter 1.2s ease;
}

.fleet-card:hover img {
  transform: scale(1.12);
  filter: brightness(1.08) contrast(1.1);
}

/* subtle pulse CTA whatsapp */
.float-whatsapp {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
  70% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}



.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

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


#progress-bar{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0%;
  background:linear-gradient(90deg,#ffffff,#9a9a9a);
  z-index:9999;
  transition:width 0.1s linear;
}

html{
  scroll-behavior:smooth;
}

/* loader */
#loader{
  position:fixed;
  inset:0;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:99999;
  animation:fadeOut 1.2s ease 1.2s forwards;
}

.loader-text{
  color:#fff;
  font-size:20px;
  letter-spacing:6px;
  animation:pulse 1s infinite;
}

@keyframes fadeOut{
  to{opacity:0;visibility:hidden;}
}

@keyframes pulse{
  0%{opacity:.3}
  50%{opacity:1}
  100%{opacity:.3}
}

/* cursor glow */
body::before{
  content:"";
  position:fixed;
  width:300px;
  height:300px;
  background:radial-gradient(circle,rgba(255,255,255,0.08),transparent 60%);
  transform:translate(-50%,-50%);
  pointer-events:none;
  z-index:0;
}

#hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.18;
  z-index:0;
}

.hero{
  position:relative;
  overflow:hidden;
}

.hero > *{
  position:relative;
  z-index:2;
}

/* cursor follow upgrade */
body::after{
  content:"";
  position:fixed;
  width:400px;
  height:400px;
  background:radial-gradient(circle,rgba(255,255,255,0.06),transparent 60%);
  transform:translate(-50%,-50%);
  pointer-events:none;
  z-index:0;
}


/* ===== FIX FINAL HERO LAYOUT ===== */
.hero-grid{
  display:grid !important;
  grid-template-columns: 1.2fr 0.8fr !important;
  gap:40px;
  align-items:center;
}

@media(max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr !important;
  }
}

.hero-title{
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height:1.05;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-text{
  max-width:600px;
}

.hero-grid > div:first-child{
  min-width:0;
}

/* prevent overlay bug */
.panel{
  position:relative;
  z-index:2;
}

/* selection fix */
::selection{
  background: rgba(255,255,255,0.15);
  color:#fff;
}



/* =========================================================
   MARTINS SELECT - OTIMIZAÇÃO FINAL MOBILE + DESKTOP
   Fundo 100% preto, layout estável e sem bugs de overlay.
   ========================================================= */

:root {
  --bg: #000000 !important;
  --panel: #050505 !important;
  --panel-soft: #090909 !important;
  --line: rgba(255, 255, 255, 0.10) !important;
  --text: #ffffff !important;
  --muted: #b8b8b8 !important;
  --soft: #eeeeee !important;
  --accent: #ffffff !important;
  --accent-2: #dcdcdc !important;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.65) !important;
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  background: #000000 !important;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000000 !important;
  background-image: none !important;
  color: #ffffff;
  font-family: 'Manrope', 'Inter', Arial, sans-serif !important;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Remove glows, vídeo, loader e camadas decorativas antigas */
body::before,
body::after,
.hero::before,
.hero::after,
#hero-video,
#loader,
#progress-bar {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

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

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

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section,
.gallery-section {
  padding: clamp(56px, 7vw, 96px) 0 !important;
}

.section-muted {
  background: #020202 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-tag,
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
}

.section-title,
.hero-title {
  color: #ffffff;
  font-family: 'Manrope', 'Inter', Arial, sans-serif !important;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(1.75rem, 4.2vw, 3.1rem);
  line-height: 1.08;
}

.section-text,
.hero-text,
.card p,
.panel-note,
.testimonial-role {
  color: var(--muted);
}

.section-text {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.85;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.94) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  box-shadow: none !important;
}

.header-inner {
  min-height: clamp(68px, 8vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: auto;
  height: clamp(58px, 7vw, 74px);
  max-width: 132px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.78;
  transition: opacity .2s ease, transform .2s ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Hero estável */
.hero {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(56px, 8vw, 112px) 0 clamp(36px, 6vw, 72px) !important;
  background: #000000 !important;
  transform: none !important;
}

.hero-grid {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr) !important;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.badge {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: #070707;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-weight: 800;
}

.hero-title {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(2.35rem, 5.2vw, 4.75rem) !important;
  line-height: 0.98 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  user-select: text !important;
}

.hero-text {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn,
.btn-outline,
.btn-dark {
  min-height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.btn {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff;
}

.btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
}

.btn-dark {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000;
}

.btn:hover,
.btn-outline:hover,
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.10);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.trust-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #050505 !important;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

.trust-item strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 4px;
}

/* Cards e painéis */
.grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
}

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

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

.panel,
.card,
.feature,
.testimonial,
.fleet-card {
  background: #050505 !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48) !important;
  backdrop-filter: none !important;
}

.panel {
  position: relative;
  z-index: 2;
  padding: clamp(16px, 2vw, 20px);
  border-radius: var(--radius);
}

.panel-inner {
  padding: clamp(20px, 3vw, 30px);
  background: #090909 !important;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.panel-note {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.75;
}

.card,
.testimonial {
  padding: clamp(22px, 3vw, 30px);
  border-radius: 24px;
}

.feature {
  padding: clamp(18px, 2.4vw, 22px);
  border-radius: 20px;
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.75;
}

.card,
.testimonial,
.feature,
.fleet-card {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.card:hover,
.testimonial:hover,
.feature:hover,
.fleet-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255,255,255,0.24) !important;
  box-shadow: 0 30px 78px rgba(0,0,0,0.64) !important;
}

.card h3,
.testimonial-name {
  color: #ffffff;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  font-weight: 800;
}

.card p,
.testimonial-text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.85;
}

.service-number {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.feature-number {
  display: inline-flex;
  margin-right: 8px;
  color: #ffffff;
  font-weight: 900;
}

/* Galeria */
.fleet-gallery-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  grid-auto-rows: 260px;
  gap: clamp(16px, 2vw, 24px);
}

.fleet-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 30px;
  background: #050505 !important;
}

.fleet-card.featured {
  grid-row: span 2;
  min-height: 544px;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.96) contrast(1.08) brightness(.9);
  transition: transform .8s ease, filter .8s ease;
}

.fleet-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.12) brightness(1);
}

.fleet-card::after {
  content: attr(aria-label);
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* CTA */
.cta-box {
  padding: clamp(26px, 4vw, 44px);
  background: #ffffff !important;
  color: #000000;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.cta-box .section-tag,
.cta-box .section-title,
.cta-box .section-text {
  color: #000000 !important;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 24px;
  align-items: center;
}

/* Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.92);
}

.image-modal.active {
  display: flex;
}

.image-modal img {
  max-width: min(100%, 1280px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 22px;
}

.image-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Footer limpo e preto */
.footer {
  padding: 34px 0;
  background: #000000 !important;
  border-top: 1px solid rgba(255,255,255,.10);
  color: #858585;
  font-size: 13px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #ffffff;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  line-height: 1.6;
}

.footer-credit {
  color: #6f6f6f;
  font-size: 10px;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* WhatsApp */
.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  min-width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0,0,0,.60);
  animation: none !important;
}

/* Reveal limpo */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Seleção normal */
::selection {
  background: rgba(255,255,255,.18);
  color: #ffffff;
}

/* Desktop grande */
@media (min-width: 1200px) {
  .hero-title {
    max-width: 790px;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .cta-grid {
    grid-template-columns: 1fr !important;
  }

  .panel {
    max-width: 720px;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-gallery-premium {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .fleet-card,
  .fleet-card.featured {
    min-height: 420px;
    grid-row: auto;
  }

  .fleet-card img,
  .fleet-card.featured img {
    min-height: 420px;
  }

  .btn-dark {
    width: 100%;
  }
}

/* Celular */
@media (max-width: 699px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    height: 62px;
    max-width: 108px;
  }

  .nav {
    display: none !important;
  }

  .hero {
    padding-top: 46px !important;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.15rem, 12vw, 3.35rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-outline,
  .btn-dark {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .panel-inner {
    padding: 20px;
  }

  .fleet-card,
  .fleet-card.featured,
  .fleet-card img,
  .fleet-card.featured img {
    min-height: 340px;
  }

  .cta-box {
    border-radius: 24px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .float-whatsapp {
    width: 58px;
    min-width: 58px;
    padding: 0;
  }

  .float-whatsapp span:last-child {
    display: none;
  }
}

/* Celular pequeno */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .badge {
    letter-spacing: .14em;
    font-size: 10px;
  }
}

/* Acessibilidade/performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ================= CONTROLLED PREMIUM EFFECTS ================= */

/* soft animated background (VERY LIGHT) */
body{
  position:relative;
}

body::before{
  content:"";
  position:fixed;
  inset:-20%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.03), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.02), transparent 50%);
  animation: bgFloat 18s ease-in-out infinite alternate;
  z-index:0;
  pointer-events:none;
}

@keyframes bgFloat{
  from{ transform:translateY(0px) scale(1); }
  to{ transform:translateY(-10px) scale(1.03); }
}

/* controlled hover premium */
.card,
.testimonial,
.feature,
.fleet-card,
.panel{
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card:hover,
.testimonial:hover,
.feature:hover,
.fleet-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.65);
}

/* subtle shine on buttons (controlled) */
.btn, .btn-outline, .btn-dark{
  position:relative;
  overflow:hidden;
}

.btn::after, .btn-outline::after, .btn-dark::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-120%);
}

.btn:hover::after, .btn-outline:hover::after, .btn-dark:hover::after{
  animation: shine 0.9s ease;
}

@keyframes shine{
  to{ transform: translateX(120%); }
}

/* controlled reveal (premium feel) */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: all .9s cubic-bezier(.2,.8,.2,1);
}

.reveal.active{
  opacity:1;
  transform: translateY(0);
}

/* micro focus glow only */
:focus-visible{
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 4px;
}



/* ===== LUXO EXECUTIVO TOP 1 ===== */

.hero-title{
  letter-spacing:-0.06em;
}

.section-tag{
  color:#ffffff;
  opacity:0.8;
}

/* more luxury spacing */
.section, .hero{
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(70px, 8vw, 120px);
}

/* premium black refinement */
body{
  background: #000 !important;
}

/* subtle luxury glow (VERY controlled) */
.card:hover, .testimonial:hover, .feature:hover{
  box-shadow: 0 35px 90px rgba(0,0,0,0.75);
}

/* executive feel buttons */
.btn{
  background:#fff;
  color:#000;
  font-weight:900;
}

.btn-outline{
  border:1px solid rgba(255,255,255,0.25);
}



/* ===== TOP 0 ULTRA CLEAN EXECUTIVE ===== */

body{
  background:#000 !important;
}

/* remove all heavy motion */
*{
  animation-duration:0.6s !important;
}

/* hero refinement */
.hero-subtitle{
  margin-top:14px;
  font-size:clamp(1rem,1.4vw,1.2rem);
  color:rgba(255,255,255,0.72);
  letter-spacing:0.08em;
  text-transform:uppercase;
}

/* cleaner luxury spacing */
.hero{
  padding-top:110px !important;
  padding-bottom:90px !important;
}

/* premium minimal hover only */
.card:hover,
.feature:hover,
.testimonial:hover{
  transform: translateY(-4px);
  box-shadow:0 20px 60px rgba(0,0,0,0.7);
}

/* remove noise */
body::before,
body::after{
  opacity:0.02;
}

/* ultra stable mobile */
@media(max-width:768px){
  .hero{
    padding-top:80px !important;
  }
}
