:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #f97316;
  --accent: #10b981;
  --whatsapp: #25d366;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --border: #e2e8f0;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--dark); line-height: 1.6; background: #fff; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.logo span { color: var(--secondary); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); }
nav ul { display: flex; list-style: none; gap: 24px; }
nav a { color: var(--dark); font-weight: 500; font-size: 0.9rem; }
.phone-header { display: flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding: 80px 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.2; }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 8px; }
.hero-badges { display: flex; justify-content: center; gap: 16px; margin: 20px 0; flex-wrap: wrap; }
.hero-badge { background: rgba(255,255,255,0.15); padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; }
.hero-cta { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 1.05rem; transition: all 0.3s; border: none; cursor: pointer; }
.btn-call { background: var(--secondary); color: #fff; }
.btn-call:hover { background: #ea580c; text-decoration: none; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #20bd5a; text-decoration: none; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

/* Sections */
section { padding: 60px 0; }
.section-title { font-size: 2rem; text-align: center; margin-bottom: 40px; color: var(--dark); }
.section-title span { color: var(--primary); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px; text-align: center; transition: all 0.3s; }
.service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-card .icon { font-size: 3rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }

/* Location Grid */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.loc-card { display: block; background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; text-align: center; font-weight: 500; color: var(--dark); transition: all 0.3s; }
.loc-card:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* Brand logos */
.brand-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.brand-item { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 20px 32px; font-weight: 600; font-size: 1.1rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 16px 20px; background: var(--light); cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.3rem; transition: transform 0.3s; }
.faq-item.active .faq-q::after { content: '−'; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s; }
.faq-item.active .faq-a { padding: 16px 20px; max-height: 500px; }

/* Testimonials */
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.test-card { background: var(--light); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.test-card .stars { color: #f59e0b; margin-bottom: 8px; }
.test-card p { color: var(--gray); font-style: italic; }
.test-card .author { font-weight: 600; margin-top: 12px; color: var(--dark); }

/* Breadcrumb */
.breadcrumb { background: var(--light); padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.breadcrumb a { color: var(--gray); }
.breadcrumb span { color: var(--dark); }

/* Page-specific hero */
.page-hero { padding: 60px 0; }
.page-hero h1 { font-size: 2rem; }

/* Content Section */
.content-section { background: #fff; padding: 60px 0; }
.content-section h2 { font-size: 1.6rem; color: var(--primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--primary); }
.content-section h3 { font-size: 1.2rem; color: var(--dark); margin: 24px 0 12px; }
.content-section p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; font-size: 1rem; }
.content-section ul { margin: 0 0 20px 20px; }
.content-section ul li { margin-bottom: 10px; color: var(--gray); line-height: 1.6; }
.content-section ul li strong { color: var(--dark); }
.content-section .cta-box { background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; margin: 24px 0; }
.content-section .cta-box p { font-size: 1.1rem; margin-bottom: 16px; }
.content-section .feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 20px 0; }
.content-section .feature-item { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 16px; display: flex; align-items: flex-start; gap: 12px; }
.content-section .feature-item .fi-icon { font-size: 1.5rem; flex-shrink: 0; }
.content-section .feature-item .fi-text h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.content-section .feature-item .fi-text p { font-size: 0.85rem; margin-bottom: 0; }

/* Cost Section */
.cost-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.cost-item { text-align: center; padding: 20px; background: var(--light); border-radius: 8px; border: 1px solid var(--border); }
.cost-item .price { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.cost-item .label { color: var(--gray); font-size: 0.85rem; }

/* Footer */
footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 40px 0 20px; }
footer h4 { color: #fff; margin-bottom: 12px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 6px; }
footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 24px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; text-align: center; font-size: 0.85rem; }

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  nav ul.open { display: flex; }
  .hero h1 { font-size: 1.75rem; }
  .hero { padding: 50px 0; }
  section { padding: 40px 0; }
  .section-title { font-size: 1.5rem; }
  .loc-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
