/* assets/style.css — FixFuga Design System */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --orange:       #f97316;
  --orange-dark:  #c2410c;
  --orange-deep:  #ea580c;
  --orange-light: #fff7ed;
  --orange-mid:   #fed7aa;
  --dark:         #1c1917;
  --dark-2:       #292524;
  --muted:        #78716c;
  --muted-light:  #a8a29e;
  --border:       #e7e5e4;
  --bg:           #fafaf9;
  --white:        #ffffff;
  --text:         #44403c;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
.label {
  display: inline-block;
  color: var(--orange); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px;
}
h1 { font-size: clamp(32px, 5vw, 50px); font-weight: 900; line-height: 1.08; letter-spacing: -0.5px; }
h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; line-height: 1.15; letter-spacing: -0.3px; }
h3 { font-size: 20px; font-weight: 800; }
h4 { font-size: 16px; font-weight: 800; }
.subtitle { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.75; margin-top: 12px; }

/* ── BREADCRUMB ──────────────────────────────────── */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--dark); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 700; border: none;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 4px 14px rgba(249,115,22,0.35); }
.btn-primary:hover { background: var(--orange-deep); box-shadow: 0 6px 20px rgba(249,115,22,0.45); }
.btn-white { background: white; color: var(--orange-deep); box-shadow: 0 4px 14px rgba(0,0,0,0.10); }
.btn-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid rgba(249,115,22,.45); }
.btn-outline:hover { border-color: var(--orange); background: rgba(249,115,22,.06); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── NAVIGATION ──────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
}
.site-nav {
  background: var(--dark);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 28px;
}
.nav-logo { color: white; font-weight: 900; font-size: 20px; letter-spacing: -.5px; display: flex; align-items: center; }
.nav-logo em { color: var(--orange); font-style: normal; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted-light); font-size: 14px; font-weight: 500; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); border-radius: 1px; transition: width var(--transition); }
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; background: none; border: none; color: white; font-size: 22px; }

/* ── URGENCY BAR ─────────────────────────────────── */
.urgency-bar {
  background: var(--dark-2);
  padding: 10px 28px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.urgency-bar span { color: var(--muted-light); font-size: 13px; }
.urgency-bar strong { color: white; }
.urgency-bar .phone { color: var(--orange); font-weight: 800; font-size: 14px; transition: color var(--transition); }
.urgency-bar .phone:hover { color: #fb923c; }
.urgency-sep { color: var(--muted); }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  background: var(--orange-light);
  padding: 56px 0 48px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(249,115,22,.05); border-radius: 50%;
  pointer-events: none;
}
.page-hero::before {
  content: '';
  position: absolute; bottom: -120px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(249,115,22,.03); border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--orange); margin-top: 12px; }
.page-hero p  { color: var(--muted); font-size: 17px; max-width: 580px; margin-top: 10px; }
.page-hero-illustration {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px; opacity: 1;
  pointer-events: none;
}

/* ── HERO (homepage) ─────────────────────────────── */
.hero { padding: 96px 0 72px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,.1); color: var(--orange);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 6px 16px; border-radius: 24px; margin-bottom: 24px;
  border: 1px solid rgba(249,115,22,.15);
}
.hero h1 { color: var(--orange-dark); max-width: 600px; }
.hero p   { color: var(--muted); font-size: 18px; max-width: 500px; margin: 20px 0 36px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-illustration { display: flex; align-items: center; justify-content: center; }
.hero-illustration svg { width: 100%; max-width: 420px; height: auto; filter: drop-shadow(0 8px 32px rgba(249,115,22,0.08)); }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat strong { color: var(--orange); font-size: 30px; font-weight: 900; display: block; letter-spacing: -0.5px; }
.stat span   { color: var(--muted); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── CARDS ───────────────────────────────────────── */
.cards-grid { display: grid; gap: 24px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-top {
  background: var(--white);
  padding: 30px 26px; position: relative; overflow: hidden;
  border-bottom: 2px solid var(--border);
}
.card-top::after {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; background: rgba(249,115,22,.06); border-radius: 50%;
}
.card-icon {
  width: 50px; height: 50px;
  background: rgba(249,115,22,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card-top h3 { color: var(--dark); font-size: 19px; }
.card-top p  { color: var(--muted); font-size: 13px; margin-top: 4px; }
.card-body   { padding: 22px 26px; }
.card-body ul li {
  font-size: 13px; color: var(--text); padding: 8px 0;
  border-bottom: 1px solid var(--bg);
  display: flex; align-items: center; gap: 10px;
  transition: padding-left var(--transition);
}
.card-body ul li:hover { padding-left: 4px; }
.card-body ul li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; color: var(--orange); font-size: 13px; font-weight: 700;
  transition: gap var(--transition);
}
.card-link:hover { gap: 8px; }

/* ── EQUIP GRID ──────────────────────────────────── */
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.equip-card {
  background: white; border-radius: var(--radius);
  padding: 22px; border: 1px solid var(--border);
  transition: all var(--transition);
}
.equip-card:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(249,115,22,0.08); transform: translateY(-2px); }
.equip-card .icon { font-size: 26px; margin-bottom: 10px; }
.equip-card h4    { font-size: 14px; margin-bottom: 6px; }
.equip-card p     { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── HOW IT WORKS ────────────────────────────────── */
.how-section { background: var(--dark); position: relative; }
.how-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.3), transparent);
}
.how-section .label { color: var(--orange); }
.how-section h2 { color: white; }
.how-section .subtitle { color: var(--muted-light); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 27px; left: 80px; right: 80px; height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(249,115,22,0.2));
  border-radius: 1px;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: white; font-size: 22px; font-weight: 900;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.step:hover .step-num { transform: scale(1.1); box-shadow: 0 6px 28px rgba(249,115,22,0.5); }
.step h4 { color: white; font-size: 15px; margin-bottom: 10px; }
.step p  { color: var(--muted); font-size: 13px; line-height: 1.65; }

/* ── WHY SECTION ─────────────────────────────────── */
.why-section { background: var(--orange-light); position: relative; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 26px; border-top: 4px solid var(--orange);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-card .icon { font-size: 32px; margin-bottom: 16px; }
.why-card h4    { font-size: 17px; margin-bottom: 10px; }
.why-card p     { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── AREAS ───────────────────────────────────────── */
.areas-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.area-pill {
  background: white; border: 2px solid var(--border);
  border-radius: 10px; padding: 14px 20px;
  font-size: 14px; font-weight: 700; color: var(--text);
  text-decoration: none; transition: all var(--transition);
}
.area-pill:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(249,115,22,0.1); }

/* ── AREA STATS ──────────────────────────────────── */
.area-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.area-stat {
  background: white; border-radius: var(--radius);
  padding: 24px; text-align: center; box-shadow: var(--shadow);
  transition: all var(--transition);
}
.area-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.area-stat strong { font-size: 30px; font-weight: 900; color: var(--orange); display: block; letter-spacing: -0.5px; }
.area-stat span   { font-size: 12px; color: var(--muted); }

/* ── MUNICIPIOS ──────────────────────────────────── */
.municipios { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 40px; }
.municipio {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 12px; font-size: 12px; color: var(--text);
  transition: all var(--transition);
}
.municipio:hover { border-color: var(--orange); color: var(--orange); }

/* ── FAQ ─────────────────────────────────────────── */
.faq-list   { max-width: 740px; }
.faq-item   {
  background: white; border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 12px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 1px 5px rgba(0,0,0,.04);
  transition: all var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.faq-q { font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--dark); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-cats   { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.faq-cat    {
  background: var(--bg); border: 2px solid transparent;
  border-radius: 24px; padding: 7px 18px;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: all var(--transition);
}
.faq-cat:hover, .faq-cat.active { background: var(--orange-light); border-color: var(--orange); color: var(--orange-deep); }
.faq-section-title { font-size: 19px; font-weight: 800; color: var(--orange); margin: 32px 0 14px; }

/* ── SERVICE INTRO ───────────────────────────────── */
.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; margin-bottom: 52px; }
.service-intro p { font-size: 15px; line-height: 1.8; }
.service-highlight {
  background: var(--orange-light); border-radius: var(--radius-lg);
  padding: 26px; border-left: 4px solid var(--orange);
}
.service-highlight h3 { font-size: 15px; color: var(--orange-deep); margin-bottom: 14px; }
.service-highlight li {
  font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid var(--orange-mid);
  display: flex; align-items: center; gap: 8px;
}
.service-highlight li::before { content: '✓'; color: var(--orange); font-weight: 900; }

/* ── CONTACT FORM ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-card  { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-row   { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--bg); }
.contact-row .ci { width: 42px; height: 42px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-row strong { font-size: 14px; font-weight: 700; display: block; }
.contact-row span   { font-size: 12px; color: var(--muted); }
.form-group  { margin-bottom: 18px; }
.form-label  { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text); margin-bottom: 6px; }
.form-input  {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 10px;
  font-size: 14px; background: var(--bg); font-family: var(--font); transition: all var(--transition);
}
.form-input:focus { border-color: var(--orange); outline: none; background: white; box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.form-submit {
  background: var(--orange); color: white; font-weight: 800; font-size: 15px;
  padding: 14px 24px; border-radius: 10px; border: none; width: 100%; margin-top: 8px;
  transition: all var(--transition); box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}
.form-submit:hover { background: var(--orange-deep); box-shadow: 0 6px 20px rgba(249,115,22,0.4); transform: translateY(-1px); }

/* ── CTA STRIP ───────────────────────────────────── */
.cta-strip {
  background: var(--white);
  border-radius: var(--radius-lg); padding: 44px; text-align: center; margin: 52px 0;
  position: relative; overflow: hidden; border: 2px solid var(--border);
}
.cta-strip::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; background: rgba(249,115,22,.06); border-radius: 50%;
}
.cta-strip h2, .cta-strip h3 { color: var(--dark); }
.cta-strip p  { color: var(--muted); margin: 12px auto 28px; max-width: 480px; }
.cta-strip .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CTA FINAL SECTION ───────────────────────────── */
.cta-section {
  background: var(--orange-light);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-section::after {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 300px; height: 300px; background: rgba(249,115,22,.05); border-radius: 50%;
}
.cta-section::before {
  content: ''; position: absolute; bottom: -60px; left: -40px;
  width: 200px; height: 200px; background: rgba(249,115,22,.03); border-radius: 50%;
}
.cta-section h2 { color: var(--dark); }
.cta-section p  { color: var(--muted); font-size: 18px; margin: 16px auto 36px; max-width: 500px; line-height: 1.7; }
.cta-section .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer { background: #0c0a09; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { color: white; font-weight: 900; font-size: 20px; margin-bottom: 14px; }
.footer-logo em { color: var(--orange); font-style: normal; }
.footer-logo img { height: 32px; width: auto; }
.footer-desc { color: #57534e; font-size: 13px; line-height: 1.75; }
.footer-col h5 { color: var(--muted-light); font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.footer-col li { padding: 5px 0; }
.footer-col a  { color: #57534e; font-size: 13px; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #1c1917; margin-top: 44px;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span { color: #44403c; font-size: 12px; }

/* ── RELATED CARDS ───────────────────────────────── */
.rel-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 44px; }
.rel-card  {
  border: 2px solid var(--border); border-radius: var(--radius); padding: 22px;
  text-align: center; background: white; transition: all var(--transition);
}
.rel-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(249,115,22,0.08); }
.rel-card .icon { font-size: 28px; margin-bottom: 10px; }
.rel-card h4    { font-size: 14px; margin-bottom: 4px; }
.rel-card p     { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.rel-card a     { color: var(--orange); font-size: 13px; font-weight: 700; }

/* ── SOBRE NOS ───────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card  {
  background: white; border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow); border-top: 3px solid var(--orange);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.value-card .icon { font-size: 28px; margin-bottom: 12px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── MOBILE NAV ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 20px 28px; gap: 18px; }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
  .page-hero-illustration { display: none; }
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .why-grid, .equip-grid { grid-template-columns: 1fr 1fr; }
  .service-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-stats { grid-template-columns: 1fr 1fr; }
  .rel-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .why-grid, .equip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .section { padding: 52px 0; }
}
