/* ===== GOES TRANSPORTES - MAIN STYLESHEET ===== */
/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; color: #333; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* ===== COLORS ===== */
:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --secondary: #1565c0;
  --secondary-dark: #0d47a1;
  --accent: #ff6f00;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --green-whatsapp: #25d366;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark2));
  --shadow: 0 10px 40px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --radius: 16px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--gradient-dark);
  color: #fff;
  padding: 8px 0;
  font-size: .85rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--green-whatsapp); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar svg { width: 16px; height: 16px; fill: currentColor; vertical-align: middle; margin-right: 5px; }

/* ===== HEADER / NAV ===== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.15); }
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 5px; }
.nav a {
  padding: 10px 18px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  border-radius: 8px;
  transition: all .3s;
  position: relative;
}
.nav a:hover, .nav a.active {
  color: var(--primary);
  background: rgba(211,47,47,.06);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all .3s;
  transform: translateX(-50%);
}
.nav a:hover::after, .nav a.active::after { width: 60%; }
.nav-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(211,47,47,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(211,47,47,.4); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 3px; background: var(--dark); border-radius: 3px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,.85) 0%, rgba(211,47,47,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto 0 10%;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.2rem;
  opacity: .9;
  margin-bottom: 35px;
  max-width: 550px;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
  border: 2px solid transparent;
}
.hero-dot.active { background: #fff; transform: scale(1.2); border-color: var(--primary); }

/* Slider arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(211,47,47,.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(211,47,47,.45); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-whatsapp {
  background: var(--green-whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,.45); background: #1ebe57; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-dark {
  background: var(--gradient-dark);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-sm { padding: 12px 24px; font-size: .9rem; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--light);
  padding: 30px 0;
  border-bottom: 1px solid #e9ecef;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--dark);
  font-size: .95rem;
}
.trust-icon {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(211,47,47,.08);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
}

/* ===== ABOUT / INTRO ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 20px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-float strong { font-size: 2rem; display: block; }
.about-text h2 { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.about-text p { margin-bottom: 15px; color: #555; }
.about-features { display: flex; flex-direction: column; gap: 15px; margin: 25px 0; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--dark);
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: rgba(211,47,47,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,.08);
  transition: all .4s;
  border: 1px solid #eee;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 30px; }
.service-card-body h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-card-body p { color: var(--gray); margin-bottom: 20px; font-size: .95rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: .95rem;
  transition: gap .3s;
}
.service-card-link:hover { gap: 15px; }

/* ===== TRIGGERS / CTA ===== */
.cta-section {
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.cta-section p { font-size: 1.15rem; opacity: .9; margin-bottom: 35px; max-width: 650px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ===== PRICE TRIGGER ===== */
.price-trigger {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.price-trigger::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(211,47,47,.08);
  border-radius: 50%;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.price-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all .3s;
}
.price-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); }
.price-card.featured {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(211,47,47,.3);
}
.price-card.featured:hover { transform: scale(1.05) translateY(-5px); }
.price-label { font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; opacity: .7; margin-bottom: 10px; }
.price-value { font-size: 2.5rem; font-weight: 800; margin-bottom: 5px; }
.price-value small { font-size: 1rem; font-weight: 400; opacity: .7; }
.price-desc { opacity: .8; font-size: .95rem; margin-bottom: 25px; }
.price-features { text-align: left; margin-bottom: 30px; }
.price-features li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 10px; }
.price-features li::before { content: '✓'; color: var(--green-whatsapp); font-weight: 700; }

/* ===== ADVANTAGES ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.advantage-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,.06);
  border: 1px solid #eee;
  transition: all .3s;
}
.advantage-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--primary); }
.advantage-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(211,47,47,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all .3s;
}
.advantage-card:hover .advantage-icon { background: var(--gradient-primary); color: #fff; }
.advantage-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.advantage-card p { color: var(--gray); font-size: .95rem; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(211,47,47,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Gallery tall items (702x1600) */
.gallery-tall { grid-row: span 2; }
.gallery-tall img { height: 515px; }

/* Gallery square items (719x744) */
.gallery-square img { height: 250px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color .3s;
}
.lightbox-close:hover { color: var(--primary); }

/* ===== TESTIMONIALS / EMPRESA ===== */
.empresa-section { background: var(--light); }
.empresa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.empresa-info h2 { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.empresa-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0; }
.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,.06);
}
.stat-card strong { font-size: 2.2rem; color: var(--primary); display: block; font-weight: 800; }
.stat-card span { font-size: .9rem; color: var(--gray); }

/* ===== CNPJ TRIGGER ===== */
.cnpj-bar {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
  box-shadow: var(--shadow);
}
.cnpj-bar-text h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.cnpj-bar-text p { color: var(--gray); }

/* ===== COVERAGE MAP ===== */
.coverage-section { background: var(--light); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.coverage-list li {
  padding: 10px 15px;
  background: #fff;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.coverage-list li::before { content: '📍'; }

/* ===== CONTACT / FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--dark); font-size: .95rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .3s;
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: var(--radius);
  box-shadow: 0 3px 15px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all .3s;
}
.contact-info-card:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.contact-info-icon {
  width: 55px; height: 55px;
  background: rgba(211,47,47,.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-card p { font-size: .9rem; color: var(--gray); }

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-dark);
  color: #fff;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-about p { color: rgba(255,255,255,.7); margin: 15px 0; font-size: .95rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255,255,255,.7); transition: all .3s; display: flex; align-items: center; gap: 8px; }
.footer ul a:hover { color: #fff; padding-left: 5px; }
.footer-bottom {
  text-align: center;
  padding: 25px 0;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9990;
}
.whatsapp-float-btn {
  width: 65px;
  height: 65px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,.45);
  cursor: pointer;
  transition: all .3s;
  animation: whatsapp-pulse 2s infinite;
  position: relative;
}
.whatsapp-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 40px rgba(37,211,102,.55); }
.whatsapp-float-btn svg { width: 35px; height: 35px; fill: #fff; }
.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* WhatsApp Messages */
.whatsapp-messages {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  overflow: hidden;
  display: none;
  animation: slideUp .3s ease;
}
.whatsapp-messages.active { display: block; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.wpp-header {
  background: #075e54;
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wpp-header img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.wpp-header-info h5 { font-size: .95rem; }
.wpp-header-info span { font-size: .8rem; opacity: .8; }
.wpp-body { padding: 20px; background: #e5ddd5; }
.wpp-msg {
  background: #fff;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  margin-bottom: 10px;
  font-size: .9rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  position: relative;
  animation: fadeMsg .5s ease;
  display: none;
}
.wpp-msg.visible { display: block; }
@keyframes fadeMsg {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.wpp-msg-time { font-size: .7rem; color: #999; text-align: right; margin-top: 5px; }
.wpp-input {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-top: 1px solid #eee;
}
.wpp-input input {
  flex: 1;
  min-width: 0;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  background: var(--light);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
}
.wpp-input button {
  width: 42px;
  min-width: 42px;
  height: 42px;
  background: var(--green-whatsapp);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 15px 0;
  background: var(--light);
  border-bottom: 1px solid #e9ecef;
}
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: .9rem; }
.breadcrumb-list a { color: var(--gray); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list span { color: var(--dark); font-weight: 600; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--gradient-dark);
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(211,47,47,.1);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; position: relative; }
.page-hero p { font-size: 1.1rem; opacity: .8; max-width: 600px; margin: 0 auto; position: relative; }

/* ===== SERVICE PAGE ===== */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.service-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin: 30px 0 15px; }
.service-content p { margin-bottom: 15px; color: #555; }
.service-content ul { margin: 15px 0; padding-left: 20px; }
.service-content ul li { margin-bottom: 8px; color: #555; position: relative; padding-left: 25px; }
.service-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--light); }
.sidebar-services li { margin-bottom: 10px; }
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 10px;
  transition: all .3s;
  font-weight: 500;
  color: #555;
}
.sidebar-services a:hover, .sidebar-services a.active { background: rgba(211,47,47,.06); color: var(--primary); }
.sidebar-cta {
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 40px 30px;
}
.sidebar-cta h3 { color: #fff; border-bottom-color: rgba(255,255,255,.2); }
.sidebar-cta p { opacity: .9; margin-bottom: 20px; }

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--light);
}
.thankyou-box {
  background: #fff;
  padding: 60px 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 550px;
}
.thankyou-icon {
  width: 100px;
  height: 100px;
  background: rgba(37,211,102,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 25px;
}
.thankyou-box h1 { font-size: 2rem; color: var(--dark); margin-bottom: 15px; }
.thankyou-box p { color: var(--gray); margin-bottom: 10px; }
.thankyou-counter { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 20px 0; }
.thankyou-bar {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 25px;
}
.thankyou-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: fillBar 7s linear forwards;
}
@keyframes fillBar { from { width: 0; } to { width: 100%; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .advantages-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero { height: 100vh; max-height: 700px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-content { margin: 0 auto; text-align: center; align-items: center; }
  .hero-btns { justify-content: center; }
  .hero-arrow { display: none; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,.1);
    transition: right .3s;
    align-items: stretch;
  }
  .nav.active { right: 0; }
  .hamburger { display: flex; }

  .about-grid, .empresa-grid, .coverage-grid, .contact-grid, .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .services-grid, .advantages-grid, .price-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tall img { height: 350px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 2rem; }
  .trust-items { gap: 25px; }
  .cnpj-bar { flex-direction: column; text-align: center; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-5px); }
  .top-bar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 15px; right: 15px; }
  .whatsapp-float-btn { width: 58px; height: 58px; }
  .whatsapp-float-btn svg { width: 30px; height: 30px; }
  .whatsapp-messages { width: calc(100vw - 30px); right: 0; bottom: 70px; }
  .wpp-input { padding: 10px 12px; gap: 8px; }
  .wpp-input input { padding: 10px 12px; font-size: .85rem; }
  .wpp-input button { width: 38px; min-width: 38px; height: 38px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .btn { padding: 14px 28px; font-size: .9rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall img { height: 400px; }
}
