/* AsesorJuridico.info — Global Styles */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:      #0f1e35;
      --navy2:     #1a2e4a;
      --gold:      #b8963e;
      --gold-lt:   #d4ae5c;
      --cream:     #f7f3ed;
      --white:     #ffffff;
      --text:      #374151;
      --muted:     #6b7280;
      --border:    #e2d9cc;
      --serif:     'Playfair Display', Georgia, serif;
      --sans:      'Source Sans 3', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: rgba(15,30,53,0.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(184,150,62,0.3);
    }
    .hdr {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 1.5rem; height: 70px; gap: 1rem;
    }
    .logo img, .logo svg { height: 42px; width: auto; display: block; }

    nav { display: flex; align-items: center; gap: 2rem; }
    nav a {
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: rgba(255,255,255,0.75);
      text-decoration: none; transition: color 0.2s;
    }
    nav a:hover { color: var(--gold-lt); }

    .nav-cta {
      background: var(--gold); color: var(--white) !important;
      padding: 0.55rem 1.2rem; border-radius: 3px;
      font-weight: 600 !important; letter-spacing: 0.04em !important;
      transition: background 0.2s !important; white-space: nowrap;
    }
    .nav-cta:hover { background: var(--gold-lt) !important; }

    .burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .burger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

    @media (max-width: 768px) {
      .nav-links { 
        display: none; position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--navy); flex-direction: column;
        padding: 1.5rem; gap: 1.25rem;
        border-bottom: 1px solid rgba(184,150,62,0.3);
      }
      .nav-links.open { display: flex; }
      .burger { display: block; }
    }

    /* ===== HERO ===== */
    .hero {
      padding-top: 70px;
      background: var(--navy);
      min-height: 100svh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(184,150,62,0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      padding: 3rem 1.5rem;
      display: grid; grid-template-columns: 1fr;
      gap: 2.5rem; align-items: center;
    }
    @media (min-width: 900px) {
      .hero-inner { grid-template-columns: 1fr 1fr; gap: 5rem; padding: 4rem 2rem; }
    }

    .hero-text { order: 2; }
    .hero-photo { order: 1; }
    @media (min-width: 900px) { .hero-text { order: 1; } .hero-photo { order: 2; } }

    .tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.25rem;
    }
    .tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }

    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 5.5vw, 3.6rem);
      font-weight: 400; line-height: 1.15;
      color: var(--white); margin-bottom: 1.5rem;
    }
    .hero h1 em { font-style: italic; color: var(--gold-lt); }

    .hero-desc {
      font-size: 1.05rem; color: rgba(255,255,255,0.65);
      line-height: 1.85; margin-bottom: 2.25rem; max-width: 500px;
    }
    .hero-desc strong { color: rgba(255,255,255,0.9); font-weight: 500; }

    .hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--gold); color: var(--white);
      padding: 0.9rem 1.8rem; border-radius: 3px;
      font-weight: 600; font-size: 0.95rem; text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .btn-wa {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: #25d366; color: var(--white);
      padding: 0.9rem 1.8rem; border-radius: 3px;
      font-weight: 600; font-size: 0.95rem; text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-wa:hover { background: #1da851; transform: translateY(-2px); }
    .nav-cta-wa {
      background: #25d366; color: var(--white) !important;
      padding: 0.55rem 1.2rem; border-radius: 3px;
      font-weight: 600 !important; font-size: 0.82rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
      transition: background 0.2s !important; white-space: nowrap;
    }
    .nav-cta-wa:hover { background: #1da851 !important; }
    .btn-pair { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
    .btn-divider { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 0.4rem;
      color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.95rem;
      text-decoration: none; border-bottom: 1px solid rgba(184,150,62,0.5);
      padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

    /* Hero photo */
    .hero-photo-wrap {
      position: relative; max-width: 540px; margin: 0 auto;
    }
    .hero-photo-wrap img {
      width: 100%; border-radius: 6px; display: block;
      box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    }
    .hero-card {
      position: absolute; bottom: -1.25rem; left: -1.25rem;
      background: var(--gold); color: var(--white);
      padding: 1.1rem 1.4rem; border-radius: 4px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .hero-card .num {
      font-family: var(--serif); font-size: 2.4rem;
      font-weight: 600; line-height: 1; display: block;
    }
    .hero-card .lbl { font-size: 0.8rem; font-weight: 500; opacity: 0.9; }
    .hero-card-badge {
      position: absolute; top: 1.25rem; right: -1rem;
      background: var(--navy2); color: var(--white);
      border: 1px solid rgba(184,150,62,0.4);
      padding: 0.6rem 1rem; border-radius: 4px; font-size: 0.78rem;
      font-weight: 500; white-space: nowrap;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    /* ===== ESPECIALIDADES ===== */
    .specs {
      background: var(--cream); padding: 5.5rem 1.5rem;
    }
    .section-wrap { max-width: 1200px; margin: 0 auto; }

    .section-header { margin-bottom: 3rem; }
    .section-header .tag { color: var(--gold); }
    .section-header h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 400; color: var(--navy); line-height: 1.2;
    }
    .section-header h2 em { font-style: italic; }

    .specs-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    @media (min-width: 560px) { .specs-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 900px) { .specs-grid { grid-template-columns: repeat(4, 1fr); } }

    .spec-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: 3px solid var(--gold);
      border-radius: 4px; padding: 2rem 1.5rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .spec-card:hover { box-shadow: 0 12px 40px rgba(15,30,53,0.1); transform: translateY(-3px); }

    .spec-img {
      width: 100%; height: 160px; object-fit: cover;
      border-radius: 3px; margin-bottom: 1.25rem; display: block;
    }
    .spec-card h3 {
      font-family: var(--serif); font-size: 1.25rem;
      font-weight: 600; color: var(--navy); margin-bottom: 0.5rem;
    }
    .spec-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

    /* ===== SOBRE MÍ ===== */
    .about { padding: 5.5rem 1.5rem; background: var(--white); }

    .about-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 3.5rem; align-items: center;
    }
    @media (min-width: 900px) { .about-grid { grid-template-columns: 5fr 6fr; gap: 6rem; } }

    .about-imgs { position: relative; }
    .about-img-main {
      width: 100%; border-radius: 6px; display: block;
      box-shadow: 0 20px 60px rgba(15,30,53,0.12);
    }
    @media (max-width: 899px) { }
    @media (max-width: 899px) { }

    .about-text .section-header h2 { color: var(--navy); }
    .about-text p {
      font-size: 1rem; color: var(--text);
      line-height: 1.9; margin-bottom: 1.25rem;
    }
    .about-text p strong { color: var(--navy); font-weight: 600; }

    .badge-col {
      display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem;
    }
    .badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--cream); border: 1px solid var(--border);
      padding: 0.5rem 1rem; border-radius: 3px;
      font-size: 0.82rem; font-weight: 600; color: var(--navy);
    }
    .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

    /* ===== PROCESO ===== */
    .proceso {
      background: var(--navy); padding: 5.5rem 1.5rem;
    }
    .proceso .section-header h2 { color: var(--white); }
    .proceso .section-header h2 em { color: var(--gold-lt); }

    .steps {
      display: grid; grid-template-columns: 1fr;
      gap: 2rem; margin-top: 1rem;
    }
    @media (min-width: 700px) { .steps { grid-template-columns: 1fr 1fr; } }

    .step {
      display: flex; gap: 1.25rem; align-items: flex-start;
    }
    .step-n {
      flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
      background: rgba(184,150,62,0.15); border: 1px solid var(--gold);
      color: var(--gold); font-family: var(--serif);
      font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
    }
    .step h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: 0.4rem; }
    .step p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

    /* ===== OPINIONES ===== */
    .opiniones { padding: 5.5rem 1.5rem; background: var(--cream); }
    .opiniones .section-header h2 { color: var(--navy); }
    .opiniones .section-header h2 em { color: var(--gold); }

    .ops-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 1rem; margin-top: 0.5rem;
    }
    @media (min-width: 600px) { .ops-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 900px) { .ops-grid { grid-template-columns: repeat(3, 1fr); } }

    .op-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 4px; overflow: hidden;
      transition: box-shadow 0.2s;
    }
    .op-card:hover { box-shadow: 0 8px 30px rgba(15,30,53,0.08); }
    .op-card img { width: 100%; display: block; }

    /* ===== VIDEOS ===== */
    .videos { padding: 5.5rem 1.5rem; background: var(--white); }
    .videos .section-header h2 { color: var(--navy); }
    .videos .section-header h2 em { color: var(--gold); }

    .videos-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 0.75rem;
    }
    @media (min-width: 700px) { .videos-grid { grid-template-columns: 1fr 1fr; } }

    .v-link {
      display: flex; align-items: center; gap: 1rem;
      padding: 1rem 1.25rem; background: var(--cream);
      border: 1px solid var(--border); border-radius: 4px;
      text-decoration: none; color: var(--navy);
      font-size: 0.9rem; font-weight: 400; text-align: left;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }
    .v-link:hover { border-color: #ff0000; background: #fff5f5; box-shadow: 0 4px 16px rgba(255,0,0,0.08); }
    .v-icon {
      flex-shrink: 0; width: 40px; height: 28px;
      background: #ff0000; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .v-icon::after {
      content: '';
      width: 0; height: 0;
      border-style: solid;
      border-width: 7px 0 7px 14px;
      border-color: transparent transparent transparent #fff;
      margin-left: 3px;
    }
    .v-badge {
      margin-left: auto; flex-shrink: 0;
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: #ff0000;
      background: #fff0f0; border: 1px solid #ffcccc;
      padding: 0.2rem 0.5rem; border-radius: 3px;
    }

    /* ===== UBICACIONES ===== */
    .ubicaciones { padding: 5.5rem 1.5rem; background: var(--navy2); }
    .ubicaciones .section-header h2 { color: var(--white); }
    .ubicaciones .section-header h2 em { color: var(--gold-lt); }

    .ubic-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 2rem;
    }
    @media (min-width: 700px) { .ubic-grid { grid-template-columns: 1fr 1fr; } }

    .ubic-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px; overflow: hidden;
      transition: border-color 0.2s;
    }
    .ubic-card:hover { border-color: rgba(184,150,62,0.5); }
    .ubic-card a { display: block; }
    .ubic-card img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; transition: opacity 0.2s; opacity: 0.8; }
    .ubic-card:hover img { opacity: 1; }
    .ubic-info { padding: 1.5rem; }
    .ubic-info h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: 0.5rem; }
    .ubic-info p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 0.5rem; }
    .ubic-info a { color: var(--gold-lt); font-size: 0.9rem; font-weight: 500; text-decoration: none; }
    .ubic-info a:hover { text-decoration: underline; }

    /* ===== CTA ===== */
    .cta-sec {
      padding: 5rem 1.5rem;
      background: var(--gold);
      text-align: center;
    }
    .cta-sec h2 {
      font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 400; color: var(--white); margin-bottom: 0.75rem;
    }
    .cta-sec p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
    .btn-white {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--white); color: var(--navy);
      padding: 1rem 2rem; border-radius: 3px;
      font-weight: 700; font-size: 1rem; text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

    /* ===== FOOTER ===== */
    footer {
      background: #080f1a; color: rgba(255,255,255,0.45);
      padding: 3.5rem 1.5rem 2rem; font-size: 0.83rem;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    @media (min-width: 600px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

    footer img.flogo { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: 0.5; margin-bottom: 1rem; }
    footer h4 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; font-weight: 600; }
    footer a { color: rgba(255,255,255,0.45); text-decoration: none; display: block; margin-bottom: 0.4rem; transition: color 0.2s; }
    footer a:hover { color: var(--gold-lt); }
    .social-row { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
    .social-row img { width: 24px; height: 24px; filter: brightness(0) invert(1); opacity: 0.4; transition: opacity 0.2s; }
    .social-row a:hover img { opacity: 0.9; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 2.5rem; padding-top: 1.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; }

    /* ===== STICKY MOBILE ===== */
    .sticky-wa {
      display: none;
    }
    @media (max-width: 768px) {
      .sticky-wa {
        display: flex; position: fixed;
        bottom: 1.5rem; right: 1.5rem; z-index: 199;
        background: #25d366; color: var(--white);
        width: 56px; height: 56px; border-radius: 50%;
        align-items: center; justify-content: center;
        box-shadow: 0 4px 20px rgba(37,211,102,0.4);
        text-decoration: none; transition: transform 0.2s;
      }
      .sticky-wa:hover { transform: scale(1.08); }
      .sticky-wa img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
    }

    /* Animations */
    @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
    .hero-text { animation: fadeUp 0.7s ease both; }
    .hero-photo { animation: fadeUp 0.7s 0.15s ease both; }
  