/* ===================== TOKENS ===================== */
:root{
  --black: #0a0a0a;
  --black-2: #131313;
  --black-3: #1c1c1c;
  --steel: #2a2a2a;
  --steel-2: #3a3a3a;
  --white: #f6f6f4;
  --gray: #a8a8a8;
  --gray-dim: #7a7a7a;

  --orange: #ff7a1a;
  --orange-2: #ffab52;
  --orange-deep: #e05e00;

  --font-head: 'Rajdhani', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-lg: 0 24px 50px -20px rgba(0,0,0,.6);
  --ease: cubic-bezier(.22,1,.36,1);
  --mcb-h: 68px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  padding-bottom: var(--mcb-h);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
.container{ width:100%; max-width:1200px; margin:0 auto; padding:0 20px; }

h1,h2,h3{ font-family: var(--font-head); font-weight:700; letter-spacing:.01em; margin:0; }
h2{ font-size: clamp(1.7rem, 6vw, 2.6rem); }
h3{ font-size: 1.2rem; }
p{ margin:0; color: var(--gray); }

::selection{ background: var(--orange); color:#111; }

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 24px; border-radius: 14px;
  font-family: var(--font-head); font-weight:700; font-size:1rem; letter-spacing:.02em;
  border: none; cursor:pointer;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn .ic{ width:20px; height:20px; flex-shrink:0; }
.btn-primary{
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color:#160b02;
  box-shadow: 0 8px 22px -8px rgba(255,122,26,.7);
}
.btn-primary:active{ transform: scale(.97); }
.btn-ghost{
  background: rgba(255,255,255,.04); color: var(--white);
  border: 1.5px solid var(--steel-2);
}
.btn-ghost:active{ transform: scale(.97); border-color: var(--orange); }
.btn-dark{ background: var(--black); color: var(--orange-2); box-shadow: var(--shadow-lg); }
.btn-lg{ padding: 17px 28px; font-size: 1.05rem; }
.btn-block{ width:100%; }
@media (hover:hover){
  .btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(255,122,26,.9); }
  .btn-ghost:hover{ border-color: var(--orange); color: var(--orange-2); transform: translateY(-2px); }
}

/* ===================== HEADER ===================== */
.site-header{
  position: sticky; top:0; z-index: 150;
  backdrop-filter: blur(14px);
  background: rgba(10,10,10,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled{
  background: rgba(10,10,10,.96);
  box-shadow: 0 12px 30px -20px rgba(0,0,0,.8);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 20px; gap: 16px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; min-width:0; }
.brand-logo{
  width:42px; height:42px; border-radius:50%; object-fit:cover;
  border: 2px solid var(--orange); flex-shrink:0;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; font-family: var(--font-head); overflow:hidden; }
.brand-text strong{ font-size:.98rem; letter-spacing:.02em; color:var(--white); white-space:nowrap; }
.brand-text small{ font-size:.58rem; letter-spacing:.1em; color: var(--orange-2); white-space:nowrap; }

.main-nav{ display:flex; gap:30px; margin-left:auto; }
.main-nav a{
  font-family: var(--font-head); font-weight:600; font-size:.95rem;
  color: var(--gray); letter-spacing:.02em; position:relative;
  padding: 4px 0; transition: color .2s;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background: var(--orange); transition: width .25s var(--ease);
}
.main-nav a:hover{ color: var(--white); }
.main-nav a:hover::after{ width:100%; }

.header-cta{ margin-left: 16px; padding: 11px 18px; font-size:.92rem; }
.header-cta .ic{ color:#160b02; width:16px; height:16px; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ width:22px; height:2px; background: var(--white); border-radius:2px; }

/* ===================== HERO ===================== */
.hero{ position:relative; padding: 36px 0 40px; overflow:hidden; }
.hero-bg{ position:absolute; inset:0; z-index:-1; }
.hero-bg-img{ width:100%; height:100%; object-fit:cover; }
.hero-bg-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.88) 55%, var(--black) 100%),
    linear-gradient(90deg, rgba(10,10,10,.75), rgba(10,10,10,.4));
}
.hero-inner{ position:relative; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-head); font-weight:700; font-size:.75rem;
  letter-spacing:.16em; text-transform:uppercase; color: var(--orange-2);
}
.eyebrow::before{ content:''; width:22px; height:2px; background: var(--orange); border-radius:2px; }

.hero-text h1{
  margin: 16px 0 16px; font-size: clamp(2rem, 8vw, 3.2rem); line-height:1.1; color: var(--white);
}
.hero-text h1 .accent{ color: var(--orange); }
.hero-sub{ font-size:1rem; margin-bottom:20px; max-width: 640px; }

.hero-rating{ display:flex; align-items:center; gap:10px; margin-bottom:26px; font-size:.92rem; color:var(--gray); flex-wrap:wrap; }
.hero-rating strong{ color:var(--white); }

.hero-actions{ display:flex; flex-direction:column; gap:12px; margin-bottom:34px; max-width: 420px; }

.hero-stats{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.stat p{ font-size:.8rem; margin-top:2px; max-width:150px; }
.stat-num{ font-family: var(--font-head); font-size:1.8rem; font-weight:700; color: var(--orange); }
.stat-divider{ width:1px; height:38px; background: var(--steel-2); }
.stars{ color: var(--orange); letter-spacing:2px; font-size:.9rem; }
.stars-lg{ font-size:1.4rem; letter-spacing:3px; }

/* ===================== MARQUEE / CARROSSEL ===================== */
.marquee-strip{
  position: relative;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  overflow:hidden; padding: 14px 0;
}
.marquee-track{ display:flex; width:max-content; animation: marquee 26s linear infinite; }
.marquee-set{ display:flex; gap:10px; flex-shrink:0; padding-right:10px; }
.chip{
  display:inline-flex; align-items:center; gap:9px;
  background: transparent;
  border: none;
  border-radius: 999px; padding: 6px 14px;
  font-family: var(--font-head); font-weight:700; letter-spacing:.04em; font-size:.82rem;
  color:#160b02; white-space:nowrap;
}
.chip svg{ width:16px; height:16px; color:#160b02; flex-shrink:0; }
.chip:not(:last-child)::after{
  content:''; width:5px; height:5px; border-radius:50%; background:#160b02; opacity:.55;
  margin-left:10px;
}
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation-duration: 90s; } }

/* ===================== SECTIONS ===================== */
.section{ padding: 64px 0; position:relative; }
.section-alt{ background: linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent); }
#servicos{
  background-image:
    linear-gradient(180deg, var(--black) 0%, rgba(10,10,10,.93) 40%, var(--black) 100%),
    url('../img/tools-wall.jpg');
  background-size: cover;
  background-position: center;
}
.section-head{ max-width:640px; margin: 0 auto 36px; text-align:center; }
.section-head p{ margin-top:12px; font-size:.98rem; }
.section-head .eyebrow{ justify-content:center; }
.section-head h2{ margin-top:12px; color: var(--white); }

/* reveal animation — subtle, one-shot, off on reduced motion */
[data-reveal]{ opacity:0; transform: translateY(14px); transition: opacity .5s ease-out, transform .5s ease-out; }
[data-reveal].in-view{ opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
}

/* ===================== SERVICES ===================== */
.services-grid{ display:grid; grid-template-columns: 1fr; gap: 14px; }
.service-card{
  background: linear-gradient(180deg, var(--black-2), var(--black-3));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display:flex; align-items:flex-start; gap:16px;
}
.service-icon{
  width:48px; height:48px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(255,122,26,.18), rgba(255,122,26,.03));
  display:flex; align-items:center; justify-content:center;
  color: var(--orange); flex-shrink:0;
}
.service-icon svg{ width:24px; height:24px; }
.service-card h3{ color: var(--white); margin-bottom:6px; }
.service-card p{ font-size:.92rem; }
@media (hover:hover){
  .service-card{ transition: transform .3s var(--ease), border-color .3s; }
  .service-card:hover{ transform: translateY(-4px); border-color: rgba(255,122,26,.35); }
}
.services-cta{ margin-top: 30px; max-width: 420px; margin-left:auto; margin-right:auto; }

/* ===================== ABOUT ===================== */
.about-grid{ display:grid; grid-template-columns: 1fr; gap: 34px; align-items:center; }
.about-visual{ position:relative; max-width: 420px; margin: 0 auto; width:100%; }
.about-photo{
  width:100%; aspect-ratio: 4/3; object-fit:cover;
  border-radius: var(--radius-lg); border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.about-photo-badge{
  position:absolute; bottom:-16px; right:-10px; width:74px; height:74px;
  border-radius:50%; background: var(--black); border:3px solid var(--orange);
  padding:4px; box-shadow: var(--shadow-lg);
}
.about-photo-badge img{ width:100%; height:100%; border-radius:50%; object-fit:cover; }
.about-text h2{ color: var(--white); margin: 12px 0 16px; }
.about-text > p{ font-size:.98rem; margin-bottom: 22px; }
.about-list{ display:flex; flex-direction:column; gap:12px; margin-bottom: 28px; }
.about-list li{ display:flex; align-items:flex-start; gap:10px; color: var(--white); font-size:.94rem; }
.about-list svg{ width:20px; height:20px; color: var(--orange); flex-shrink:0; margin-top:1px; }

.payment-methods{
  background: var(--black-2); border:1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 20px 20px;
}
.pm-title{ font-family: var(--font-head); font-weight:700; color: var(--orange-2); font-size:.8rem; letter-spacing:.05em; text-transform:uppercase; }
.pm-badges{ display:flex; flex-wrap:wrap; gap:8px; margin: 12px 0 8px; }
.pm-badge{
  background: var(--black-3); border:1px solid var(--steel-2); color: var(--white);
  padding: 7px 12px; border-radius: 999px; font-size:.8rem; font-weight:600;
}
.payment-methods small{ color: var(--gray-dim); font-size:.72rem; }

/* ===================== REVIEWS ===================== */
.rating-number{ font-family: var(--font-head); font-size:1.7rem; font-weight:700; color: var(--white); }

.g-stars{ display:inline-flex; gap:3px; color:#FFB400; }
.g-stars svg{ width:16px; height:16px; }
.g-stars-lg svg{ width:22px; height:22px; }

.google-card{
  max-width: 460px; margin: 0 auto 40px;
  background: var(--black-2); border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 22px 24px;
  box-shadow: var(--shadow-lg);
}
.google-card-top{ display:flex; align-items:center; gap:16px; }
.g-logo{ width:38px; height:38px; flex-shrink:0; }
.google-card-numrow{ display:flex; align-items:center; gap:10px; }
.google-card-info p{ margin-top:4px; font-size:.88rem; }
.google-card-cta{ margin-top:18px; }

.reviews-grid{ display:grid; grid-template-columns: 1fr; gap: 14px; }
.review-card{
  background: var(--black-2); border:1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg); padding: 22px;
}
.review-head{ display:flex; align-items:center; gap:12px; }
.review-avatar{
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-head); font-weight:700; font-size:.9rem; color:#160b02;
}
.review-head-text{ min-width:0; }
.review-author{ display:block; font-family: var(--font-head); font-weight:700; color: var(--white); font-size:.92rem; }
.review-meta{ display:flex; align-items:center; gap:8px; margin-top:2px; }
.g-logo-mini{ width:14px; height:14px; flex-shrink:0; }
.review-card p{ color: var(--gray); font-size:.94rem; margin: 14px 0 0; line-height:1.55; }

/* ===================== CTA STRIP ===================== */
.cta-strip{ position:relative; margin: 8px 0; overflow:hidden; }
.cta-strip-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.cta-strip-overlay{
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(224,94,0,.94), rgba(255,122,26,.9));
}
.cta-strip-inner{
  position:relative;
  display:flex; flex-direction:column; align-items:flex-start; gap:22px;
  padding: 44px 20px;
}
.cta-strip h2{ color:#160b02; font-size: clamp(1.4rem, 6vw, 2.1rem); }
.cta-strip p{ color: rgba(22,11,2,.75); margin-top:8px; font-size:.98rem; }
.cta-strip .btn-primary{ background: var(--black); color:var(--orange-2); box-shadow: var(--shadow-lg); }

/* ===================== LOCATION ===================== */
.location-grid{ display:grid; grid-template-columns: 1fr; gap: 30px; }
.info-block{ display:flex; gap:14px; margin-bottom: 22px; }
.info-block .ic{ width:22px; height:22px; color: var(--orange); flex-shrink:0; margin-top:2px; }
.info-block strong{ display:block; color: var(--white); font-family: var(--font-head); font-size:1rem; margin-bottom:4px; }
.info-block a:active{ color: var(--orange-2); }
.hours-table{ border-collapse: collapse; margin-top:6px; }
.hours-table td{ padding: 3px 0; font-size:.9rem; color: var(--gray); }
.hours-table td:first-child{ padding-right: 16px; color: var(--white); font-weight:500; }

.location-actions{ display:flex; flex-direction:column; gap:12px; margin: 6px 0 26px; max-width:420px; }

.social-row{ display:flex; gap:12px; }
.social-row a{
  width:44px; height:44px; border-radius:50%; background: var(--black-2);
  border:1px solid var(--steel-2); display:flex; align-items:center; justify-content:center;
  color: var(--white); transition: background .2s, color .2s, border-color .2s;
}
.social-row a svg{ width:20px; height:20px; }
.social-row a:active{ background: var(--orange); color:#160b02; border-color: var(--orange); }

.location-map{
  min-height: 300px; border-radius: var(--radius-lg); overflow:hidden;
  border:1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-lg);
  filter: grayscale(.25) contrast(1.05);
}
.location-map iframe{ width:100%; height:100%; min-height:300px; }

/* ===================== FOOTER ===================== */
.site-footer{ border-top: 1px solid rgba(255,255,255,.06); padding: 32px 0; }
.footer-inner{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:18px; }
.footer-copy{ font-size:.82rem; }
.footer-links{ display:flex; gap:20px; }
.footer-links a{ font-size:.88rem; color: var(--gray); }
.footer-links a:active{ color: var(--orange-2); }

/* ===================== MOBILE STICKY CTA BAR ===================== */
.mobile-cta-bar{
  position: fixed; left:0; right:0; bottom:0; z-index: 300;
  display:flex; height: var(--mcb-h);
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(10,10,10,.97); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.6);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
  pointer-events: none;
}
.mobile-cta-bar.is-visible{
  transform: translateY(0);
  pointer-events: auto;
}
.mcb-btn{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-head); font-weight:700; font-size:.92rem;
}
.mcb-btn svg{ width:20px; height:20px; flex-shrink:0; }
.mcb-call{ flex:0 0 78px; color: var(--white); border-right: 1px solid rgba(255,255,255,.08); }
.mcb-call:active{ background: rgba(255,255,255,.06); }
.mcb-wa{
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color:#160b02;
}
.mcb-wa:active{ filter: brightness(.94); }
.mcb-call span{ display:none; }

/* ===================== WHATSAPP FAB (desktop only) ===================== */
.whatsapp-fab{
  display:none;
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 60px; height:60px; border-radius:50%;
  background: linear-gradient(135deg, #25D366, #128C4A);
  align-items:center; justify-content:center;
  color:#fff; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
}
.whatsapp-fab svg{ width:28px; height:28px; position:relative; z-index:2; }
.fab-pulse{
  position:absolute; inset:0; border-radius:50%; background: rgba(37,211,102,.55);
  animation: fabPulse 2.6s ease-out infinite;
}
@keyframes fabPulse{ 0%{ transform: scale(1); opacity:.6;} 100%{ transform: scale(1.7); opacity:0;} }
@media (prefers-reduced-motion: reduce){ .fab-pulse{ animation:none; } }

/* ===================== RESPONSIVE — TABLET & UP ===================== */
@media (min-width: 640px){
  .hero-actions{ flex-direction:row; max-width:none; }
  .btn-block{ width:auto; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
  .location-actions{ flex-direction:row; max-width:none; }
  .cta-strip-inner{ flex-direction:row; align-items:center; justify-content:space-between; padding: 50px 20px; }
  .cta-strip .btn-block{ width:auto; }
  .footer-inner{ flex-direction:row; justify-content:space-between; text-align:left; }
}

@media (min-width: 860px){
  .container{ padding: 0 24px; }
  .header-inner{ padding: 14px 24px; }
  .brand-logo{ width:48px; height:48px; }
  .brand-text strong{ font-size:1.05rem; }
  .brand-text small{ font-size:.62rem; }
  .hero{ padding: 90px 0 60px; }
  .hero-inner{ display:grid; grid-template-columns: 1.1fr .9fr; gap:40px; align-items:center; }
  .hero-bg-overlay{
    background:
      linear-gradient(90deg, rgba(10,10,10,.92) 32%, rgba(10,10,10,.55) 68%, rgba(10,10,10,.25) 100%),
      linear-gradient(180deg, rgba(10,10,10,.3), var(--black) 100%);
  }
  .about-grid{ grid-template-columns: .85fr 1.15fr; gap: 56px; }
  .about-visual{ max-width:none; }
  .location-grid{ grid-template-columns: .95fr 1.05fr; align-items:stretch; }
  .location-map{ min-height: 100%; }
  .location-map iframe{ min-height:100%; }
  .section{ padding: 96px 0; }
  .services-grid{ grid-template-columns: repeat(3, 1fr); gap:20px; }
  .reviews-grid{ grid-template-columns: repeat(3, 1fr); gap:20px; }

  /* desktop keeps a floating WhatsApp button instead of the bottom bar */
  .mobile-cta-bar{ display:none; }
  .whatsapp-fab{ display:flex; }
  body{ padding-bottom:0; }
}

@media (min-width: 1080px){
  .main-nav{ display:flex; }
}
@media (max-width: 1079px){
  .main-nav{ display:none; }
}
@media (max-width: 859px){
  .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
}
