:root {
  --primary: #3a3a3c;
  --primary-dark: #222;
  --accent: #f28c18;
  --bg: #f7f7f7;
  --text: #222;
  --muted: #666;
  --white: #ffffff;
  --border: #e5e5e5;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 18px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(92%, var(--max)); margin: 0 auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(.97); }
.btn-secondary { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.topbar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}
.logo-image {
  width: 76px;
  height: auto;
  display: block;
}
.logo-text strong { display: block; font-size: 20px; line-height: 1; color: var(--primary-dark); }
.logo-text span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; }
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu a {
  font-weight: 700;
  color: var(--primary);
}
.menu a.active, .menu a:hover { color: var(--accent); }
.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--primary);
}
.hero {
  background: linear-gradient(135deg, rgba(58,58,60,.96), rgba(34,34,34,.94)), url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
  padding: 90px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.hero p {
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255,255,255,.92);
  max-width: 700px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.badge {
  padding: 9px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-top: 0; font-size: 24px; }
.hero-list { list-style: none; padding: 0; margin: 0 0 22px; }
.hero-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-list li:last-child { border-bottom: 0; }
.section { padding: 80px 0; }
.section.alt { background: var(--bg); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.1; margin: 0 0 12px; color: var(--primary-dark); }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.card h3 { margin-top: 0; color: var(--primary-dark); }
.card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(242,140,24,.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 8px 0 8px 26px; position: relative; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.cta {
  background: linear-gradient(135deg, #3a3a3c, #1f1f20);
  color: var(--white);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta h3 { margin: 0 0 10px; font-size: 34px; }
.cta p { margin: 0; color: rgba(255,255,255,.85); }
.contact-info p { margin: 0 0 14px; }
.form {
  display: grid;
  gap: 16px;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  font: inherit;
}
.form textarea { min-height: 150px; resize: vertical; }
.small { font-size: 14px; color: var(--muted); }
footer {
  background: #151515;
  color: #f3f3f3;
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
  margin-bottom: 28px;
}
footer h4 { margin-top: 0; }
footer a { color: #f3f3f3; opacity: .88; }
footer a:hover { opacity: 1; color: var(--accent); }
.subfooter {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.page-hero {
  background: linear-gradient(135deg, #3a3a3c, #222);
  color: var(--white);
  padding: 70px 0;
}
.page-hero h1 { margin: 0 0 12px; font-size: clamp(32px,4vw,52px); }
.breadcrumbs { font-size: 14px; color: rgba(255,255,255,.82); margin-bottom: 10px; }
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 10px 28px rgba(37,211,102,.35);
}
.legal-content h2 { margin-top: 38px; }
@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-4, .grid-2, .footer-grid, .cta {
    grid-template-columns: 1fr;
  }
  .menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    display: none;
  }
  .menu.open { display: flex; }
  .mobile-toggle { display: block; }
}
@media (max-width: 640px) {
  .hero { padding-top: 70px; }
  .cta { padding: 28px; }
  .section { padding: 64px 0; }
  .nav { min-height: 72px; }
  .logo-image { width: 64px; }
}
.slider-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slider-bg {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.form label.small {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.form label.small input[type="checkbox"] {
  width: auto;
  margin: 4px 0 0;
  padding: 0;
  flex: 0 0 auto;
}

.form button {
  width: 100%;
}

@media (max-width: 640px) {
  .form button {
    width: 100%;
  }
}