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

:root {
  --orange:     #e65100;
  --orange-2:   #ff6f00;
  --orange-lt:  #fff3e0;
  --blue:       #1565c0;
  --dark:       #111827;
  --dark2:      #1f2937;
  --gray:       #6b7280;
  --gray-lt:    #f3f4f6;
  --white:      #ffffff;
  --radius:     14px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--dark2);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 7px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar-left { font-size: .75rem; }
.topbar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-right a { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.75); transition: color .2s; }
.topbar-right a:hover { color: var(--orange-2); }

/* ─── HEADER ─── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-brand { display: flex; flex-direction: column; line-height: 1; }

.logo-script {
  font-family: 'Pacifico', cursive;
  font-size: 1.75rem;
  line-height: 1.1;
  /* O colorido no "o" usando background-clip */
  background: linear-gradient(90deg,
    #1a1a1a 0%, #1a1a1a 52%,
    #e53935 52%, #e53935 60%,
    #fdd835 60%, #fdd835 68%,
    #43a047 68%, #43a047 76%,
    #1e88e5 76%, #1e88e5 84%,
    #1a1a1a 84%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-script.light {
  background: linear-gradient(90deg,
    #ffffff 0%, #ffffff 52%,
    #e53935 52%, #e53935 60%,
    #fdd835 60%, #fdd835 68%,
    #43a047 68%, #43a047 76%,
    #1e88e5 76%, #1e88e5 84%,
    #ffffff 84%
  );
  -webkit-background-clip: text;
  background-clip: text;
}
.logo-tagline {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 2px;
}
.logo-tagline.light { color: rgba(255,255,255,.5); }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: .875rem; font-weight: 500; color: var(--gray); transition: color .2s, background .2s; }
.nav-link:hover, .nav-link.active { color: var(--orange); background: var(--orange-lt); }

.btn-cta {
  display: flex; align-items: center; gap: 7px;
  background: var(--orange); color: white;
  padding: 10px 20px; border-radius: 10px;
  font-size: .85rem; font-weight: 600;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--orange-2); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* ─── HERO ─── */
.hero { position: relative; overflow: hidden; }

.hero-slides { position: relative; }
.hero-slide {
  min-height: 580px;
  display: flex; align-items: center;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,15,30,.88) 0%, rgba(10,15,30,.65) 55%, rgba(10,15,30,.2) 100%);
}
.slide-content {
  position: relative; z-index: 1;
  padding: 80px 24px;
}
.slide-text { max-width: 620px; }

.slide-tag {
  display: inline-block;
  background: var(--orange); color: white;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 20px;
}

.slide-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.12; color: white;
  margin-bottom: 18px;
}
.slide-text h1 span { color: var(--orange-2); }

.slide-text p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 500px; margin-bottom: 32px; }

.slide-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: white;
  padding: 15px 28px; border-radius: 12px;
  font-size: .95rem; font-weight: 700;
  transition: background .2s, transform .15s;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.btn-hero-primary:hover { background: #1ebe59; transform: translateY(-2px); }

.btn-hero-secondary {
  display: inline-flex; align-items: center;
  padding: 15px 24px; border-radius: 12px;
  font-size: .95rem; font-weight: 600; color: white;
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color .2s, background .2s;
}
.btn-hero-secondary:hover { border-color: white; background: rgba(255,255,255,.1); }

/* STATS BAR */
.hero-stats {
  background: var(--white);
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.stats-inner {
  display: flex; align-items: center;
  padding: 24px 24px;
  gap: 0;
}
.stat { flex: 1; text-align: center; padding: 0 16px; }
.stat strong { display: block; font-size: 1.4rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat span { font-size: .8rem; color: var(--gray); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: #e5e7eb; flex-shrink: 0; }

/* ─── SECTIONS ─── */
.section { padding: 88px 0; }
.bg-light { background: var(--gray-lt); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--orange-lt); color: var(--orange);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 12px;
}
.section-tag.light { background: rgba(255,255,255,.2); color: rgba(255,255,255,.9); }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }
.section-header p { color: var(--gray); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ─── SERVICE CARDS ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.svc-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card.featured { border: 2px solid var(--blue); }

.svc-img {
  height: 160px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.svc-img::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.svc-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: white;
  font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
}

.svc-body { padding: 24px 28px 28px; }
.svc-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.svc-body p { font-size: .875rem; color: var(--gray); margin-bottom: 16px; }

.svc-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 6px; }
.svc-list li { font-size: .85rem; color: var(--dark2); display: flex; align-items: center; gap: 8px; }
.svc-list li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: .9rem; }

.svc-btn {
  display: inline-flex; align-items: center;
  background: var(--orange); color: white;
  padding: 10px 22px; border-radius: 10px;
  font-size: .85rem; font-weight: 700;
  transition: background .2s, transform .15s;
}
.svc-btn:hover { background: var(--orange-2); transform: translateX(3px); }
.svc-card.featured .svc-btn { background: var(--blue); }
.svc-card.featured .svc-btn:hover { background: #1976d2; }

/* ─── GRÁFICA ─── */
.grafica-section {
  position: relative; padding: 88px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #e65100 150%);
  color: white; overflow: hidden;
}
.grafica-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(230,81,0,.35) 0%, transparent 55%);
}
.grafica-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.grafica-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; margin: 12px 0 16px; }
.grafica-content p { opacity: .85; margin-bottom: 28px; font-size: .95rem; }

.btn-white {
  display: inline-flex; align-items: center;
  background: white; color: var(--orange);
  padding: 14px 28px; border-radius: 12px;
  font-size: .95rem; font-weight: 700;
  transition: background .2s, transform .15s;
}
.btn-white:hover { background: var(--orange-lt); transform: translateY(-2px); }

.grafica-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.g-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 14px 16px;
  font-size: .875rem; font-weight: 500;
  transition: background .2s;
}
.g-item:hover { background: rgba(255,255,255,.18); }
.g-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ─── MANUTENÇÃO ─── */
.manutencao-section { padding: 88px 0; background: var(--white); }
.manutencao-inner { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center; }

.manut-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.manut-circle {
  width: 160px; height: 160px;
  background: var(--orange-lt);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.manut-badge {
  background: var(--orange); color: white;
  font-size: .8rem; font-weight: 700;
  padding: 6px 16px; border-radius: 20px;
}

.manut-text { max-width: 560px; }
.manut-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin: 10px 0 24px; }
.manut-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.manut-item { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 500; color: var(--dark2); }
.manut-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-lt); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}

.btn-orange {
  display: inline-flex; align-items: center;
  background: var(--orange); color: white;
  padding: 14px 28px; border-radius: 12px;
  font-size: .95rem; font-weight: 700;
  transition: background .2s, transform .15s;
}
.btn-orange:hover { background: var(--orange-2); transform: translateY(-2px); }

/* ─── PRODUTOS ─── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
  transition: transform .2s, box-shadow .2s;
}
.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.prod-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
}
.prod-body h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.prod-body p { font-size: .8rem; color: var(--gray); }

/* ─── SOBRE ─── */
.sobre-section { padding: 88px 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.sobre-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin: 10px 0 20px; }
.sobre-text p { color: var(--gray); font-size: .95rem; margin-bottom: 16px; }
.sobre-text strong { color: var(--dark); }

.sobre-info { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.info-row div { display: flex; flex-direction: column; gap: 2px; }
.info-row strong { font-size: .85rem; font-weight: 700; color: var(--dark); }
.info-row span, .info-row a { font-size: .9rem; color: var(--gray); }
.info-row a { color: var(--orange); }
.info-row a:hover { text-decoration: underline; }

.sobre-map-col { position: sticky; top: 88px; }
.map-wrapper { height: 380px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; color: var(--orange); font-weight: 600; font-size: .875rem;
}
.map-btn:hover { text-decoration: underline; }

/* ─── CONTATO ─── */
.contato-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ctcard {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
  transition: transform .2s, box-shadow .2s;
}
.ctcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ctcard.wpp { border-top: 3px solid #25d366; }
.ctcard.insta { border-top: 3px solid #c13584; }
.ctcard.tel  { border-top: 3px solid var(--orange); }

.ctcard-icon { flex-shrink: 0; }
.ctcard.wpp .ctcard-icon { color: #25d366; }
.ctcard.insta .ctcard-icon { color: #c13584; }
.ctcard.tel  .ctcard-icon { color: var(--orange); }

.ctcard-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ctcard-text strong { font-size: .95rem; font-weight: 700; }
.ctcard-text span { font-size: .85rem; color: var(--gray); }
.ctcard-text em { font-style: normal; font-size: .75rem; color: var(--orange); font-weight: 600; }

.ctcard-arrow { color: var(--gray); font-size: 1.2rem; transition: transform .2s; }
.ctcard:hover .ctcard-arrow { transform: translateX(4px); color: var(--orange); }

/* ─── FOOTER ─── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }

.footer-brand .footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: white;
  transition: background .2s;
}
.footer-socials a:hover { background: var(--orange); }

.footer-col h4 { font-size: .9rem; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: .85rem; }
.footer-col ul a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul a:hover { color: var(--orange-2); }

.footer-contact li { font-size: .85rem; }
.footer-contact a { color: var(--orange-2) !important; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ─── WPP FLOAT ─── */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s;
}
.wpp-float:hover { transform: scale(1.1); }
.wpp-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%; border: 3px solid #25d366;
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse { 0%{opacity:.8;transform:scale(1)} 100%{opacity:0;transform:scale(1.5)} }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .grafica-inner { grid-template-columns: 1fr; }
  .manutencao-inner { grid-template-columns: 1fr; text-align: center; }
  .manut-items { justify-items: center; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-map-col { position: static; }
  .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: white; padding: 12px 20px 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    z-index: 100;
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 8px; font-size: 1rem; border-bottom: 1px solid #f3f4f6; border-radius: 0; }
  .btn-cta { display: none; }
  .hamburger { display: flex; }
  .header-inner { position: relative; }

  .hero-slide { min-height: 480px; }
  .slide-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; text-align: center; }

  .stats-inner { flex-wrap: wrap; gap: 16px; }
  .stat { flex: 1; min-width: 100px; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .manut-items { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .grafica-grid { grid-template-columns: 1fr; }
}
