@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ===================================================================
   TOKENS
=================================================================== */
:root{
  --ink-900:#071f30;
  --ink-800:#0b2c44;
  --blue-700:#11517c;
  --blue-600:#166393;
  --blue-500:#2a86bc;
  --orange-500:#f38221;
  --orange-600:#d96c0f;
  --orange-400:#ff9c42;

  --glass-soft: rgba(255,255,255,.05);
  --glass: rgba(255,255,255,.07);
  --glass-strong: rgba(255,255,255,.12);
  --glass-border: rgba(255,255,255,.16);

  --white:#ffffff;
  --text-1:#f3f7fb;
  --text-2:#c3d1de;
  --text-3:#8ea3b6;

  --shadow-sm: 0 10px 26px -14px rgba(2,12,20,.55);
  --shadow-md: 0 22px 48px -18px rgba(2,12,20,.6);
  --shadow-lg: 0 34px 70px -22px rgba(2,12,20,.65);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --maxw: 1180px;
}

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

html{ scroll-behavior: smooth; }

/* Compensa o header sticky ao navegar por âncora, para o título da seção não ficar escondido atrás dele */
section[id], #topo{
  scroll-margin-top: 90px;
}

body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  color: var(--text-2);
  background:
    radial-gradient(1000px 600px at 12% 0%, rgba(243,130,33,.10), transparent 55%),
    radial-gradient(1200px 700px at 90% 30%, rgba(42,134,188,.16), transparent 60%),
    linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 45%, var(--ink-900) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4{
  font-family:'Space Grotesk', 'Inter', sans-serif;
  color: var(--text-1);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p{ margin:0 0 1em; color: var(--text-2); }

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

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

.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--orange-400);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:18px; height:2px;
  background: var(--orange-500);
  display:inline-block;
}

.section{
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-head{
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p{ font-size:1.05rem; }

/* section ambient glow blobs - tie each section to brand blue/orange without flat white blocks */
.section::before{
  content:"";
  position:absolute;
  width:640px; height:640px;
  border-radius:50%;
  filter: blur(110px);
  z-index:0;
  pointer-events:none;
}
#sobre::before{ background: rgba(42,134,188,.16); top:-220px; left:-160px; }
#servicos::before{ background: rgba(243,130,33,.14); top:-160px; right:-200px; }
#contato::before{ background: rgba(243,130,33,.12); top:-180px; right:-140px; }

/* glass panel used to differentiate a section as a distinct translucent surface */
.glass-panel{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ledger rule motif - thin ruled divider */
.ledger-rule{
  width:100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.ledger-rule::after{
  content:"";
  display:block;
  height:1px;
  background: repeating-linear-gradient(to right, var(--glass-border) 0 10px, transparent 10px 16px);
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight:600;
  font-size:.95rem;
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(243,130,33,.55);
}
.btn-primary:hover{ background: var(--orange-600); transform: translateY(-2px); }

.btn-ghost{
  background: var(--glass);
  color: var(--white);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover{ background: var(--glass-strong); transform: translateY(-2px); }

.btn-outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover{ background: var(--white); color: var(--ink-900); transform: translateY(-2px); }

/* ===================================================================
   HEADER / NAV
=================================================================== */
header{
  position: sticky;
  top:0;
  z-index: 999;
  background: rgba(7,31,48,.6);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
}
.nav-wrap{
  width:100%;
  max-width: var(--maxw);
  margin:0 auto;
  padding: 12px 20px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:46px; width:auto; border-radius:8px; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 34px;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  font-weight:600;
  font-size:.95rem;
  color: var(--text-1);
  position:relative;
  padding: 6px 0;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background: var(--orange-500);
  transition: width .25s ease;
}
.nav-links a:hover::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:16px; }
.nav-cta .btn-primary{ padding:12px 22px; font-size:.9rem; }

.nav-toggle{
  display:none;
  background:none; border:none;
  font-size:1.5rem;
  color: var(--text-1);
  cursor:pointer;
  width:44px; height:44px;
  align-items:center; justify-content:center;
  flex-shrink:0;
}

.mobile-panel{
  display:flex;
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(7,31,48,.97);
  backdrop-filter: blur(20px);
  z-index: 1200;
  padding: 24px 24px 40px;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
}
.mobile-panel.open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease, visibility 0s linear 0s;
}
.mobile-panel-top{
  display:flex; align-items:center; justify-content:space-between; margin-bottom: 40px;
}
.mobile-panel-top img{ height:40px; }
.mobile-panel-close{
  background:none; border:none; color:var(--white); font-size:1.7rem; cursor:pointer;
  width:44px; height:44px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.mobile-links{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:6px;
}
.mobile-links a{
  display:block;
  color: var(--white);
  font-family:'Space Grotesk', sans-serif;
  font-size:1.5rem;
  font-weight:600;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-links a:active{
  color: var(--orange-400);
  padding-left: 10px;
}
.mobile-panel .btn-primary{ margin-top:28px; justify-content:center; }

/* ===================================================================
   HERO
=================================================================== */
.hero{
  position: relative;
  padding: 84px 0 110px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(243,130,33,.22), transparent 60%),
    radial-gradient(700px 500px at -10% 60%, rgba(42,134,188,.22), transparent 60%);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0 1px, transparent 1px 64px);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items:center;
}
.hero-copy .eyebrow{ color: var(--orange-400); }
.hero-copy h1{
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  max-width: 620px;
}
.hero-copy h1 span{ color: var(--orange-500); }
.hero-copy p.lead{
  color: rgba(255,255,255,.78);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 40px; }

.hero-points{
  display:flex; flex-wrap:wrap; gap: 22px 34px;
  list-style:none; margin:0; padding:0;
}
.hero-points li{
  display:flex; align-items:center; gap:10px;
  color: rgba(255,255,255,.85);
  font-size:.92rem; font-weight:500;
}
.hero-points i{ color: var(--orange-500); }

/* ===================================================================
   HERO VISUAL - decorated logo showcase (signature element)
=================================================================== */
.logo-orbit{
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.orbit-ring{
  position:absolute; inset:0;
  border-radius:50%;
  border: 1.5px dashed rgba(255,255,255,.18);
}
.orbit-ring.ring-2{
  inset: 42px;
  border-style: solid;
  border-color: rgba(243,130,33,.3);
}
.logo-disc{
  position:absolute; inset: 17%;
  border-radius:50%;
  background: var(--glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg), inset 0 0 50px rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:center;
  padding: 14%;
}
.logo-disc img{
  width:100%; height:auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.4));
}
.orbit-badge{
  position:absolute;
  width:64px; height:64px;
  border-radius:50%;
  background: var(--glass-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border:1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  color: var(--orange-400);
  font-size:1.3rem;
  box-shadow: var(--shadow-md);
  animation: floaty 4.5s ease-in-out infinite;
  cursor:pointer;
  z-index: 5;
  transition: transform .25s ease, width .25s ease, height .25s ease,
              border-radius .25s ease, background .25s ease, box-shadow .25s ease;
}
.orbit-label{
  position:absolute;
  bottom:-26px;
  left:50%;
  transform: translateX(-50%);
  white-space:nowrap;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.02em;
  color: var(--white);
  background: rgba(7,31,48,.9);
  border:1px solid var(--glass-border);
  padding:3px 10px;
  border-radius:999px;
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
}
.orbit-badge:hover,
.orbit-badge:focus-visible,
.orbit-badge.active{
  animation-play-state: paused;
  transform: scale(1.18);
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 16px 34px -10px rgba(243,130,33,.55);
}
.orbit-badge:hover .orbit-label,
.orbit-badge:focus-visible .orbit-label,
.orbit-badge.active .orbit-label{
  opacity:1;
  transform: translateX(-50%) translateY(2px);
}
.badge-1{ top:-14px; left:50%; margin-left:-32px; }
.badge-2{ right:-14px; top:50%; margin-top:-32px; animation-delay: 1.1s; }
.badge-3{ bottom:-14px; left:50%; margin-left:-32px; animation-delay: 2.2s; }
.badge-4{ left:-14px; top:50%; margin-top:-32px; animation-delay: 3.3s; }

@keyframes floaty{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* ===================================================================
   ABOUT / O QUE SOMOS
=================================================================== */
.about-grid{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items:flex-start;
}
.about-text p{ font-size:1.05rem; }
.about-list{ list-style:none; margin: 24px 0 0; padding:0; display:flex; flex-direction:column; gap:14px; }
.about-list li{ display:flex; gap:12px; align-items:flex-start; color:var(--text-1); font-weight:500; }
.about-list i{ color: var(--orange-500); margin-top:3px; }

.about-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.about-card{
  border-radius: var(--radius-md);
  overflow:hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.about-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--glass-strong); }
.about-card .img-wrap{ aspect-ratio: 16 / 10; overflow:hidden; position:relative; }
.about-card .img-wrap img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.about-card:hover .img-wrap img{ transform: scale(1.08); }
.about-card .img-fallback-icon{
  display:none;
  position:absolute; inset:0;
  align-items:center; justify-content:center;
  font-size:1.8rem;
  color: var(--orange-400);
  background:
    radial-gradient(120% 140% at 20% 15%, rgba(243,130,33,.20), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.about-card .img-wrap.img-fallback .img-fallback-icon{ display:flex; }
.about-card .about-card-body{ padding: 16px 18px 20px; }
.about-card h3{ font-size:1rem; margin-bottom:4px; color: var(--text-1); }
.about-card p{ font-size:.88rem; margin:0; color: var(--text-3); }

/* ===================================================================
   REVIEWS / AVALIAÇÕES (carrossel infinito)
=================================================================== */
.reviews-section .section-head{ margin-bottom: 40px; }

.reviews-carousel{
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.reviews-carousel.dragging{ cursor: grabbing; }

.reviews-track{
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 4px 0;
  transform: translateX(-33.3333%);
  animation: reviews-scroll 55s linear infinite;
}
.reviews-carousel.paused .reviews-track{ animation-play-state: paused; }
.reviews-track.no-anim{ animation: none; }

@keyframes reviews-scroll{
  from{ transform: translateX(-33.3333%); }
  to{ transform: translateX(-66.6666%); }
}

.review-card{
  flex: 0 0 auto;
  width: 300px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  user-select: none;
}
.review-stars{
  color: var(--orange-500);
  font-size: .9rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review-text{
  font-size: .92rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.55;
}

/* ===================================================================
   SERVICES
=================================================================== */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--glass-strong);
}
.service-icon{
  width:56px; height:56px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--orange-500), var(--blue-600));
  color:var(--white);
  font-size:1.3rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.service-card h3{
  font-size:1.02rem;
  letter-spacing:.02em;
  color: var(--text-1);
}
.service-card p{ font-size:.9rem; margin:0; color: var(--text-3); }

/* ===================================================================
   CONTACT
=================================================================== */
.contact-section{
  background: linear-gradient(160deg, rgba(243,130,33,.14), rgba(17,81,124,.3));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 64px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.contact-section::before{
  content:"";
  position:absolute; width:340px; height:340px; border-radius:50%;
  background: rgba(243,130,33,.18);
  filter: blur(20px);
  top:-120px; right:-100px;
}
.contact-copy .eyebrow{ color: var(--orange-400); }
.contact-copy h2{ color:var(--white); }
.contact-copy p{ color: rgba(255,255,255,.78); font-size:1.05rem; }

.contact-list{ list-style:none; margin:24px 0 0; padding:0; display:flex; flex-direction:column; gap:16px; }
.contact-list li{ display:flex; align-items:center; gap:14px; color:var(--white); }
.contact-list i{
  width:40px; height:40px; border-radius:10px;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  color: var(--orange-400);
}
.contact-list a{ color:var(--white); font-weight:600; }
.contact-list span.muted{ color: rgba(255,255,255,.6); font-size:.82rem; display:block; }

.contact-card{
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 34px;
  padding-bottom: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.contact-card h3{ font-size:1.2rem; color: var(--text-1); }
.contact-card p{ font-size:.92rem; color: var(--text-3); }
.contact-card .btn-primary{ width:100%; justify-content:center; margin-top:8px; }
.contact-hours{ margin-top:22px; padding-top:18px; border-top:1px solid var(--glass-border); }
.contact-hours div{ display:flex; justify-content:space-between; gap:12px; font-size:.88rem; color:var(--text-3); padding:4px 0; }
.contact-hours strong{ color: var(--text-1); flex-shrink:0; }

/* floating whatsapp */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 60px; height:60px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.6rem;
  box-shadow: 0 14px 30px -10px rgba(243,130,33,.6);
  transition: transform .25s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }

/* ===================================================================
   FOOTER
=================================================================== */
footer{
  background: rgba(4,17,28,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img{ height:52px; margin-bottom:14px; border-radius:8px; }
.footer-brand p{ color: rgba(255,255,255,.6); font-size:.9rem; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s ease;
}
.footer-social a:hover{ background: var(--orange-500); }

.footer-col h4{
  color: var(--white);
  font-size:.85rem;
  text-transform: uppercase;
  letter-spacing:.08em;
  margin-bottom:18px;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.footer-col a{ color: rgba(255,255,255,.65); font-size:.92rem; transition: color .2s ease; }
.footer-col a:hover{ color: var(--orange-400); }
.footer-col li{ display:flex; gap:8px; align-items:flex-start; font-size:.9rem; color:rgba(255,255,255,.65); }
.footer-col li i{ color: var(--orange-400); margin-top:4px; }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 0 28px;
  font-size:.8rem;
  color: rgba(255,255,255,.45);
  flex-wrap:wrap; gap:10px;
}
.footer-bottom a{ color: rgba(255,255,255,.6); }

/* ===================================================================
   RESPONSIVE
=================================================================== */

/* Tablets e telas médias: ainda com nav completo até 1024px */
@media (max-width: 1024px){
  .nav-links{ gap: 22px; }
  .about-cards{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Nav vira hambúrguer */
@media (max-width: 980px){
  .nav-links, .nav-cta .btn-outline{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-grid{ grid-template-columns: 1fr; gap: 48px; }
  .logo-orbit{ max-width: 300px; }
  .about-grid{ grid-template-columns: 1fr; gap:32px; }
  .contact-section{ grid-template-columns: 1fr; padding: 44px 28px; }
}

@media (max-width: 768px){
  .container{ padding: 0 20px; }
  .section{ padding: 52px 0; }
  .section-head{ margin-bottom: 28px; }
  .hero{ padding: 40px 0 48px; }
  .about-grid{ gap: 28px; }
  .about-text p{ font-size: .95rem; margin-bottom: .7em; }
  .about-list{ margin-top: 16px; gap: 10px; }
  .about-cards{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 28px; }
  .review-card{ width: 260px; padding: 20px 18px; }
  .reviews-carousel{
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
  }
}

@media (max-width: 620px){
  .section{ padding: 40px 0; }
  .container{ padding: 0 18px; }

  /* Header: CTA de WhatsApp continua visível, só menor, ao lado do hambúrguer */
  .nav-cta{ gap: 8px; }
  .nav-cta .btn-primary{
    padding: 11px 13px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .nav-cta .btn-primary .btn-text{ display:none; }
  .nav-cta .btn-primary i{ font-size: 1.15rem; }
  .brand img{ height:38px; }
  section[id], #topo{ scroll-margin-top: 74px; }

  .hero{ padding: 32px 0 40px; }
  .hero-actions{ flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn{ justify-content:center; width:100%; }
  .hero-points{ gap:12px 20px; }
  .logo-orbit{ max-width: 190px; margin-top: -8px; }

  .about-grid{ gap: 22px; }
  .about-text h2{ margin-bottom: .35em; }
  .about-text p{ font-size: .92rem; margin-bottom: .6em; }
  .about-list{ margin-top: 14px; gap: 8px; }

  /* Cards de "Sobre" e "Serviços" viram carrossel horizontal arrastável no mobile */
  .about-cards, .services-grid{
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 6px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .about-cards::-webkit-scrollbar, .services-grid::-webkit-scrollbar{ display:none; }
  .about-cards{ scrollbar-width: none; }
  .services-grid{ scrollbar-width: none; }

  .about-card{
    flex: 0 0 auto;
    width: 66%;
    scroll-snap-align: start;
  }
  .about-card .img-wrap{ aspect-ratio: 16 / 9; }
  .about-card .about-card-body{ padding: 12px 14px 14px; }
  .about-card h3{ font-size: .92rem; }
  .about-card p{ font-size: .8rem; }

  .service-card{
    flex: 0 0 auto;
    width: 78%;
    scroll-snap-align: start;
  }

  .contact-section{ padding: 32px 20px; }
  .contact-card{ padding: 26px 22px; }
  #contato{ padding-bottom: 96px; }

  .review-card{ width: 240px; padding: 18px 16px; }
  .reviews-track{ gap: 14px; animation-duration: 42s; }
  .review-text{ font-size: .88rem; }

  .footer-grid{ grid-template-columns: 1fr; gap:28px; }
  .footer-bottom{ flex-direction: column; align-items:flex-start; gap:6px; }

  .whatsapp-float{ width:52px; height:52px; font-size:1.4rem; right:16px; bottom:16px; }
  .orbit-badge{ width:48px; height:48px; font-size:1rem; }
  .orbit-badge:hover, .orbit-badge:focus-visible, .orbit-badge.active{ transform: scale(1.12); }
  .orbit-label{ font-size:.66rem; bottom:-24px; }
}

/* Celulares pequenos (iPhone SE e similares) */
@media (max-width: 480px){
  .section-head h2{ font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .hero-copy h1{ font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-copy p.lead{ font-size: 1rem; }
  .contact-copy h2{ font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .service-card{ padding: 24px 20px; width: 84%; }
  .contact-list li{ align-items:flex-start; }
  .about-card{ width: 78%; }
  .about-card .img-wrap{ aspect-ratio: 16 / 9; }
}

@media (max-width: 360px){
  .container{ padding: 0 14px; }
  .btn{ padding: 13px 20px; font-size: .88rem; }
  .brand img{ height:34px; }
  .nav-cta{ gap: 6px; }
  .logo-orbit{ max-width: 170px; }
  .orbit-badge{ width:38px; height:38px; font-size:.8rem; }
  .orbit-label{ font-size:.6rem; bottom:-22px; padding:2px 8px; }
  .hero-copy h1{ font-size: clamp(1.6rem, 9vw, 2rem); }
  .review-card{ width: 210px; }
  .about-cards, .services-grid{ margin: 0 -14px; padding-left: 14px; padding-right: 14px; }
  .about-card{ width: 82%; }
  .service-card{ width: 88%; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}