
:root {
  --primary: #e85d04;
  --primary-dark: #c44e02;
  --bg: #0d0d0d;
  --bg2: #161616;
  --card: #1e1e1e;
  --border: #2e2e2e;
  --text: #e8e0d5;
  --muted: #999;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.7; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 1000; background: rgba(13,13,13,.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; gap: 20px; padding: 14px 0; }
.logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.badge-live { font-size: .65rem; background: #16a34a; color: #fff; padding: 3px 8px; border-radius: 20px; animation: pulse 2s infinite; font-family: var(--font-body); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }
.nav-links { display: flex; gap: 18px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta { background: var(--primary); color: #fff!important; padding: 8px 18px; border-radius: 6px; font-weight: 600; font-size: .9rem; white-space: nowrap; }
.nav-cta:hover { background: var(--primary-dark); text-decoration: none; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; margin-left: auto; }

/* HERO */
.hero { background: radial-gradient(ellipse at 60% 40%, #1a0a0020 0%, transparent 70%), var(--bg); padding: 90px 0 70px; text-align: center; border-bottom: 1px solid var(--border); }
.hero-badge { display: inline-block; background: #1a1a1a; border: 1px solid var(--border); color: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: .85rem; margin-bottom: 20px; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.highlight { color: var(--primary); }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin: 0 auto 30px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.btn-primary { background: var(--primary); color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem; transition: background .2s; }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-wa { background: #16a34a; color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem; }
.btn-wa:hover { background: #15803d; text-decoration: none; }
.stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat span { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--primary); }
.stat small { color: var(--muted); font-size: .8rem; }

/* SECTIONS */
.section { padding: 70px 0; }
.section.bg-dark { background: var(--bg2); }
.section-title { font-family: var(--font-head); font-size: 2rem; text-align: center; margin-bottom: 40px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: border-color .2s, transform .2s; color: var(--text); display: block; }
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); text-decoration: none; }
.service-icon { font-size: 2rem; margin-bottom: 10px; }
.service-card h3 { font-size: 1rem; margin-bottom: 6px; }
.service-card p { color: var(--muted); font-size: .85rem; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; }
.step { text-align: center; padding: 20px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--primary); border-radius: 50%; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .9rem; }

/* REGIONS */
.search-input { width: 100%; max-width: 400px; display: block; margin: 0 auto 24px; padding: 12px 18px; background: var(--card); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: .95rem; outline: none; }
.search-input:focus { border-color: var(--primary); }
.regions-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.region-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; font-size: .85rem; color: var(--text); transition: border-color .2s, background .2s; }
.region-card:hover { border-color: var(--primary); background: #2a1a0a; text-decoration: none; color: var(--primary); }
.region-all { border-color: var(--primary); color: var(--primary); font-weight: 600; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 16px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stars { font-size: 1rem; margin-bottom: 8px; }
.review-card p { font-size: .9rem; color: var(--muted); margin-bottom: 10px; }
.review-card strong { font-size: .85rem; color: var(--primary); }

/* FOOTER */
.footer { background: #0a0a0a; border-top: 1px solid var(--border); padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 30px; margin-bottom: 30px; }
.footer-col h3, .footer-col h4 { font-family: var(--font-head); margin-bottom: 14px; }
.footer-col p, .footer-col li { font-size: .88rem; color: var(--muted); margin-bottom: 6px; }
.footer-col ul { list-style: none; }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--primary); }
.footer-locations { columns: 3; gap: 10px; }
.footer-locations li { break-inside: avoid; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 10px; text-align: center; font-size: .82rem; color: var(--muted); }
.footer-bottom strong { color: var(--primary); }

/* PAGE MAIN */
.page-main { padding: 50px 0 70px; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--text); }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.page-content h1 { font-family: var(--font-head); font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 16px; }
.page-content h2 { font-family: var(--font-head); font-size: 1.4rem; margin: 28px 0 12px; color: var(--primary); }
.page-content h3 { font-size: 1.1rem; margin: 14px 0 6px; }
.page-content .lead { font-size: 1.05rem; color: #ccc; margin-bottom: 20px; line-height: 1.8; }
.page-content p { color: var(--muted); margin-bottom: 12px; }
.service-list { list-style: none; margin: 12px 0 20px; }
.service-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.other-regions { margin: 28px 0; }
.other-regions h3 { color: var(--primary); margin-bottom: 12px; }
.other-regions ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.other-regions li a { background: var(--card); border: 1px solid var(--border); border-radius: 5px; padding: 6px 12px; font-size: .83rem; color: var(--text); }
.other-regions li a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.faq-section { margin-top: 30px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-item h3 { font-size: 1rem; color: var(--text); margin-bottom: 6px; }
.faq-item p { font-size: .9rem; color: var(--muted); }
.full-width { grid-column: 1 / -1; }

/* SIDEBAR */
.page-sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; }
.sidebar-card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.1rem; }
.sidebar-card p { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.btn-block { display: block; text-align: center; width: 100%; padding: 12px; border-radius: 7px; font-weight: 600; margin-bottom: 10px; font-size: .95rem; }
.btn-whatsapp-s { background: #16a34a; color: #fff; }
.btn-whatsapp-s:hover { background: #15803d; text-decoration: none; }
.sidebar-info { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.sidebar-info p { font-size: .88rem; margin-bottom: 8px; color: var(--muted); }

/* STICKY BUTTONS */
.sticky-btns { position: fixed; bottom: 0; left: 0; right: 0; display: none; z-index: 999; box-shadow: 0 -2px 12px rgba(0,0,0,.4); }
.sticky-btns a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; height: 52px; font-weight: 700; font-size: .95rem; color: #fff; text-decoration: none; white-space: nowrap; }
.sticky-btns .btn-call { background: var(--primary); }
.sticky-btns .btn-call:hover { background: var(--primary-dark); }
.sticky-btns .btn-whatsapp { background: #16a34a; }
.sticky-btns .btn-whatsapp:hover { background: #15803d; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-wide { grid-column: 1 / -1; }
  .footer-locations { columns: 3; }
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #111; padding: 16px; border-bottom: 1px solid var(--border); z-index: 1001; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-locations { columns: 2; }
  .sticky-btns { display: flex; }
  body { padding-bottom: 52px; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 50px 0; }
}
