:root{
  --bg:#07090b;
  --bg-2:#0b0f13;
  --panel:#0d1115;
  --panel-soft:#11171d;
  --text:#f4f0e9;
  --muted:#c8c1b7;
  --orange:#d87418;
  --orange-2:#f08d2c;
  --line:rgba(216,116,24,.26);
  --line-strong:rgba(216,116,24,.48);
  --shadow:0 18px 55px rgba(0,0,0,.38);
  --container:min(1300px,calc(100vw - 44px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:#050709}
body{
  margin:0;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:
    radial-gradient(circle at 90% 4%,rgba(216,116,24,.10),transparent 27%),
    linear-gradient(180deg,#07090b,#06080a 50%,#080b0e);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
svg{fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.svg-defs{position:absolute;width:0;height:0;overflow:hidden}
.container{width:var(--container);margin-inline:auto}
.section{padding:18px 0 12px}

/* header */
.site-header{
  position:sticky;top:0;z-index:80;
  background:rgba(5,7,9,.95);
  backdrop-filter:blur(15px);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.header-main{
  min-height:74px;
  display:grid;
  grid-template-columns:210px 1fr 210px;
  align-items:center;
  gap:20px;
}
.brand{display:block;min-width:0;justify-self:start}
.brand img{width:190px;height:auto;display:block;object-fit:contain;object-position:left center}
.primary-nav{display:flex;align-items:center;justify-content:center;gap:32px}
.primary-nav a{
  position:relative;
  padding:10px 0;
  font-size:.96rem;
  color:#e6e1da;
  transition:color .25s ease,transform .25s ease;
}
.primary-nav a:hover{color:#fff;transform:translateY(-1px)}
.primary-nav a::after{
  content:"";position:absolute;left:50%;bottom:0;width:0;height:2px;
  background:linear-gradient(90deg,var(--orange),var(--orange-2));
  border-radius:99px;transform:translateX(-50%);transition:width .25s ease;
}
.primary-nav a.active::after,.primary-nav a:hover::after{width:30px}
.menu-toggle{
  display:none;width:46px;height:46px;border-radius:10px;border:1px solid var(--line);
  background:rgba(15,19,23,.96);color:var(--orange-2);padding:0;cursor:pointer;
}
.menu-toggle span{display:block;width:21px;height:2px;background:currentColor;border-radius:99px;margin:5px auto;transition:.25s}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* buttons */
.button{
  min-height:46px;
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:0 22px;border-radius:8px;border:1px solid transparent;
  font-weight:800;font-size:.95rem;letter-spacing:.01em;
  position:relative;overflow:hidden;isolation:isolate;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease,filter .25s ease;
}
.button svg{width:18px;height:18px;fill:currentColor;stroke:none}
.button::before{
  content:"";position:absolute;inset:-1px;z-index:-1;
  background:linear-gradient(115deg,transparent 0 30%,rgba(255,255,255,.14) 46%,transparent 62% 100%);
  transform:translateX(-130%);transition:transform .7s ease;
}
.button:hover{transform:translateY(-2px);box-shadow:0 14px 34px rgba(216,116,24,.20)}
.button:hover::before{transform:translateX(130%)}
.button-primary,.button-top{
  background:linear-gradient(180deg,#dc7b1d,#b65b0b);
  color:white;border-color:rgba(255,255,255,.07);
}
.button-secondary,.button-dark{
  background:rgba(5,7,9,.52);color:#f5f1ea;border-color:var(--line-strong);
}
.header-contact{justify-self:end;width:100%;white-space:nowrap}

/* hero */
.hero{
  position:relative;
  min-height:390px;
  border-bottom:1px solid rgba(255,255,255,.05);
  background:
    linear-gradient(90deg,rgba(4,5,7,.96) 0%,rgba(5,7,9,.83) 31%,rgba(5,7,9,.22) 62%,rgba(5,7,9,.08) 100%),
    url('assets/hero-main.webp') center right/cover no-repeat;
  overflow:hidden;
}
.hero::after{
  content:"";position:absolute;inset:auto 0 0;height:36%;
  background:linear-gradient(180deg,transparent,rgba(5,7,9,.92));pointer-events:none;
}
.hero-speed-lines{
  position:absolute;inset:0;opacity:.22;pointer-events:none;
  background:repeating-linear-gradient(105deg,transparent 0 90px,rgba(216,116,24,.09) 92px 94px,transparent 96px 180px);
  background-size:220% 100%;animation:roadShift 18s linear infinite;
}
@keyframes roadShift{to{background-position:-900px 0}}
.hero-inner{position:relative;z-index:2;min-height:390px;display:flex;align-items:center;padding:34px 0 42px}
.hero-content{max-width:450px}
.hero h1{margin:0 0 16px;font-size:2.55rem;line-height:1.08;letter-spacing:-.025em;font-weight:800}
.hero h1 span{color:var(--orange-2)}
.hero p{margin:0 0 22px;color:#d7d0c8;font-size:.98rem;line-height:1.58}
.hero-actions{
  display:flex;
  gap:13px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  width:100%;
}
.hero-actions .button{
  justify-content:center;
  text-align:center;
}

/* benefits */
.benefits{
  position:relative;z-index:6;
  margin-top:-12px;
  display:grid;grid-template-columns:repeat(4,1fr);
  background:rgba(10,14,18,.97);border:1px solid var(--line);border-radius:13px;box-shadow:var(--shadow);
}
.benefit{display:flex;align-items:center;gap:14px;min-height:84px;padding:15px 19px}
.benefit+.benefit{border-left:1px solid rgba(255,255,255,.06)}
.benefit svg{width:34px;height:34px;color:var(--orange);flex:0 0 auto}
.benefit h2{margin:0 0 3px;font-size:1rem}
.benefit p{margin:0;color:#c8c0b6;font-size:.84rem;line-height:1.42}

/* common section */
.section-title{
  margin:6px 0 12px;text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.8rem;font-weight:700;letter-spacing:.01em;
}
.services-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;align-items:stretch}
.service-card{
  display:flex;flex-direction:column;overflow:hidden;border:1px solid var(--line);border-radius:12px;
  background:linear-gradient(180deg,#10161b,#0a0e12);box-shadow:var(--shadow);height:100%;
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.service-card:hover{transform:translateY(-5px);border-color:var(--line-strong);box-shadow:0 22px 60px rgba(0,0,0,.46)}
.service-card img{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;object-position:center;filter:saturate(.92) contrast(1.04)}
.service-content{display:grid;grid-template-columns:auto 1fr auto;gap:13px;align-items:start;padding:16px 17px 18px;flex:1}
.service-content>svg{width:31px;height:31px;color:var(--orange)}
.service-content h3{margin:0 0 6px;font-size:1.08rem}
.service-content p{margin:0;color:#c8c1b7;font-size:.83rem;line-height:1.46}
.mobile-chevron{display:none;color:var(--orange-2);font-size:1.5rem}

/* fleet section aligned with service cards */
.fleet-section{padding-top:8px}
.fleet-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;align-items:stretch}
.fleet-card{height:100%}
.fleet-card img{display:block;width:100%;aspect-ratio:16/9;object-fit:contain;object-position:center;background:linear-gradient(180deg,#0c1015,#090d11);}

/* about as preview: image + text, then second wide image + features */
.about-section{padding-top:10px}
.about-row{
  display:grid;grid-template-columns:1.2fr .8fr;
  border:1px solid var(--line);border-radius:12px;overflow:hidden;
  background:linear-gradient(180deg,#0d1216,#0a0e11);box-shadow:var(--shadow);
}
.about-row img{width:100%;height:100%;object-fit:cover;min-height:215px}
.about-copy{padding:22px 24px;display:flex;flex-direction:column;justify-content:center}
.about-copy h2{margin:0 0 10px;font-size:1.7rem;font-family:Georgia,"Times New Roman",serif}
.about-copy p{margin:0;color:#d1c9bf;font-size:.95rem;line-height:1.58}
.about-row-secondary{margin-top:8px;grid-template-columns:1.25fr .75fr}
.about-row-secondary img{aspect-ratio:3.1/1;min-height:125px}
.about-features{display:grid;grid-template-columns:repeat(3,1fr);align-items:stretch}
.about-features article{
  min-width:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;text-align:center;padding:14px 8px;
}
.about-features article+article{border-left:1px solid rgba(255,255,255,.06)}
.about-features svg{width:29px;height:29px;color:var(--orange)}
.about-features span{font-size:.8rem;line-height:1.25;font-weight:700}

/* CTA */
.final-cta{
  margin-top:18px;position:relative;overflow:hidden;
  background:linear-gradient(180deg,#d8791d,#b55b0d);
  border-top:1px solid rgba(255,255,255,.08);
}
.final-cta::before{
  content:"";position:absolute;inset:0 auto 0 -25%;width:42%;
  background:linear-gradient(105deg,transparent,rgba(255,255,255,.12),transparent);
  transform:skewX(-24deg);animation:ctaSweep 6.5s ease-in-out infinite;
}
@keyframes ctaSweep{0%,15%{left:-45%}70%,100%{left:120%}}
.cta-watermark{position:absolute;left:2%;bottom:-18px;width:180px;opacity:.12;filter:grayscale(1) brightness(2.1)}
.final-cta-content{position:relative;z-index:2;min-height:88px;display:flex;align-items:center;justify-content:space-between;gap:22px;padding:13px 0}
.final-cta h2{margin:0 0 5px;font-size:1.75rem;text-align:center}
.final-cta p{margin:0;color:#fff3e7;font-size:.9rem;text-align:center}
.cta-buttons{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.button-dark{min-height:39px;font-size:.84rem;background:rgba(39,18,4,.55);border-color:rgba(255,255,255,.18)}

/* footer */
.site-footer{background:#080b0e;padding:12px 0 10px}
.footer-grid{display:grid;grid-template-columns:1.05fr .6fr 1fr;gap:24px;padding-top:6px}
.footer-brand,.footer-links,.footer-contact{min-width:0}
.footer-brand .brand img{width:160px}
.footer-brand p{max-width:360px;margin:11px 0;color:#c7c0b6;font-size:.82rem;line-height:1.52}
.social-links{display:flex;gap:8px}
.social-links a{width:30px;height:30px;display:grid;place-items:center;border:1px solid var(--line);border-radius:50%;color:var(--orange);font-weight:800;font-size:.86rem}
.footer-links h2,.footer-contact h2{margin:7px 0 9px;font-size:.96rem}
.footer-links a{display:block;margin:5px 0;color:#ddd6cc;font-size:.8rem}
.footer-links a::before{content:'›';color:var(--orange);margin-right:7px}
.footer-contact a,.footer-contact p{display:flex;align-items:center;gap:8px;margin:7px 0;color:#ddd6cc;font-size:.8rem}
.footer-contact svg{width:16px;height:16px;color:var(--orange);flex:0 0 auto}
.copyright{margin-top:10px;padding-top:9px;border-top:1px solid rgba(255,255,255,.06);text-align:center;color:#9e978e;font-size:.75rem}

/* transitions / animation */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1)}
.reveal.is-visible{opacity:1;transform:none}
.service-card.reveal:nth-child(2){transition-delay:.08s}
.service-card.reveal:nth-child(3){transition-delay:.16s}
.fleet-photos.reveal,.fleet-features.reveal,.about-row.reveal{transition-duration:.9s}

@media(max-width:1080px){
  .header-main{grid-template-columns:195px 1fr 190px}.brand img{width:175px}.primary-nav{gap:20px}.hero h1{font-size:2.25rem}
}

@media(max-width:880px){
  :root{--container:min(100vw - 24px,900px)}
  .header-main{grid-template-columns:1fr auto;grid-template-areas:"brand menu" "cta cta";gap:9px 14px;padding:10px 0;min-height:auto}
  .brand{grid-area:brand;justify-self:start}.brand img{width:160px}.menu-toggle{display:block;grid-area:menu}.header-contact{grid-area:cta;width:100%;min-height:40px}
  .primary-nav{
    position:absolute;left:12px;right:12px;top:100%;display:none;flex-direction:column;gap:0;align-items:stretch;
    padding:8px 16px;background:rgba(7,9,11,.99);border:1px solid var(--line);border-top:none;border-radius:0 0 13px 13px;box-shadow:var(--shadow)
  }
  .primary-nav.open{display:flex}.primary-nav a{padding:13px 0;border-bottom:1px solid rgba(255,255,255,.06)}.primary-nav a:last-child{border-bottom:0}
  .hero{min-height:385px;background-position:center right 32%}.hero-inner{min-height:385px}.hero-content{max-width:430px}.hero h1{font-size:2.03rem}.hero p{font-size:.92rem;max-width:390px}
  .benefits{grid-template-columns:repeat(2,1fr)}.benefit:nth-child(3){border-left:0;border-top:1px solid rgba(255,255,255,.06)}.benefit:nth-child(4){border-top:1px solid rgba(255,255,255,.06)}
  .services-grid{grid-template-columns:1fr}.service-card{display:flex;flex-direction:column}.service-card img{height:auto;aspect-ratio:16/9}.mobile-chevron{display:block}
  .fleet-grid{grid-template-columns:1fr}.fleet-card{display:flex;flex-direction:column}.fleet-card img{height:auto;aspect-ratio:16/9;object-fit:contain;object-position:center}
  .about-row,.about-row-secondary{grid-template-columns:1fr}.about-row-secondary img{aspect-ratio:2.3/1}.about-features{grid-template-columns:repeat(3,1fr)}
  .final-cta-content{flex-direction:column;text-align:center;padding:18px 0}.cta-buttons{justify-content:center}
  .footer-grid{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/-1}
}

@media(max-width:600px){
  .section{padding-top:13px}.brand img{width:145px}
  .hero{min-height:360px;background-position:67% center}.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,7,9,.95),rgba(5,7,9,.78) 55%,rgba(5,7,9,.25))}
  .hero-inner{min-height:360px;padding:24px 0 30px}.hero-content{max-width:100%}.hero h1{font-size:1.78rem;max-width:335px}.hero p{max-width:315px;font-size:.85rem;line-height:1.5}.hero-actions{display:grid;grid-template-columns:1fr;gap:8px;width:min(100%,320px);max-width:320px;margin-inline:auto;justify-items:stretch}.hero-actions .button{width:100%;min-height:43px;font-size:.86rem;justify-content:center;text-align:center}
  .benefits{margin-top:0}.benefit{min-height:98px;flex-direction:column;text-align:center;gap:5px;padding:11px}.benefit+.benefit{border-left:0}.benefit:nth-child(even){border-left:1px solid rgba(255,255,255,.06)}.benefit:nth-child(n+3){border-top:1px solid rgba(255,255,255,.06)}.benefit svg{width:29px;height:29px}.benefit h2{font-size:.87rem}.benefit p{font-size:.72rem;line-height:1.35}
  .section-title{font-size:1.4rem;margin:4px 0 9px}.service-card{border-radius:9px}.service-content{padding:11px 12px;gap:8px}.service-content>svg{display:none}.service-content h3{font-size:.92rem;margin-bottom:3px}.service-content p{font-size:.73rem;line-height:1.33;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.mobile-chevron{font-size:1.3rem}
  .fleet-grid{grid-template-columns:1fr}.fleet-card{border-radius:9px}.fleet-card img{aspect-ratio:16/9;object-fit:contain;object-position:center}
  .about-row{border-radius:9px}.about-row img{min-height:0;aspect-ratio:2.25/1}.about-copy{padding:14px}.about-copy h2{font-size:1.35rem}.about-copy p{font-size:.78rem;line-height:1.48}.about-row-secondary{margin-top:6px}.about-row-secondary img{aspect-ratio:2.25/1}.about-features article{padding:10px 4px}.about-features svg{width:24px;height:24px}.about-features span{font-size:.66rem}
  .final-cta{margin-top:12px}.final-cta h2{font-size:1.4rem}.final-cta p{font-size:.76rem}.cta-buttons{width:100%;display:grid;grid-template-columns:1fr;gap:7px}.button-dark{width:100%}
  .footer-grid{grid-template-columns:1fr;gap:10px}.footer-brand{grid-column:auto}.footer-brand .brand img{width:135px}.footer-links,.footer-contact{border-top:1px solid rgba(255,255,255,.06);padding-top:10px}.footer-brand p,.footer-links a,.footer-contact a,.footer-contact p{font-size:.75rem}.copyright{font-size:.68rem}
}

@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}.reveal{opacity:1;transform:none}}

/* =========================================================
   FÊNYX — fidelidade ao mockup aprovado (desktop + mobile)
   ========================================================= */

/* Compact vertical rhythm matching the approved preview */
.section{padding:10px 0 8px}
.section-title{margin:2px 0 8px;font-size:1.62rem;line-height:1.1}

/* SERVICES — exactly 3 compact horizontal cards on desktop */
.services-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:14px!important;
  align-items:stretch!important;
}
.service-card{
  min-width:0!important;
  height:auto!important;
  min-height:0!important;
  display:flex!important;
  flex-direction:column!important;
  overflow:hidden!important;
}
#servicos .service-card>img{
  display:block!important;
  width:100%!important;
  height:108px!important;
  min-height:108px!important;
  max-height:108px!important;
  aspect-ratio:auto!important;
  object-fit:cover!important;
  object-position:center!important;
  flex:0 0 108px!important;
}
#servicos .service-content{
  min-height:104px!important;
  padding:13px 14px 14px!important;
  grid-template-columns:34px minmax(0,1fr) auto!important;
  gap:11px!important;
}
#servicos .service-content>svg{width:30px!important;height:30px!important}
#servicos .service-content h3{font-size:1rem!important;line-height:1.18!important;margin:0 0 5px!important}
#servicos .service-content p{font-size:.78rem!important;line-height:1.4!important;margin:0!important}

/* FLEET — 3 panoramic photos + one four-column feature strip */
.fleet-section{padding-top:6px!important}
.fleet-photos{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:14px!important;
  margin:0!important;
}
.fleet-photos img{
  display:block!important;
  width:100%!important;
  height:102px!important;
  min-height:102px!important;
  max-height:102px!important;
  aspect-ratio:auto!important;
  object-fit:cover!important;
  object-position:center!important;
  border:1px solid var(--line)!important;
  border-radius:10px 10px 0 0!important;
}
.fleet-features{
  margin-top:0!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  background:linear-gradient(180deg,#10161b,#0a0e12)!important;
  border:1px solid var(--line)!important;
  border-radius:0 0 11px 11px!important;
  box-shadow:var(--shadow)!important;
  overflow:hidden!important;
}
.fleet-features article{
  min-width:0!important;
  min-height:58px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:11px!important;
  padding:8px 10px!important;
  text-align:left!important;
}
.fleet-features article+article{border-left:1px solid rgba(255,255,255,.06)!important}
.fleet-features svg{width:34px!important;height:27px!important;color:var(--orange)!important;flex:0 0 auto!important}
.fleet-features span{font-size:.78rem!important;line-height:1.2!important;font-weight:700!important}

/* ABOUT — two-row composition exactly like preview, never vertically stretched */
.about-section{padding-top:8px!important}
.about-row{
  display:grid!important;
  grid-template-columns:1.38fr .72fr!important;
  min-height:0!important;
}
.about-row:first-child{height:190px!important}
.about-row:first-child .about-main-image{
  width:100%!important;
  height:190px!important;
  min-height:0!important;
  max-height:190px!important;
  aspect-ratio:auto!important;
  object-fit:cover!important;
  object-position:center!important;
}
.about-copy{padding:18px 20px!important}
.about-copy h2{font-size:1.55rem!important;margin:0 0 8px!important}
.about-copy p{font-size:.88rem!important;line-height:1.48!important}
.about-row-secondary{
  margin-top:7px!important;
  grid-template-columns:1.5fr .65fr!important;
  height:150px!important;
}
.about-row-secondary .about-secondary-image{
  display:block!important;
  width:100%!important;
  height:150px!important;
  min-height:0!important;
  max-height:150px!important;
  aspect-ratio:auto!important;
  object-fit:contain!important;
  object-position:center!important;
  background:#090d11!important;
}
.about-features{height:150px!important;grid-template-columns:repeat(3,1fr)!important}
.about-features article{padding:10px 6px!important}
.about-features svg{width:27px!important;height:27px!important}
.about-features span{font-size:.74rem!important}

/* Desktop only: preserve approved three-card geometry */
@media(min-width:881px){
  #servicos .mobile-chevron{display:none!important}
}

/* Mobile mirrors the approved mockup: compact horizontal service rows,
   3 fleet photos side by side and 4 small fleet labels beneath. */
@media(max-width:880px){
  .section{padding:8px 0 6px!important}
  .section-title{font-size:1.12rem!important;margin:2px 0 7px!important}

  #servicos .services-grid{grid-template-columns:1fr!important;gap:6px!important}
  #servicos .service-card{
    display:grid!important;
    grid-template-columns:112px minmax(0,1fr)!important;
    min-height:64px!important;
    border-radius:8px!important;
  }
  #servicos .service-card>img{
    width:112px!important;
    height:64px!important;
    min-height:64px!important;
    max-height:64px!important;
    flex:none!important;
    border-radius:0!important;
  }
  #servicos .service-content{
    min-height:64px!important;
    padding:8px 9px!important;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 18px!important;
    align-items:center!important;
    gap:5px!important;
  }
  #servicos .service-content>svg,#servicos .service-content p{display:none!important}
  #servicos .service-content h3{font-size:.78rem!important;margin:0!important;line-height:1.15!important}
  #servicos .mobile-chevron{display:block!important;font-size:1.2rem!important;justify-self:end!important}

  .fleet-photos{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:5px!important}
  .fleet-photos img{
    height:62px!important;
    min-height:62px!important;
    max-height:62px!important;
    border-radius:7px 7px 0 0!important;
  }
  .fleet-features{grid-template-columns:repeat(4,minmax(0,1fr))!important;border-radius:0 0 8px 8px!important}
  .fleet-features article{min-height:58px!important;flex-direction:column!important;gap:3px!important;padding:6px 2px!important;text-align:center!important}
  .fleet-features svg{width:24px!important;height:20px!important}
  .fleet-features span{font-size:.55rem!important;line-height:1.12!important}

  .about-row:first-child{
    grid-template-columns:1.18fr .82fr!important;
    height:126px!important;
  }
  .about-row:first-child .about-main-image{height:126px!important;max-height:126px!important;object-fit:cover!important}
  .about-copy{padding:9px 10px!important}
  .about-copy h2{font-size:.92rem!important;margin-bottom:4px!important}
  .about-copy p{font-size:.56rem!important;line-height:1.28!important}

  .about-row-secondary{
    grid-template-columns:1.35fr .65fr!important;
    height:104px!important;
    margin-top:5px!important;
  }
  .about-row-secondary .about-secondary-image{height:104px!important;max-height:104px!important;object-fit:contain!important}
  .about-features{height:104px!important;grid-template-columns:1fr!important}
  .about-features article{min-height:0!important;flex-direction:row!important;justify-content:flex-start!important;gap:6px!important;padding:4px 7px!important;text-align:left!important}
  .about-features article+article{border-left:0!important;border-top:1px solid rgba(255,255,255,.06)!important}
  .about-features svg{width:17px!important;height:17px!important}
  .about-features span{font-size:.54rem!important}
}

@media(max-width:600px){
  #servicos .service-card{grid-template-columns:96px minmax(0,1fr)!important}
  #servicos .service-card>img{width:96px!important;height:58px!important;min-height:58px!important;max-height:58px!important}
  #servicos .service-content{min-height:58px!important}
  .fleet-photos img{height:54px!important;min-height:54px!important;max-height:54px!important}
}


/* =========================================================
   FÊNYX V7 — PREVIEW LOCK
   A referência visual aprovada é a fonte de verdade para
   proporções, alturas, espaçamentos e composição das seções.
   ========================================================= */
@media (min-width:881px){
  :root{--container:min(1300px,calc(100vw - 72px))}
  .site-header{position:sticky;top:0}
  .header-main{min-height:62px;grid-template-columns:190px 1fr 190px;gap:16px}
  .brand img{width:150px!important;max-height:50px;object-fit:contain;object-position:left center}
  .primary-nav{gap:28px}
  .primary-nav a{font-size:.84rem;padding:9px 0}
  .header-contact{min-height:38px!important;padding-inline:15px!important;font-size:.82rem!important}

  .hero{min-height:300px;background-position:center right!important}
  .hero-inner{min-height:300px;padding:24px 0 30px}
  .hero-content{max-width:405px}
  .hero h1{font-size:2.15rem;line-height:1.06;margin-bottom:11px}
  .hero p{font-size:.83rem;line-height:1.48;margin-bottom:16px;max-width:390px}
  .hero-actions{justify-content:flex-start;width:auto;gap:10px}
  .hero-actions .button{min-height:39px;padding:0 18px;font-size:.8rem;width:auto}

  .benefits{margin-top:-8px;border-radius:10px}
  .benefit{min-height:66px;padding:10px 15px;gap:10px}
  .benefit svg{width:28px;height:28px}
  .benefit h2{font-size:.84rem;margin-bottom:2px}
  .benefit p{font-size:.68rem;line-height:1.3}

  .section{padding:8px 0 6px}
  .section-title{font-size:1.42rem;line-height:1;margin:3px 0 7px}

  /* Serviços: 3 cards baixos, exatamente como a prévia */
  #servicos .services-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:12px!important}
  #servicos .service-card{border-radius:9px!important;min-height:0!important;height:174px!important}
  #servicos .service-card>img{width:100%!important;height:72px!important;min-height:72px!important;max-height:72px!important;flex:0 0 72px!important;aspect-ratio:auto!important;object-fit:cover!important;object-position:center 56%!important}
  #servicos .service-content{min-height:102px!important;height:102px!important;padding:10px 12px!important;grid-template-columns:30px minmax(0,1fr)!important;gap:9px!important;align-items:start!important}
  #servicos .service-content>svg{width:27px!important;height:27px!important}
  #servicos .service-content h3{font-size:.88rem!important;line-height:1.12!important;margin:0 0 4px!important}
  #servicos .service-content p{font-size:.68rem!important;line-height:1.32!important;display:block!important;overflow:visible!important}
  #servicos .mobile-chevron{display:none!important}

  /* Frota: 3 fotos panorâmicas + faixa única de 4 diferenciais */
  #frota{padding-top:5px!important}
  #frota .fleet-photos{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:12px!important}
  #frota .fleet-photos img{height:64px!important;min-height:64px!important;max-height:64px!important;width:100%!important;object-fit:cover!important;object-position:center 58%!important;border-radius:8px 8px 0 0!important;border:1px solid var(--line)!important}
  #frota .fleet-features{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;min-height:54px!important;margin-top:0!important;border:1px solid var(--line)!important;border-radius:0 0 9px 9px!important;background:linear-gradient(180deg,#0e1317,#090d10)!important;overflow:hidden!important}
  #frota .fleet-features article{min-height:54px!important;padding:7px 10px!important;display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:center!important;gap:9px!important;text-align:left!important}
  #frota .fleet-features article+article{border-left:1px solid rgba(255,255,255,.06)!important}
  #frota .fleet-features svg{width:29px!important;height:29px!important;flex:0 0 auto!important}
  #frota .fleet-features span{font-size:.72rem!important;line-height:1.16!important;font-weight:700!important}

  /* Sobre: duas linhas com as mesmas proporções da prévia */
  #sobre{padding-top:4px!important}
  #sobre .about-row{grid-template-columns:1.45fr .95fr!important;border-radius:9px!important;min-height:0!important;height:132px!important}
  #sobre .about-row .about-main-image{width:100%!important;height:132px!important;min-height:132px!important;max-height:132px!important;object-fit:cover!important;object-position:center center!important}
  #sobre .about-copy{padding:14px 18px!important}
  #sobre .about-copy h2{font-size:1.38rem!important;margin-bottom:7px!important}
  #sobre .about-copy p{font-size:.74rem!important;line-height:1.42!important}
  #sobre .about-row-secondary{margin-top:7px!important;grid-template-columns:1.55fr .85fr!important;height:92px!important}
  #sobre .about-row-secondary .about-secondary-image{width:100%!important;height:92px!important;min-height:92px!important;max-height:92px!important;aspect-ratio:auto!important;object-fit:cover!important;object-position:center 48%!important}
  #sobre .about-features{grid-template-columns:repeat(3,1fr)!important;height:92px!important}
  #sobre .about-features article{padding:8px 5px!important;gap:5px!important}
  #sobre .about-features svg{width:25px!important;height:25px!important}
  #sobre .about-features span{font-size:.68rem!important;line-height:1.18!important}

  .final-cta{margin-top:7px!important}
  .final-cta-content{min-height:62px!important;padding:8px 0!important;display:grid!important;grid-template-columns:1fr 1fr!important;align-items:center!important;gap:16px!important}
  .final-cta h2{font-size:1.4rem!important;margin-bottom:2px!important}
  .final-cta p{font-size:.72rem!important}
  .cta-buttons{justify-content:center!important;gap:8px!important}
  .button-dark{min-height:34px!important;font-size:.72rem!important;padding:0 14px!important}
  .cta-watermark{width:145px!important;bottom:-30px!important}

  .site-footer{padding:8px 0 7px!important}
  .footer-grid{grid-template-columns:1.05fr .6fr 1fr!important;gap:22px!important;padding-top:3px!important}
  .footer-brand .brand img{width:130px!important;max-height:42px!important}
  .footer-brand p{margin:7px 0!important;font-size:.66rem!important;line-height:1.38!important;max-width:300px!important}
  .social-links a{width:24px!important;height:24px!important;font-size:.72rem!important}
  .footer-links h2,.footer-contact h2{font-size:.8rem!important;margin:4px 0 6px!important}
  .footer-links a,.footer-contact a,.footer-contact p{font-size:.65rem!important;margin:4px 0!important}
  .footer-contact svg{width:13px!important;height:13px!important}
  .copyright{margin-top:6px!important;padding-top:6px!important;font-size:.62rem!important}
}

/* Mobile reproduz a coluna da direita da prévia */
@media (max-width:880px){
  :root{--container:calc(100vw - 24px)}
  .header-main{padding:8px 0!important;gap:7px 12px!important}
  .brand img{width:142px!important;max-height:48px!important;object-fit:contain!important;object-position:left center!important}
  .menu-toggle{width:42px!important;height:42px!important}
  .header-contact{min-height:36px!important;font-size:.78rem!important}

  .hero{min-height:292px!important;background-position:70% center!important}
  .hero-inner{min-height:292px!important;padding:18px 0 20px!important;align-items:flex-start!important}
  .hero-content{max-width:64%!important}
  .hero h1{font-size:1.48rem!important;line-height:1.06!important;margin-bottom:9px!important}
  .hero p{font-size:.72rem!important;line-height:1.4!important;margin-bottom:12px!important;max-width:100%!important}
  .hero-actions{width:100%!important;max-width:none!important;grid-template-columns:1fr!important;gap:6px!important}
  .hero-actions .button{width:100%!important;min-height:37px!important;font-size:.76rem!important}

  .benefits{margin-top:0!important;grid-template-columns:repeat(2,1fr)!important;border-radius:8px!important}
  .benefit{min-height:64px!important;padding:8px 6px!important;gap:3px!important}
  .benefit svg{width:26px!important;height:26px!important}
  .benefit h2{font-size:.72rem!important}
  .benefit p{display:none!important}

  .section{padding:8px 0 5px!important}
  .section-title{font-size:1.05rem!important;margin:2px 0 6px!important}

  /* serviços horizontais pequenos */
  #servicos .services-grid{display:grid!important;grid-template-columns:1fr!important;gap:5px!important}
  #servicos .service-card{display:grid!important;grid-template-columns:31% 1fr auto!important;height:55px!important;min-height:55px!important;border-radius:7px!important;align-items:stretch!important}
  #servicos .service-card>img{width:100%!important;height:55px!important;min-height:55px!important;max-height:55px!important;aspect-ratio:auto!important;object-fit:cover!important;object-position:center!important;grid-column:1!important;grid-row:1!important}
  #servicos .service-content{grid-column:2 / 4!important;grid-row:1!important;display:grid!important;grid-template-columns:1fr auto!important;align-items:center!important;min-height:55px!important;height:55px!important;padding:6px 9px!important;gap:5px!important}
  #servicos .service-content>svg{display:none!important}
  #servicos .service-content h3{font-size:.72rem!important;line-height:1.12!important;margin:0!important}
  #servicos .service-content p{display:none!important}
  #servicos .mobile-chevron{display:block!important;font-size:1.2rem!important}

  /* frota 3 miniaturas em linha */
  #frota .fleet-photos{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:5px!important}
  #frota .fleet-photos img{width:100%!important;height:58px!important;min-height:58px!important;max-height:58px!important;object-fit:cover!important;object-position:center!important;border-radius:6px!important;border:1px solid var(--line)!important}
  #frota .fleet-features{display:grid!important;grid-template-columns:repeat(4,1fr)!important;margin-top:5px!important;border:1px solid var(--line)!important;border-radius:7px!important;overflow:hidden!important}
  #frota .fleet-features article{min-height:57px!important;padding:6px 2px!important;display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:center!important;gap:3px!important;text-align:center!important}
  #frota .fleet-features article+article{border-left:1px solid rgba(255,255,255,.06)!important}
  #frota .fleet-features svg{width:22px!important;height:22px!important}
  #frota .fleet-features span{font-size:.55rem!important;line-height:1.1!important}

  /* Sobre em uma única faixa imagem + texto/diferenciais */
  #sobre .about-row{display:grid!important;grid-template-columns:52% 48%!important;height:112px!important;min-height:112px!important;border-radius:7px!important}
  #sobre .about-row .about-main-image{width:100%!important;height:112px!important;min-height:112px!important;max-height:112px!important;aspect-ratio:auto!important;object-fit:cover!important;object-position:center!important}
  #sobre .about-copy{padding:8px 9px!important;justify-content:flex-start!important}
  #sobre .about-copy h2{font-size:.94rem!important;margin:0 0 5px!important}
  #sobre .about-copy p{font-size:.55rem!important;line-height:1.25!important;display:-webkit-box!important;-webkit-line-clamp:5!important;-webkit-box-orient:vertical!important;overflow:hidden!important}
  #sobre .about-row-secondary{display:none!important}
  #sobre .about-copy::after{content:"Estrutura moderna   •   Equipe especializada   •   Atendimento dedicado";display:block;margin-top:5px;color:#d87418;font-size:.54rem;line-height:1.3;font-weight:700}

  .final-cta{margin-top:7px!important;border-radius:7px 7px 0 0!important}
  .final-cta-content{min-height:108px!important;padding:10px 8px!important;display:flex!important;flex-direction:column!important;gap:7px!important}
  .final-cta h2{font-size:1.25rem!important;margin-bottom:2px!important}
  .final-cta p{font-size:.63rem!important}
  .cta-buttons{width:100%!important;display:grid!important;grid-template-columns:1fr!important;gap:5px!important}
  .button-dark{width:100%!important;min-height:32px!important;font-size:.67rem!important}

  .site-footer{padding:9px 0 7px!important}
  .footer-grid{grid-template-columns:1fr!important;gap:8px!important;padding-top:0!important}
  .footer-brand{grid-column:auto!important}
  .footer-brand .brand img{width:130px!important;max-height:44px!important}
  .footer-brand p{font-size:.61rem!important;line-height:1.35!important;margin:6px 0!important}
  .footer-links{display:none!important}
  .footer-contact{padding-top:7px!important}
  .footer-contact h2{display:none!important}
  .footer-contact a,.footer-contact p{font-size:.62rem!important;margin:4px 0!important}
  .copyright{font-size:.57rem!important;margin-top:5px!important;padding-top:6px!important}
}


/* v8 final anti-crop overrides */
#servicos .service-card img,
#frota .fleet-photos img,
#sobre .about-row .about-main-image,
#sobre .about-row-secondary .about-secondary-image{
  object-fit:contain !important;
  object-position:center center !important;
  background:linear-gradient(180deg,#0d1216,#090d10) !important;
}

#frota .fleet-photos img,
#sobre .about-row .about-main-image,
#sobre .about-row-secondary .about-secondary-image{
  width:100% !important;
  display:block !important;
}

@media (min-width: 881px){
  #frota .fleet-photos img{
    height:74px !important;
    min-height:74px !important;
    max-height:74px !important;
  }
  #sobre .about-row .about-main-image{
    height:162px !important;
    min-height:162px !important;
    max-height:162px !important;
  }
  #sobre .about-row-secondary .about-secondary-image{
    height:112px !important;
    min-height:112px !important;
    max-height:112px !important;
  }
}

@media (max-width: 880px){
  #frota .fleet-photos img{
    object-fit:contain !important;
    object-position:center center !important;
  }
  #sobre .about-row .about-main-image,
  #sobre .about-row-secondary .about-secondary-image{
    object-fit:contain !important;
    object-position:center center !important;
  }
}


/* v9 balanced media: fills each box without cropping the real photo */
.media-frame{
  position:relative!important;
  overflow:hidden!important;
  isolation:isolate!important;
  background:#0a0e12!important;
}
.media-frame::before{
  content:""!important;
  position:absolute!important;
  inset:-14px!important;
  z-index:0!important;
  background-image:linear-gradient(rgba(4,7,9,.28),rgba(4,7,9,.28)),var(--media)!important;
  background-size:cover!important;
  background-position:center!important;
  filter:blur(10px) saturate(.9) brightness(.72)!important;
  transform:scale(1.08)!important;
}
.media-frame::after{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  z-index:1!important;
  background:linear-gradient(90deg,rgba(5,8,10,.20),transparent 18%,transparent 82%,rgba(5,8,10,.20))!important;
  pointer-events:none!important;
}
.media-frame img{
  position:relative!important;
  z-index:2!important;
  display:block!important;
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
  margin:0!important;
  background:transparent!important;
}

/* services: panoramic like the approved preview, but entire photo stays visible */
#servicos .service-card{overflow:hidden!important}
#servicos .service-media{
  width:100%!important;
  height:128px!important;
  min-height:128px!important;
  border-bottom:1px solid rgba(255,255,255,.05)!important;
}
#servicos .service-card>img{display:none!important}
#servicos .service-content{min-height:112px!important}

/* fleet: three compact panorama boxes with no empty black bands */
#frota .fleet-photos{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:12px!important;
  align-items:stretch!important;
}
#frota .fleet-media{
  height:92px!important;
  min-height:92px!important;
  border:1px solid var(--line)!important;
  border-radius:9px 9px 0 0!important;
}
#frota .fleet-photos>img{display:none!important}

/* about: preserve the natural wide base image; second photo uses a balanced panorama */
#sobre .about-row:first-child{align-items:stretch!important}
#sobre .about-main-media{
  height:100%!important;
  min-height:186px!important;
  background:#0a0e12!important;
}
#sobre .about-main-media::before{display:none!important}
#sobre .about-main-media img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  background:#0a0e12!important;
}
#sobre .about-row-secondary{align-items:stretch!important}
#sobre .about-secondary-media{
  height:148px!important;
  min-height:148px!important;
}
#sobre .about-row>img{display:none!important}

@media(max-width:880px){
  #servicos .service-media{height:92px!important;min-height:92px!important}
  #servicos .service-card{display:grid!important;grid-template-columns:128px 1fr!important}
  #servicos .service-content{min-height:92px!important;padding:10px 11px!important}
  #frota .fleet-photos{gap:5px!important}
  #frota .fleet-media{height:66px!important;min-height:66px!important;border-radius:7px!important}
  #sobre .about-main-media{height:auto!important;min-height:0!important;aspect-ratio:1600/520!important}
  #sobre .about-secondary-media{height:116px!important;min-height:116px!important}
}

@media(max-width:600px){
  #servicos .service-card{grid-template-columns:112px 1fr!important}
  #servicos .service-media{height:82px!important;min-height:82px!important}
  #servicos .service-content{min-height:82px!important}
  #frota .fleet-media{height:58px!important;min-height:58px!important}
  #sobre .about-secondary-media{height:104px!important;min-height:104px!important}
}

/* =========================================================
   v10 — desktop premium proportions
   Mobile layout intentionally preserved exactly as approved.
   ========================================================= */
@media (min-width: 881px){
  /* More breathing room on desktop without making the page oversized */
  .section{padding:18px 0 15px!important}
  .section-title{
    margin:0 0 14px!important;
    font-size:1.78rem!important;
    line-height:1.15!important;
    letter-spacing:-.015em!important;
  }

  /* SERVICES — restore a premium photographic proportion */
  #servicos .services-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:18px!important;
  }
  #servicos .service-card{
    height:auto!important;
    border-radius:13px!important;
    background:linear-gradient(180deg,#11171c 0%,#0a0e12 100%)!important;
  }
  #servicos .service-media{
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16/7.5!important;
    border-bottom:1px solid rgba(255,255,255,.07)!important;
  }
  #servicos .service-media img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center 52%!important;
  }
  #servicos .service-content{
    min-height:124px!important;
    padding:17px 18px 19px!important;
    grid-template-columns:36px minmax(0,1fr) auto!important;
    gap:12px!important;
  }
  #servicos .service-content>svg{width:32px!important;height:32px!important}
  #servicos .service-content h3{font-size:1.05rem!important;line-height:1.22!important;margin:0 0 6px!important}
  #servicos .service-content p{font-size:.82rem!important;line-height:1.5!important}

  /* FLEET / ROUTES VISUAL AREA — same visual weight as services */
  #frota{padding-top:13px!important}
  #frota .fleet-photos{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:18px!important;
  }
  #frota .fleet-media{
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16/7.2!important;
    border-radius:12px 12px 0 0!important;
  }
  #frota .fleet-media img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center 52%!important;
  }
  #frota .fleet-features{
    min-height:72px!important;
    border-radius:0 0 12px 12px!important;
  }
  #frota .fleet-features article{
    min-height:72px!important;
    padding:11px 14px!important;
    gap:11px!important;
  }
  #frota .fleet-features svg{width:34px!important;height:30px!important}
  #frota .fleet-features span{font-size:.78rem!important;line-height:1.25!important}

  /* ABOUT — natural base-photo ratio, no clipped copy and balanced second row */
  #sobre{padding-top:16px!important}
  #sobre .about-row:first-child{
    display:grid!important;
    grid-template-columns:minmax(0,1.42fr) minmax(380px,.88fr)!important;
    height:auto!important;
    min-height:0!important;
    align-items:stretch!important;
    border-radius:13px!important;
  }
  #sobre .about-main-media{
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:1600/520!important;
    background:#0a0e12!important;
  }
  #sobre .about-main-media::before{display:none!important}
  #sobre .about-main-media img,
  #sobre .about-row .about-main-image{
    width:100%!important;
    height:100%!important;
    min-height:0!important;
    max-height:none!important;
    object-fit:contain!important;
    object-position:center center!important;
    background:#0a0e12!important;
  }
  #sobre .about-copy{
    padding:24px 28px!important;
    justify-content:center!important;
    overflow:visible!important;
  }
  #sobre .about-copy h2{
    font-size:1.72rem!important;
    line-height:1.15!important;
    margin:0 0 11px!important;
  }
  #sobre .about-copy p{
    font-size:.91rem!important;
    line-height:1.62!important;
    margin:0!important;
    overflow:visible!important;
    display:block!important;
  }

  #sobre .about-row-secondary{
    display:grid!important;
    grid-template-columns:minmax(0,1.15fr) minmax(440px,.85fr)!important;
    height:164px!important;
    margin-top:10px!important;
    border-radius:12px!important;
    align-items:stretch!important;
  }
  #sobre .about-secondary-media{
    width:100%!important;
    height:164px!important;
    min-height:164px!important;
    background:#0a0e12!important;
  }
  #sobre .about-secondary-media img,
  #sobre .about-row-secondary .about-secondary-image{
    width:100%!important;
    height:100%!important;
    min-height:0!important;
    max-height:none!important;
    object-fit:cover!important;
    object-position:center 48%!important;
  }
  #sobre .about-features{
    height:164px!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  #sobre .about-features article{padding:14px 10px!important;gap:8px!important}
  #sobre .about-features svg{width:31px!important;height:31px!important}
  #sobre .about-features span{font-size:.76rem!important;line-height:1.25!important}
}

/* =========================================================
   v11 — desktop final: image proportions restored
   Mobile is untouched. Desktop uses natural photo ratios,
   more vertical breathing room and no cropped About copy.
   ========================================================= */
@media (min-width: 881px){
  /* sections need room to breathe on large screens */
  #servicos.section,
  #frota.section,
  #sobre.section{
    padding-top:24px!important;
    padding-bottom:22px!important;
  }

  #servicos .section-title,
  #frota .section-title{
    margin-bottom:16px!important;
  }

  /* SERVICES: stop using ultra-wide/cropped thumbnails */
  #servicos .services-grid{
    gap:20px!important;
  }
  #servicos .service-card{
    min-height:0!important;
    height:auto!important;
    border-radius:14px!important;
    overflow:hidden!important;
  }
  #servicos .service-media{
    display:block!important;
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16/9!important;
    overflow:hidden!important;
    background:#0b0f13!important;
  }
  #servicos .service-media img{
    display:block!important;
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center!important;
  }
  #servicos .service-content{
    min-height:138px!important;
    height:auto!important;
    padding:19px 20px 21px!important;
    grid-template-columns:38px minmax(0,1fr) auto!important;
    gap:13px!important;
  }
  #servicos .service-content h3{
    font-size:1.08rem!important;
    line-height:1.25!important;
  }
  #servicos .service-content p{
    font-size:.86rem!important;
    line-height:1.55!important;
  }

  /* FLEET: photos get the same visual weight as service photos */
  #frota .fleet-photos{
    gap:20px!important;
  }
  #frota .fleet-media{
    display:block!important;
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16/9!important;
    overflow:hidden!important;
    border-radius:13px 13px 0 0!important;
    background:#0b0f13!important;
  }
  #frota .fleet-media img{
    display:block!important;
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center!important;
  }
  #frota .fleet-features{
    min-height:82px!important;
    height:auto!important;
    border-radius:0 0 13px 13px!important;
  }
  #frota .fleet-features article{
    min-height:82px!important;
    padding:14px 16px!important;
  }
  #frota .fleet-features span{
    font-size:.82rem!important;
  }

  /* ABOUT: preserve full base image and give text a proper editorial column */
  #sobre .about-row:first-child{
    display:grid!important;
    grid-template-columns:minmax(0,1.35fr) minmax(420px,.9fr)!important;
    height:auto!important;
    min-height:300px!important;
    align-items:stretch!important;
    overflow:hidden!important;
    border-radius:14px!important;
  }
  #sobre .about-main-media{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:100%!important;
    height:100%!important;
    min-height:300px!important;
    aspect-ratio:auto!important;
    overflow:hidden!important;
    background:#090d11!important;
  }
  #sobre .about-main-media img,
  #sobre .about-row .about-main-image{
    display:block!important;
    width:100%!important;
    height:100%!important;
    min-height:300px!important;
    max-height:none!important;
    object-fit:contain!important;
    object-position:center!important;
    background:#090d11!important;
  }
  #sobre .about-copy{
    min-width:0!important;
    padding:34px 36px!important;
    justify-content:center!important;
    overflow:visible!important;
  }
  #sobre .about-copy h2{
    font-size:1.9rem!important;
    margin-bottom:14px!important;
  }
  #sobre .about-copy p{
    display:block!important;
    overflow:visible!important;
    -webkit-line-clamp:unset!important;
    font-size:.96rem!important;
    line-height:1.7!important;
  }

  /* second About row: full photo visible, feature blocks no longer squeezed */
  #sobre .about-row-secondary{
    display:grid!important;
    grid-template-columns:minmax(0,1.28fr) minmax(460px,.9fr)!important;
    height:220px!important;
    min-height:220px!important;
    margin-top:14px!important;
    overflow:hidden!important;
    border-radius:13px!important;
  }
  #sobre .about-secondary-media{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:100%!important;
    height:220px!important;
    min-height:220px!important;
    overflow:hidden!important;
    background:#090d11!important;
  }
  #sobre .about-secondary-media img,
  #sobre .about-row-secondary .about-secondary-image{
    display:block!important;
    width:100%!important;
    height:100%!important;
    min-height:0!important;
    max-height:none!important;
    object-fit:contain!important;
    object-position:center!important;
    background:#090d11!important;
  }
  #sobre .about-features{
    height:220px!important;
    min-height:220px!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  #sobre .about-features article{
    min-height:220px!important;
    padding:20px 12px!important;
    justify-content:center!important;
  }
  #sobre .about-features svg{
    width:34px!important;
    height:34px!important;
  }
  #sobre .about-features span{
    font-size:.82rem!important;
    line-height:1.3!important;
  }
}

/* =========================================================
   v12 — desktop fleet hotfix
   The fleet image boxes must be fully filled with the photo,
   with no empty black area below the image.
   ========================================================= */
@media (min-width: 881px){
  #frota .fleet-photos{
    align-items:stretch!important;
  }
  #frota .fleet-media{
    position:relative!important;
    display:block!important;
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16/9!important;
    overflow:hidden!important;
    border:1px solid var(--line)!important;
    border-radius:13px 13px 0 0!important;
    background-image:linear-gradient(rgba(6,9,12,.08),rgba(6,9,12,.08)),var(--media)!important;
    background-size:cover!important;
    background-position:center center!important;
    background-repeat:no-repeat!important;
  }
  #frota .fleet-media::before,
  #frota .fleet-media::after{
    display:none!important;
    content:none!important;
  }
  #frota .fleet-media img{
    display:none!important;
  }
}

/* =========================================================
   v13 — desktop fleet image restore
   Restores the actual <img> rendering inside fleet cards and
   makes the photo fill the whole visual area with no blank zone.
   ========================================================= */
@media (min-width: 881px){
  #frota .fleet-media{
    position:relative!important;
    display:block!important;
    width:100%!important;
    aspect-ratio:16/9!important;
    height:auto!important;
    min-height:0!important;
    overflow:hidden!important;
    background:none!important;
    border:1px solid var(--line)!important;
    border-radius:13px 13px 0 0!important;
  }
  #frota .fleet-media::before,
  #frota .fleet-media::after{
    display:none!important;
    content:none!important;
    background:none!important;
  }
  #frota .fleet-media img{
    display:block!important;
    width:100%!important;
    height:100%!important;
    min-height:100%!important;
    object-fit:cover!important;
    object-position:center center!important;
    opacity:1!important;
    visibility:visible!important;
  }
}


/* =========================================================
   v14 — mobile About gate image + native email app
   Keeps the approved mobile layout intact and only restores
   the real FÊNYX gate/fleet photo below the About block.
   ========================================================= */
@media (max-width: 880px){
  #sobre .about-row-secondary{
    display:block!important;
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    margin-top:8px!important;
    overflow:hidden!important;
    border:1px solid var(--line)!important;
    border-radius:9px!important;
    background:#0a0e12!important;
  }
  #sobre .about-secondary-media{
    display:block!important;
    width:100%!important;
    height:auto!important;
    min-height:0!important;
    aspect-ratio:16/9!important;
    overflow:hidden!important;
    background:#0a0e12!important;
  }
  #sobre .about-secondary-media::before,
  #sobre .about-secondary-media::after{
    display:none!important;
    content:none!important;
  }
  #sobre .about-secondary-media img,
  #sobre .about-row-secondary .about-secondary-image{
    display:block!important;
    width:100%!important;
    height:100%!important;
    min-height:0!important;
    max-height:none!important;
    aspect-ratio:16/9!important;
    object-fit:cover!important;
    object-position:center center!important;
    background:transparent!important;
  }
  /* The feature summary already appears beside the first About image on mobile. */
  #sobre .about-row-secondary .about-features{
    display:none!important;
  }
}
