/* ============================================
   LECORD — Design System
   ============================================ */
:root {
  --red-900: #7a0d0d;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --ink-900: #0f1116;
  --ink-800: #1a1d24;
  --ink-700: #262a33;
  --ink-500: #4b5563;
  --ink-400: #6b7280;
  --ink-200: #e5e7eb;
  --ink-100: #f3f4f6;
  --ink-50:  #fafafa;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 50px rgba(220,38,38,.18);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1200px;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Poppins', var(--font-body);
  --gradient-fire: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  --gradient-dark: linear-gradient(135deg, #0f1116 0%, #262a33 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-600); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-700); }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-500); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gradient-fire); color: #fff; box-shadow: var(--shadow-lg); }
.btn-primary:hover { transform: translateY(-2px); color: #fff; }
.btn-outline { background: transparent; color: var(--ink-900); border-color: var(--ink-200); }
.btn-outline:hover { border-color: var(--red-600); color: var(--red-600); }
.btn-light { background: #fff; color: var(--red-700); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--ink-200);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  background: var(--gradient-fire); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.02em; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--ink-800); font-weight: 500; font-size: 15px; }
.main-nav a:hover { color: var(--red-600); }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 0;
    border-bottom: 1px solid var(--ink-200); transform: translateY(-10px); opacity: 0; pointer-events: none; transition: .2s; }
  .main-nav a { padding: 14px 24px; border-bottom: 1px solid var(--ink-100); }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
}

/* Hero */
.hero {
  position: relative; padding: 90px 0 100px; overflow: hidden;
  background: var(--gradient-dark); color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(220,38,38,.35), transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(249,115,22,.25), transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { background: var(--gradient-fire); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 30px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-weight: 500; font-size: 14px; }
.hero-badge svg { color: var(--orange-400); flex-shrink: 0; }
.hero-visual {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, #7a0d0d, #f97316); box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-placeholder {
  display: flex; align-items: center; justify-content: center; height: 100%;
  font-size: 8rem; color: rgba(255,255,255,.4);
}
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; } .hero-visual { aspect-ratio: 16/10; } }

/* Sections */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .kicker {
  display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--red-600); margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 1.05rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius);
  padding: 32px 26px; transition: .25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-fire); transform: scaleX(0); transform-origin: left; transition: .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #fee2e2, #fed7aa);
  color: var(--red-600); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 8px; }

/* About */
.about { background: var(--ink-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--gradient-dark); box-shadow: var(--shadow-md); }
.about-features { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.about-features li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-800); font-weight: 500; }
.about-features li::before { content: '✓'; color: var(--red-600); font-weight: 800; font-size: 1.1rem; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* Process */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; position: relative; }
.step {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius);
  padding: 26px; text-align: center; position: relative;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-fire);
  color: #fff; font-weight: 800; font-family: var(--font-head); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}

/* Reviews */
.reviews-action{
    margin-top:50px;
    display:flex;
    justify-content:center;
}

.reviews-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    background:var(--red-600);
    color:#fff;

    font-weight:700;
    text-decoration:none;

    transition:.25s ease;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.reviews-btn:hover{

    background:#8f1111;
    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 16px 35px rgba(0,0,0,.18);

}

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.review-stars { color: #f59e0b; margin-bottom: 12px; letter-spacing: 2px; }
.review-content { font-style: italic; color: var(--ink-700); margin-bottom: 20px; }
.review-author { font-weight: 700; color: var(--ink-900); }
.review-company { font-size: 14px; color: var(--ink-400); }

/* Partners */
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; opacity: .8; }
.partners-grid img { max-height: 60px; filter: grayscale(1); transition: .2s; }
.partners-grid img:hover { filter: none; }

/* Service area */
.area { background: var(--gradient-dark); color: #fff; }
.area h2 { color: #fff; }
.area .section-head p { color: rgba(255,255,255,.75); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.area-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.area-cities span {
  background: rgba(255,255,255,.08); padding: 8px 16px; border-radius: 100px;
  font-size: 14px; border: 1px solid rgba(255,255,255,.15);
}
.area-map { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: rgba(0,0,0,.3); }
.area-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--radius-sm); overflow: hidden;
}
.faq-question {
  width: 100%; background: transparent; border: 0; padding: 20px 24px; text-align: left;
  font-size: 1.02rem; font-weight: 600; color: var(--ink-900); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-question::after { content: '+'; font-size: 1.6rem; color: var(--red-600); transition: .2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 24px; transition: .3s; color: var(--ink-500); }
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }

/* CTA */
.cta-banner {
  background: var(--gradient-fire); color: #fff; text-align: center;
  padding: 70px 20px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 24px; font-size: 1.1rem; }

/* Contact / Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info h3 { margin-bottom: 20px; }
.contact-info ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .icon { width: 40px; height: 40px; background: #fee2e2; color: var(--red-600); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
form.quote-form { background: #fff; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--ink-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--ink-800); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--ink-200); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; transition: .15s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red-600); box-shadow: 0 0 0 3px rgba(220,38,38,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.honeypot { position: absolute; left: -10000px; }
.form-message { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-weight: 500; }
.form-message.success { background: #dcfce7; color: #14532d; border: 1px solid #86efac; }
.form-message.error { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }
@media (max-width: 800px) { .contact-grid, .form-row { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,.75); padding: 70px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { font-family: var(--font-head); font-weight: 800; background: var(--gradient-fire); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0 0 14px; font-size: 1.6rem; }
.site-footer h4 { color: #fff; margin: 0 0 18px; font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.55); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* WhatsApp Float */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;

  background: #25d366;
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(37,211,102,.4);

  z-index: 999;

  transition: transform .25s;

  animation: whatsappPulse 4s infinite;
}

.whatsapp-float:hover{
  transform: scale(1.08);
  color:#fff;
  animation-play-state: paused;
}


/* Animação */

@keyframes whatsappPulse {

  0%,
  82%,
  100%{
    transform:scale(1);
    box-shadow:
      0 10px 30px rgba(37,211,102,.35);
  }

  86%{
    transform:scale(1.12);
    box-shadow:
      0 0 0 12px rgba(37,211,102,.20),
      0 10px 35px rgba(37,211,102,.45);
  }

  90%{
    transform:scale(.97);
  }

  94%{
    transform:scale(1.08);
  }

  98%{
    transform:scale(1);
    box-shadow:
      0 0 0 20px rgba(37,211,102,0),
      0 10px 30px rgba(37,211,102,.35);
  }

}

/* Page header */
.page-header {
  background: var(--gradient-dark); color: #fff; padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(220,38,38,.3), transparent 60%); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 620px; }
.breadcrumb { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.8); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================
   HERO REDESIGN — inspired by the Lecord print layout
   ========================================================== */
.hero { position: relative; padding: 0; min-height: 88vh; display: flex; align-items: stretch; overflow: hidden;
  background: #0b0d12; color: #fff; }
.hero .hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center right;
  filter: brightness(.55) contrast(1.05);
}
.hero .hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,13,18,.95) 0%, rgba(11,13,18,.7) 45%, rgba(11,13,18,.25) 100%);
}
.hero .hero-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; padding: 110px 20px 140px;
}
.hero .hero-copy { max-width: 560px; }
.hero-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: .95;
  letter-spacing: -.02em; color: #fff; text-transform: uppercase; margin: 0 0 24px;
}
.hero-title-accent {
  color: var(--red-600); display: inline-block;
  text-shadow: 0 4px 24px rgba(220,38,38,.35);
}
.hero-sub {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem); color: rgba(255,255,255,.9);
  margin: 0 0 22px; line-height: 1.3;
}
.accent-red { color: var(--red-500); font-weight: 700; }
.hero-divider { width: 60px; height: 3px; background: var(--red-600); margin: 18px 0 22px; }
.hero-badge-line {
  font-family: var(--font-head); letter-spacing: .28em; text-transform: uppercase;
  font-size: 13px; color: rgba(255,255,255,.85); margin: 0 0 32px; font-weight: 600;
}
.hero-cta { display: flex; gap: 14px; }
.hero-cta .btn-primary { padding: 16px 30px; font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; }

/* Diagonal red slash at the bottom of the hero */
.hero-slash {
  position: absolute; left: 0; right: 0; bottom: 0; height: 130px; z-index: 2;
  background: var(--red-600);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.hero-slash::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 55px;
  background: #fff; clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}

@media (max-width: 768px) {
  .hero-slash::after {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%);
  }
}
@media (max-width: 900px) {
  .hero .hero-inner { grid-template-columns: 1fr; padding: 90px 20px 160px; }
  .hero .hero-overlay {
    background: linear-gradient(180deg, rgba(11,13,18,.9), rgba(11,13,18,.55) 60%, rgba(11,13,18,.9));
  }
}

/* ==========================================================
   FEATURES STRIP — 5 red-outline icons
   ========================================================== */
.features-strip { padding: 70px 0 80px; background: #fff; }
.features-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; text-align: center;
}
.features-grid li { padding: 8px; }
.features-grid svg {
  width: 62px; height: 62px; color: var(--red-600); margin: 0 auto 18px; display: block;
}
.features-grid h4 {
  font-family: var(--font-head); font-weight: 800; font-size: 15px;
  color: var(--ink-900); letter-spacing: .04em; margin: 0 0 6px; text-transform: uppercase;
}
.features-grid p { font-size: 13px; color: var(--ink-500); margin: 0; line-height: 1.5; }
@media (max-width: 780px) { .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }

/* ==========================================================
   RED CTA BAND with diagonal white cut & WhatsApp
   ========================================================== */
.red-band {
  position: relative;
  background: var(--red-600);
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.red-band::before,
.red-band::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  height: 110px;
  background: #fff;
  z-index: 1;
}

.red-band::before {
  top: -55px;
  transform: rotate(3deg);
}

.red-band::after {
  bottom: -55px;
  transform: rotate(-3deg);
  clip-path: polygon(0 0%, 100% 20%, 100% 100%, 0 100%);
}

.red-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 110px 20px 120px;
}

.red-band-left h2 {
  font-family: var(--font-head);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin: 0 0 14px;
}

.red-band-left p {
  color: rgba(255,255,255,.92);
  max-width: 380px;
  margin: 0;
  font-size: 15px;
}

.red-band-divider {
  width: 2px;
  align-self: stretch;
  background: rgba(255,255,255,.4);
}

.red-band-right {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  transition: transform .2s;
}

.red-band-right:hover {
  color: #fff;
  transform: translateX(6px);
}

.wa-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 820px) {

  .red-band::before,
  .red-band::after {
    height: 10px;
  }


  .red-band::before {
    top:-30px;
    transform:rotate(2deg);
  }


  .red-band::after {
    bottom:-30px;
    transform:rotate(-2deg);
  }


  .red-band-inner {

    grid-template-columns:1fr;

    text-align:center;

    padding:90px 20px 90px;

    gap:35px;

  }


  .red-band-left h2 {

    font-size:1.5rem;

  }


  .red-band-left p {

    margin:0 auto;

    max-width:320px;

  }


  .red-band-right {

    justify-content:center;

    gap:15px;

    font-size:1rem;

  }


  .wa-icon {

    width:65px;

    height:65px;

  }


  .wa-icon svg {

    width:34px;

    height:34px;

  }

}

/* ==========================================================
   SERVIÇOS E PRODUTOS
   ========================================================== */
.services-products-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 60px 20px;
  max-width: 850px;
  margin: 0 auto;
}

.service-product-card {
  position: relative;
  height: 230px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 3;
}

.service-product-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.service-product-card:hover::after {
  transform: scaleX(1);
}

.service-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,.75),
    rgba(0,0,0,.2)
  );
}

.service-product-content {
  position: relative;
  z-index: 2;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: auto;
}

.service-product-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #fff;
}

.service-product-content p {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,.9);
  margin: 0 0 16px;
  height: 40px;
}

.service-product-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: .3s;
}

.service-product-card:hover .service-product-arrow {
  background: #fff;
  color: var(--red-600);
}


@media(max-width:820px) {
  .services-products-section {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 40px 20px;
    gap: 18px;
  }

  .service-product-card {
    height: 210px;
    padding: 22px;
  }

  .service-product-content h3 {
    font-size: 20px;
  }

  .service-product-content p {
    font-size: 13px;
  }

  .service-product-arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-choose { padding: 90px 0 100px; background: #fff; }
.why-choose .section-head .kicker {
  color: var(--red-600); font-weight: 700; letter-spacing: .18em; font-size: 14px;
}
.why-choose .section-head h2 {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; margin: 6px 0 0;
}
.head-underline {
  width: 60px; height: 3px; background: var(--red-600); margin: 22px auto 0;
}
.why-grid {
  margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
}
.why-item { padding: 10px; }
.why-item svg {
  width: 72px; height: 72px; color: var(--red-600); margin: 0 auto 22px; display: block;
}
.why-item h4 {
  font-family: var(--font-head); font-weight: 800; font-size: 15px;
  color: var(--ink-900); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 12px;
}
.why-item p { font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.55; }
@media (max-width: 820px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }

/* Padding tune for the DB-driven services section that follows */
.services-section { padding-top: 90px; }

/* ==========================================================
   ABOUT SECTION - QUEM SOMOS
   ========================================================== */

.about-section {
  padding: 90px 20px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
}


/* ==========================================================
   TEXTO
   ========================================================== */

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin: 15px 0 20px;
  color: var(--ink-900);
}

.about-content h2 span {
  color: var(--red-600);
}


.about-line {
  width: 70px;
  height: 4px;
  background: var(--gradient-fire);
  margin-bottom: 25px;
}


.about-content p {
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 15px;
}


/* ==========================================================
   ESTATÍSTICAS
   ========================================================== */

.about-stats {
  display: flex;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}


.about-stat {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: 14px;
  padding: 18px 22px;
  min-width: 150px;

  position: relative;
  overflow: hidden;

  transition: .3s;
}


.about-stat::before {
  content: '';
  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 4px;

  background: var(--gradient-fire);

  transform: scaleX(0);
  transform-origin: left;

  transition: .3s;
}


.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}


.about-stat:hover::before {
  transform: scaleX(1);
}


.about-stat strong {
  display: block;

  font-family: var(--font-head);
  font-size: 30px;

  color: var(--red-600);

  line-height: 1;
}


.about-stat span {
  display: block;

  font-size: 13px;
  color: var(--ink-500);

  margin-top: 8px;
}



/* ==========================================================
   IMAGEM
   ========================================================== */

.about-image {
  position: relative;
}


.about-image-box {

  height: 430px;

  border-radius: 20px;

  overflow: hidden;

  position: relative;

  background:
    linear-gradient(
      135deg,
      rgba(220,38,38,.08),
      rgba(0,0,0,.04)
    );

  border: 1px solid var(--ink-200);
}


/* efeito de camada quando tiver imagem */

.about-image-box::after {

  content:'';

  position:absolute;

  inset:0;

  pointer-events:none;
}


/* imagem futura */

.about-image-box img {

  width:100%;
  height:100%;

  object-fit:cover;

  display:block;
}



/* ==========================================================
   BADGE
   ========================================================== */

.about-badge {

  position:absolute;

  bottom:-15px;
  left:-20px;

  background:var(--red-600);

  color:#fff;

  padding:22px 30px;

  border-radius:16px;

  display:flex;
  flex-direction:column;

  box-shadow:var(--shadow-md);

  z-index:2;
}


.about-badge strong {

  font-family:var(--font-head);

  font-size:28px;

  line-height:1;
}


.about-badge span {

  font-size:13px;

  opacity:.9;

  margin-top:6px;
}



/* ==========================================================
   MOBILE
   ========================================================== */

@media(max-width:820px){


  .about-section {
    padding:60px 20px;
  }


  .about-grid {

    grid-template-columns:1fr;

    gap:45px;

  }


  .about-content {

    text-align:center;

  }


  .about-line {

    margin:0 auto 25px;

  }


  .about-content p {

    margin-left:auto;
    margin-right:auto;

  }


  .about-stats {

    justify-content:center;

    gap:12px;

  }


  .about-stat {

    min-width:130px;

    padding:16px;

  }


  .about-stat strong {

    font-size:26px;

  }


  .about-image-box {

    height:300px;

  }


  .about-badge {

    left:15px;

    bottom:-20px;

    padding:18px 22px;

  }


  .about-badge strong {

    font-size:24px;

  }


}

/* ==========================================================
   NÚMEROS
========================================================== */

.numbers-section{
    padding:90px 0;
    position:relative;
}

.numbers-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}


/* ==========================================================
   CARD
========================================================== */

.number-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    padding:38px 24px 34px;

    text-align:center;

    background:
    linear-gradient(180deg,#611313 0%,#3b0909 35%,#1b0505 100%);

    border:1px solid rgba(255,80,80,.35);

    box-shadow:
    0 15px 40px rgba(0,0,0,.12),
    inset 0 1px rgba(255,255,255,.05);

    transition:.35s ease;
}


/* brilho superior */

.number-card::before{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    top:-190px;
    left:50%;

    transform:translateX(-50%);

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,70,70,.45),
    transparent 70%);

    pointer-events:none;

}


/* brilho lateral */

.number-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,.04),
        transparent 80%
    );

    opacity:.6;

    pointer-events:none;

}


/* ==========================================================
   HOVER
========================================================== */

.number-card:hover{

    transform:translateY(-10px);

    border-color:#ff3c3c;

    box-shadow:

    0 20px 45px rgba(0,0,0,.22),

    0 0 25px rgba(255,40,40,.18);

}



/* ==========================================================
   ÍCONE
========================================================== */

.number-icon{

    width:82px;
    height:82px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    opacity:.92;

    margin-bottom:24px;

    transition:.35s;

}

.number-icon svg{

    width:72px;
    height:72px;

    stroke-linecap:round;
    stroke-linejoin:round;

}

.number-card:hover .number-icon{

    transform:scale(1.08);

}



/* ==========================================================
   MAIS DE
========================================================== */

.number-top{

    display:block;

    margin-bottom:8px;

    font-size:.82rem;

    color:#fff;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}



/* ==========================================================
   NÚMERO
========================================================== */

.number-value{

    margin-bottom:8px;

}

.counter{

    font-family:"Poppins",sans-serif;

    font-size:4.4rem;

    font-weight:800;

    line-height:1;

    color:#ff1d1d;

    text-shadow:

    0 0 15px rgba(255,0,0,.25);

}



/* ==========================================================
   CARD SEM NÚMERO
========================================================== */

.number-text-red{
    font-family:"Poppins",sans-serif;
    font-size:2.1rem;
    font-weight:800;
    color:#ff1d1d;
    line-height:1;
    text-align:center;
    max-width:100%;
}



/* ==========================================================
   TÍTULO
========================================================== */

.number-card h3{

    margin:0;

    color:#fff;

    font-size:1.45rem;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

    min-height:35px;

}



/* ==========================================================
   DESCRIÇÃO
========================================================== */

.number-card p{

    margin:14px auto 0;

    color:#d7d7d7;

    font-size:.92rem;

    line-height:1.6;

    max-width:190px;

    text-transform:uppercase;

    min-height:45px;

}



/* ==========================================================
   LINHA
========================================================== */

.number-line{

    width:70px;

    height:4px;

    border-radius:50px;

    background:#ff2a2a;

    position:absolute;

    bottom:15px;

    left:50%;

    transform:translateX(-50%);

    transition:.35s;

}

.number-card:hover .number-line{

    width:110px;

    transform:translateX(-50%);

}



/* ==========================================================
   RESPONSIVO
========================================================== */


@media(max-width:1200px){

    .numbers-grid{
        grid-template-columns:repeat(3,1fr);
        gap:20px;
    }

    .number-card{
        padding:35px 20px 70px;
    }

    .counter{
        font-size:3.8rem;
    }

}


@media(max-width:900px){

    .numbers-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .number-card{
        padding:30px 18px 65px;
    }


    .number-icon{
        width:70px;
        height:70px;
    }


    .number-icon svg{
        width:60px;
        height:60px;
    }


    .number-top{
        font-size:.75rem;
    }


    .counter{
        font-size:3.2rem;
    }


    .number-card h3{
        font-size:1.2rem;
    }


    .number-card p{
        font-size:.85rem;
    }

}



@media(max-width:600px){

    .numbers-section{
        padding:60px 0;
    }


    .numbers-grid{
        grid-template-columns:1fr;
        gap:20px;
    }


    .number-card{

        max-width:350px;

        width:100%;

        margin:auto;

        padding:35px 20px 70px;

    }


    .counter{
        font-size:3.5rem;
    }


    .number-text-red{
        font-size:1.8rem;
    }


    .number-card h3{
        font-size:1.25rem;
    }


    .number-card p{

        max-width:230px;

        font-size:.88rem;

    }


    .number-line{
        bottom:28px;
    }

}

.plus{
    font-family:"Poppins",sans-serif;
    font-size:2.2rem;
    font-weight:800;
    color:#ff1d1d;
    line-height:1;
    margin-bottom:10px;
    text-shadow:0 0 15px rgba(255,0,0,.25);
}

/* ==========================================================
   PARCEIROS
========================================================== */

.partners-section{

    padding:90px 0;

    background:#fff;

    overflow:hidden;

}


/* ==========================================================
   SLIDER
========================================================== */

.partners-slider{

    position:relative;

    overflow:hidden;

    margin-top:60px;

}


/* Fade nas laterais */

.partners-slider::before,
.partners-slider::after{

    content:"";

    position:absolute;

    top:0;

    width:120px;

    height:100%;

    z-index:5;

    pointer-events:none;

}

.partners-slider::before{

    left:0;

    background:linear-gradient(to right,#fff,transparent);

}

.partners-slider::after{

    right:0;

    background:linear-gradient(to left,#fff,transparent);

}


/* ==========================================================
   TRACK
========================================================== */

.partners-track{

    display:flex;

    align-items:center;

    gap:70px;

    width:max-content;

    animation:partners-scroll 30s linear infinite;

}

.partners-slider:hover .partners-track{

    animation-play-state:paused;

}


/* ==========================================================
   ITEM
========================================================== */

.partner-item{

    flex:0 0 auto;

    width:180px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

    opacity:.75;

}


.partner-item:hover{

    opacity:1;

    transform:scale(1.08);

}


/* ==========================================================
   LOGO
========================================================== */

.partner-item img{

    max-width:100%;

    max-height:65px;

    object-fit:contain;

    filter:grayscale(100%);

    transition:.35s ease;

}

.partner-item:hover img{

    filter:none;

}


/* ==========================================================
   ANIMAÇÃO
========================================================== */

@keyframes partners-scroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}


/* ==========================================================
   TABLET
========================================================== */

@media(max-width:992px){

    .partners-section{

        padding:80px 0;

    }

    .partners-track{

        gap:50px;

        animation-duration:24s;

    }

    .partner-item{

        width:150px;

        height:80px;

    }

    .partner-item img{

        max-height:55px;

    }

}


/* ==========================================================
   CELULAR
========================================================== */

@media(max-width:600px){

    .partners-section{

        padding:70px 0;

    }

    .partners-slider{

        margin-top:40px;

    }

    .partners-track{

        gap:35px;

        animation-duration:18s;

    }

    .partner-item{

        width:120px;

        height:65px;

    }

    .partner-item img{

        max-width:90%;

        max-height:42px;

    }

    .partners-slider::before,
    .partners-slider::after{

        width:50px;

    }

}

/* ==========================================================
   ORÇAMENTO
========================================================== */

.quote-section{
    padding:90px 0;
}

.quote-box{
    display:grid;
    grid-template-columns:1fr 520px;
    background:linear-gradient(135deg,#520808,#7d0b0b 60%,#941010);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* LADO ESQUERDO */

.quote-info{
    padding:70px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
}

.quote-info::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../img/fire-bg.png") center/cover;
    opacity:.08;
    pointer-events:none;
}

.quote-logo{
    width:220px;
    margin-bottom:35px;
    position:relative;
    z-index:2;
}

.quote-kicker{
    color:#ffc107;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    position:relative;
    z-index:2;
}

.quote-info h2{
    color:#fff;
    font-size:64px;
    line-height:1;
    margin:8px 0 25px;
    font-family:var(--font-head);
    position:relative;
    z-index:2;
}

.quote-info p{
    max-width:430px;
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.7;
    margin-bottom:45px;
    position:relative;
    z-index:2;
}

.quote-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

.benefit{
    display:flex;
    align-items:center;
    gap:12px;
}

.benefit svg{
    width:30px;
    height:30px;
    color:#fff;
}

.benefit span{
    color:#fff;
    font-weight:600;
    font-size:15px;
}

/* FORM */

.quote-form{
    background:#5f0909;
    padding:60px;
    display:flex;
    align-items:center;
}

#whatsappForm{
    width:100%;
}

#whatsappForm input,
#whatsappForm textarea{

    width:100%;
    margin-bottom:18px;
    border:none;
    outline:none;

    background:#8b1616;
    color:#fff;

    border-radius:12px;

    padding:18px 20px;

    font-size:16px;

    border:1px solid rgba(255,255,255,.08);

    transition:.25s;
}

#whatsappForm textarea{
    resize:none;
}

#whatsappForm input::placeholder,
#whatsappForm textarea::placeholder{
    color:rgba(255,255,255,.75);
}

#whatsappForm input:focus,
#whatsappForm textarea:focus{

    border-color:#ffbf00;
    background:#961717;

}

.quote-btn{

    width:100%;
    height:62px;

    border:none;
    border-radius:12px;

    background:linear-gradient(90deg,#ff7a00,#ffc400);

    color:#fff;

    font-weight:700;
    font-size:18px;

    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    transition:.3s;

}

.quote-btn:hover{

    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(255,170,0,.35);

}

.quote-btn svg{

    width:24px;
    height:24px;

}

/* ===========================
   TABLET
=========================== */

@media (max-width: 991px){

    .quote-box{
        grid-template-columns:1fr;
        max-width:620px;
        margin:auto;
    }

    .quote-info{
        padding:40px 30px;
        text-align:center;
    }

    .quote-logo{
        width:170px;
        margin:0 auto 22px;
    }

    .quote-kicker{
        font-size:15px;
    }

    .quote-info h2{
        font-size:38px;
        margin:10px 0 18px;
    }

    .quote-info p{
        max-width:100%;
        margin:0 0 30px;
        font-size:16px;
        line-height:1.6;
    }

    .quote-benefits{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .quote-form{
        padding:30px;
    }

}

/* ===========================
   CELULAR
=========================== */

@media (max-width:600px){

    .quote-section{
        padding:60px 0;
    }

    .quote-box{
        border-radius:18px;
        margin:0 15px;
    }

    .quote-info{
        padding:28px 22px;
    }

    .quote-logo{
        width:135px;
        margin-bottom:18px;
    }

    .quote-kicker{
        font-size:13px;
        letter-spacing:1px;
    }

    .quote-info h2{
        font-size:30px;
        line-height:1.1;
        margin:8px 0 14px;
    }

    .quote-info p{
        font-size:15px;
        line-height:1.55;
        margin-bottom:22px;
    }

    .quote-benefits{
        grid-template-columns:1fr;
        gap:14px;
        text-align:left;
    }

    .benefit{
        justify-content:flex-start;
    }

    .benefit svg{
        width:22px;
        height:22px;
    }

    .benefit span{
        font-size:14px;
    }

    .quote-form{
        padding:22px;
    }

    #whatsappForm input,
    #whatsappForm textarea{

        padding:15px 16px;
        margin-bottom:14px;
        font-size:15px;

    }

    #whatsappForm textarea{
        min-height:110px;
    }

    .quote-btn{

        height:54px;
        font-size:16px;

    }

}

/* ======================================================
   LOCALIZAÇÃO
====================================================== */

.location-section{

    padding:90px 0;


}

.location-grid{

    display:grid; 
    grid-template-columns:1.4fr 1fr;
    gap:45px;

    align-items:center;

}

.location-map{

    border-radius:20px;
    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.location-map iframe{

    width:100%;
    height:500px;
    border:none;
    display:block;

}

.location-info h3{

    font-size:34px;
    color:var(--red-600);

    margin-bottom:20px;

}

.location-address{

    font-size:17px;
    line-height:1.8;

    margin-bottom:30px;

    color:#444;

}

.location-info ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.location-info li{

    margin-bottom:15px;

    font-size:17px;

    color:#555;

}

.location-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    border-radius:999px;

    background:var(--red-600);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.location-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    background:#8f1111;

}

@media(max-width:900px){

.location-grid{

grid-template-columns:1fr;

}

.location-map iframe{

height:350px;

}

.location-info{

text-align:center;

}

}

/* ===========================
   FOOTER
=========================== */

.footer-map{
    margin:18px 0;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 8px 30px rgba(0,0,0,.15);
}

.footer-map iframe{
    width:100%;
    height:200px;
    border:0;
    display:block;
}

.contact-list li{
    margin-bottom:14px;
    line-height:1.6;
}

.contact-list a{
    color:#fff;
    text-decoration:none;
    transition:.25s;
}

.contact-list a:hover{
    color:var(--red-500);
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1.2fr;
    gap:50px;
    align-items:flex-start;
}

@media(max-width:900px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-map iframe{
        height:250px;
    }

}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-desktop);
    background-size: cover;
    background-position: center;
}


/* Imagem para celular */
@media (max-width: 768px) {

    .hero-bg {
        background-image: var(--hero-mobile);
        background-position: center;
    }

}


.footer-logo img{
    height: 55px; /* ajuste conforme necessário */
    width: auto;
    display: block;
}

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

.logo img{
    height: 55px; /* ajuste como preferir */
    width: auto;
    display: block;
}

.logo-text{
    font-size: 2rem;
    font-weight: 700;
}

.review-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.review-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    box-shadow:0 6px 18px rgba(0,0,0,.12);
    flex-shrink:0;
    transform: translateY(-15px);
}

.review-author{
    font-size:18px;
    font-weight:700;
    color:#111827;
}


.review-stars{
    margin-top:8px;
    color:#ffb400;
    letter-spacing:2px;
    font-size:18px;
}