  :root {
    --black: #0a0a0a;
    --charcoal: #161513;
    --gold-1: #f7e08a;
    --gold-2: #d4af37;
    --gold-3: #9c6b12;
    --gold-4: #a97c1f;
    --cream: #faf8f3;
    --text-light: #e9e9e9;
    --text-muted: #b8b8b8;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--cream);
    color: #1c1c1c;
    line-height: 1.6;
  }
  h1, h2, h3, .nav-brand, .btn, .badge-label { font-family: 'Arial', 'Helvetica Neue', sans-serif; }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }
  .gold-text {
    background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

  /* Header */
  header {
    position: sticky; top: 0; z-index: 100;
    background: var(--black);
    border-bottom: 1px solid rgba(212,175,55,0.35);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 28px;
    max-width: 1140px; margin: 0 auto;
  }
  .nav-brand { display: flex; align-items: center; gap: 12px; }
  .nav-brand img { width: 42px; height: 42px; }
  .nav-brand .name { color: var(--gold-2); font-weight: 900; font-size: 18px; letter-spacing: 1px; }
  .nav-links { display: flex; gap: 30px; list-style: none; }
  .nav-links a { color: var(--text-light); font-size: 15px; font-weight: 600; letter-spacing: 0.3px; transition: color .2s; }
  .nav-links a:hover { color: var(--gold-2); }
  .nav-cta {
    background: linear-gradient(180deg, var(--gold-1), var(--gold-4));
    color: var(--black); font-weight: 800; font-size: 14px;
    padding: 10px 20px; border-radius: 30px;
  }
  .menu-toggle { display: none; background: none; border: none; color: var(--gold-2); font-size: 28px; cursor: pointer; }

  /* Hero */
  .hero {
    background:
      radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.10), transparent 55%),
      linear-gradient(180deg, #0a0a0a 0%, #14120f 100%);
    color: #fff;
    padding: 90px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before, .hero::after {
    content: '';
    position: absolute;
    width: 900px; height: 90px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
    transform: rotate(-8deg);
  }
  .hero::before { top: -20px; left: -260px; }
  .hero::after { bottom: -30px; right: -260px; }
  .hero-inner { position: relative; z-index: 1; }
  .hero-logo { width: 120px; height: 120px; margin: 0 auto 22px; }
  .badge-label {
    display: inline-block;
    border: 1px solid var(--gold-2);
    color: var(--gold-2);
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    padding: 7px 18px; border-radius: 20px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: 48px; font-weight: 900; letter-spacing: 1px;
    margin-bottom: 14px;
  }
  .hero p.lead {
    font-size: 19px; color: var(--text-muted); max-width: 620px; margin: 0 auto 34px;
    font-family: Georgia, serif;
  }
  .hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 800; font-size: 15px; letter-spacing: 0.3px;
    padding: 15px 30px; border-radius: 30px;
    cursor: pointer; border: none;
  }
  .btn-primary {
    background: linear-gradient(180deg, var(--gold-1), var(--gold-4));
    color: var(--black);
  }
  .btn-outline {
    background: transparent; border: 1.5px solid var(--gold-2); color: var(--gold-2);
  }
  .hero-stats {
    display: flex; justify-content: center; gap: 50px; flex-wrap: wrap;
    padding-top: 30px; border-top: 1px solid rgba(212,175,55,0.2);
    max-width: 700px; margin: 0 auto;
  }
  .stat b { display: block; font-size: 26px; color: var(--gold-2); font-family: Arial, sans-serif; font-weight: 900; }
  .stat span { font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; }

  /* Section generic */
  section { padding: 80px 0; }
  .section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
  .eyebrow { color: var(--gold-3); font-family: Arial, sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
  .section-head h2 { font-size: 34px; margin-top: 10px; color: #16130a; }
  .section-head p { color: #555; margin-top: 12px; }

  /* Services grid */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .service-card {
    background: #fff; border: 1px solid #eee1c3; border-radius: 10px; padding: 30px 24px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.04);
    transition: transform .2s, box-shadow .2s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
  .service-icon {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-4));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
  }
  .service-card h3 { font-size: 18px; margin-bottom: 8px; color: #16130a; }
  .service-card p { font-size: 14.5px; color: #666; }

  /* Why us */
  .why {
    background: var(--black); color: #fff;
  }
  .why .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
  .why-list li { display: flex; gap: 16px; }
  .why-list .num {
    flex: 0 0 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--gold-2); color: var(--gold-2);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-family: Arial, sans-serif; font-size: 16px;
  }
  .why-list h4 { font-size: 17px; margin-bottom: 4px; color: #fff; font-family: Arial, sans-serif; }
  .why-list p { font-size: 14.5px; color: var(--text-muted); }
  .why-card {
    background: var(--charcoal); border: 1px solid rgba(212,175,55,0.3); border-radius: 14px;
    padding: 40px 32px;
    text-align: center;
  }
  .why-card p.quote { font-size: 17px; font-style: italic; color: var(--text-light); margin: 0 0 22px; }
  .why-card .attorney { display: flex; align-items: center; justify-content: center; gap: 14px; }
  .why-card .attorney .dot { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-1), var(--gold-4)); display:flex; align-items:center; justify-content:center; color:#0a0a0a; font-weight:900; font-family: Arial, sans-serif;}
  .why-card .attorney b { display: block; font-size: 15px; color: #fff; font-family: Arial, sans-serif; }
  .why-card .attorney span { font-size: 13px; color: var(--text-muted); }

  /* Form */
  .contact-wrap {
    background: linear-gradient(180deg, #fff, #fbf6e8);
  }
  .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; }
  .contact-info h3 { font-size: 22px; margin-bottom: 14px; color: #16130a; }
  .contact-info p { color: #555; margin-bottom: 24px; }
  .contact-line { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
  .contact-line .ic {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--black); color: var(--gold-2);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
  }
  .contact-line b { display: block; font-size: 15px; color: #16130a; }
  .contact-line span { font-size: 13.5px; color: #666; }

  .form-card {
    background: #fff; border-radius: 14px; padding: 36px; border: 1px solid #eee1c3;
    box-shadow: 0 10px 34px rgba(0,0,0,0.06);
  }
  .form-card h3 { font-size: 20px; margin-bottom: 4px; color: #16130a; }
  .form-card p.sub { font-size: 14px; color: #777; margin-bottom: 22px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label { font-size: 13px; font-weight: 700; color: #333; font-family: Arial, sans-serif; }
  .form-field input, .form-field select, .form-field textarea {
    border: 1.5px solid #ddd; border-radius: 8px; padding: 11px 12px; font-size: 14.5px; font-family: inherit;
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold-2); }
  .form-submit {
    width: 100%; margin-top: 6px;
    background: linear-gradient(180deg, var(--gold-1), var(--gold-4));
    color: var(--black); font-weight: 900; font-family: Arial, sans-serif;
    border: none; padding: 15px; border-radius: 8px; font-size: 15px; cursor: pointer;
  }

  /* Footer */
  footer { background: var(--black); color: var(--text-muted); padding: 54px 0 26px; }
  .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .footer-brand img { width: 40px; height: 40px; }
  .footer-brand b { color: var(--gold-2); font-size: 17px; font-family: Arial, sans-serif; }
  footer h5 { color: #fff; font-family: Arial, sans-serif; font-size: 14px; letter-spacing: 1px; margin-bottom: 16px; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  footer ul a { font-size: 14px; color: var(--text-muted); }
  footer ul a:hover { color: var(--gold-2); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 13px;
  }
  .social-row { display: flex; gap: 12px; }
  .social-row a {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.5);
    display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--gold-2);
  }

  .wa-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 200;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  @media (max-width: 860px) {
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why .container, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 520px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 26px; }
  }

/* Inner pages (Demandas Ejecutivas, Blog, Política) */
.page-hero {
  background: radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.10), transparent 55%), linear-gradient(180deg, #0a0a0a 0%, #14120f 100%);
  color: #fff; padding: 64px 0 56px; text-align: center;
}
.page-hero h1 { font-size: 38px; font-weight: 900; margin: 14px 0 10px; }
.page-hero p { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 17px; }
.breadcrumb { font-size: 13px; color: var(--gold-2); font-family: Arial, sans-serif; }
.breadcrumb a { color: var(--text-muted); }

.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { font-size: 26px; margin: 44px 0 16px; color: #16130a; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: #444; margin-bottom: 14px; font-size: 16px; }
.content-block ul, .content-block ol { color: #444; margin: 0 0 16px 22px; }
.content-block li { margin-bottom: 8px; }
.content-block .callout {
  background: #fbf6e8; border-left: 4px solid var(--gold-2); border-radius: 6px;
  padding: 18px 22px; margin: 22px 0; font-size: 15px; color: #333;
}

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 30px 0 10px; }
.step-card { background: #fff; border: 1px solid #eee1c3; border-radius: 10px; padding: 22px 18px; text-align: center; }
.step-card .step-num {
  width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 12px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-4));
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-family: Arial, sans-serif; color: #0a0a0a;
}
.step-card h4 { font-size: 15px; margin-bottom: 6px; font-family: Arial, sans-serif; }
.step-card p { font-size: 13.5px; color: #666; margin: 0; }

.faq-item { border-bottom: 1px solid #eee1c3; padding: 20px 0; }
.faq-item h4 { font-family: Arial, sans-serif; font-size: 16.5px; margin-bottom: 8px; color: #16130a; }
.faq-item p { margin: 0; color: #555; font-size: 15px; }

.cta-banner {
  background: var(--black); border-radius: 16px; padding: 44px 36px; text-align: center; margin: 50px 0 10px;
}
.cta-banner h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 22px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 900px; margin: 0 auto; }
.blog-card { background: #fff; border: 1px solid #eee1c3; border-radius: 12px; padding: 26px; }
.blog-card .meta { font-size: 12.5px; color: var(--gold-3); font-family: Arial, sans-serif; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; color: #16130a; line-height: 1.35; }
.blog-card p { color: #555; font-size: 14.5px; margin-bottom: 14px; }
.blog-card .read-more { font-family: Arial, sans-serif; font-weight: 800; font-size: 13.5px; color: var(--gold-3); }
.blog-note {
  max-width: 900px; margin: 0 auto 40px; background: #fbf6e8; border: 1px solid #eee1c3; border-radius: 10px;
  padding: 16px 20px; font-size: 14px; color: #665a2c; text-align: center;
}

/* Legal doc */
.legal-doc h2 { font-size: 20px; margin: 34px 0 12px; color: #16130a; font-family: Arial, sans-serif; }
.legal-doc h3 { font-size: 16px; margin: 20px 0 8px; color: #4a3d0f; font-family: Arial, sans-serif; }
.legal-doc p, .legal-doc li { font-size: 15px; color: #444; }
.legal-doc .updated { font-size: 13px; color: #888; margin-bottom: 30px; font-style: italic; }

/* Form status message */
.form-status { font-size: 14px; margin-top: 14px; font-family: Arial, sans-serif; font-weight: 600; display: none; }
.form-status.ok { color: #1a7a3c; display: block; }
.form-status.err { color: #b12; display: block; }

@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
}
