MIX · extractor de estilos
Template: estudiojuridicora.com/index.html · mtime: 2026-03-31 20:56
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 3 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: estudiojuridicora.com/index.html */
/* Template mtime: 2026-03-31 20:56:43 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:opsz,[email protected],300;9..40,400;9..40,500;9..40,600&display=swap */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ============================================
       VARIABLES & RESET
    ============================================ */
    :root {
      --navy:        #071d35;
      --navy-mid:    #0a2b4a;
      --blue:        #124b7a;
      --blue-light:  #1e6aab;
      --accent:      #1697af;       /* gold accent */
      --accent-dim:  rgba(200,169,110,.15);
      --cream:       #f8f5ef;
      --off-white:   #fafcff;
      --text:        #0b1c2e;
      --muted:       #5a6e84;
      --border:      rgba(10,43,74,.1);
      --r-card:      28px;
      --r-btn:       60px;
      --ease:        cubic-bezier(.22,.9,.36,1);
    }

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

    html { scroll-behavior: smooth; }

    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }


    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: #fff;
      color: var(--text);
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 12px; }

    img { display: block; max-width: 100%; }

    a { text-decoration: none; color: inherit; }

    /* ============================================
       TYPOGRAPHY
    ============================================ */
    h1, h2, h3, .display { font-family: 'Playfair Display', Georgia, serif; }

    .section-title {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.12;
      letter-spacing: -.02em;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.65;
      font-weight: 400;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 18px;
      border-radius: 60px;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--accent);
      background: var(--accent-dim);
      border: 1px solid rgba(200,169,110,.3);
      margin-bottom: 20px;
    }

    /* ============================================
       SECTIONS
    ============================================ */
    .section { padding: 112px 0; position: relative; }
    .section-alt { background: var(--cream); }

    /* ============================================
       BUTTONS
    ============================================ */
    .btn-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 30px;
      min-height: 54px;
      border-radius: var(--r-btn);
      font-weight: 600;
      font-size: .9rem;
      transition: all .35s var(--ease);
      border: none;
      cursor: pointer;
      text-decoration: none;
      letter-spacing: .01em;
    }

    .btn-primary-dark {
      background: var(--navy);
      color: #fff;
      box-shadow: 0 12px 32px -8px rgba(7,29,53,.35);
    }
    .btn-primary-dark:hover {
      background: var(--blue);
      transform: translateY(-3px);
      box-shadow: 0 20px 40px -10px rgba(7,29,53,.45);
      color: #fff;
    }

    .btn-gold {
      background: var(--accent);
      color: var(--navy);
      font-weight: 700;
      box-shadow: 0 10px 28px -6px rgba(200,169,110,.4);
    }
    .btn-gold:hover {
      background: #8dd4b3;
      transform: translateY(-3px);
      box-shadow: 0 18px 36px -8px rgba(200,169,110,.55);
      color: var(--navy);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--navy);
      border: 1.5px solid rgba(10,43,74,.25);
    }
    .btn-outline-dark:hover {
      border-color: var(--navy);
      background: rgba(10,43,74,.04);
      transform: translateY(-2px);
    }

    /* ============================================
       NAVBAR
    ============================================ */
    .navbar {
      padding: .75rem 0;
      transition: all .3s ease;
      background: rgba(255,255,255,.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 30px rgba(0,0,0,.06);
    }

    .navbar.scrolled {
      background: rgba(255,255,255,.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 30px rgba(0,0,0,.06);
      padding: .5rem 0;
    }

    .navbar-toggler {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: 1px solid rgba(10,43,74,.16) !important;
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(10,43,74,.08);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(200,169,110,.18);
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%287,29,53,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      width: 1.35em;
      height: 1.35em;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .navbar-brand img {
      height: 40px;
      width: auto;
      flex: 0 0 auto;
    }
    
    .brand-title {
      display: block;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--navy);
      line-height: 1.02;
      margin: 0;
    }
    
    .brand-subtitle {
      display: block;
      font-size: .42rem;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: .03em;
      text-transform: uppercase;
      line-height: 1.05;
      margin: 1px 0 0;
    }
    
    .navbar-nav .nav-link {
      font-weight: 500;
      color: var(--navy);
      padding: .55rem 1rem;
      border-radius: 40px;
      font-size: .88rem;
      transition: all .2s;
    }
    
    .navbar-nav .nav-link:hover {
      background: rgba(10,43,74,.06);
      color: var(--blue);
    }
    
    .navbar-cta {
      margin-left: 12px;
    }
    
    .brand-text {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 1px;
      min-width: 0;
      line-height: 1;
    }
    /* ============================================
       HERO
    ============================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--navy);
      overflow: hidden;
      padding: 140px 0 100px;
    }

    /* Animated bg grid */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200,169,110,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,169,110,.07) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      animation: gridDrift 30s linear infinite;
    }

    @keyframes gridDrift {
      from { background-position: 0 0; }
      to   { background-position: 60px 60px; }
    }

    .hero-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(90px);
    }

    .hero-glow-1 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(18,75,122,.55), transparent 70%);
      top: -100px; right: -80px;
    }

    .hero-glow-2 {
      width: 350px; height: 350px;
      background: radial-gradient(circle, rgba(200,169,110,.18), transparent 70%);
      bottom: 0; left: 5%;
    }

    .hero-title {
      font-size: clamp(2.6rem, 5.5vw, 4.8rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.06;
      letter-spacing: -.03em;
      margin-bottom: 24px;
    }

    .hero-title span {
      color: var(--accent);
    }

    .hero-text {
      font-size: 1.05rem;
      color: rgba(255,255,255,.7);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .hero-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 40px;
      padding: 16px;
      backdrop-filter: blur(4px);
      transition: transform .4s var(--ease);
    }

    .hero-card:hover { transform: translateY(-8px); }

    .hero-media-wrap {
      background: rgba(255,255,255,.08);
      border-radius: 28px;
      overflow: hidden;
      min-height: 440px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-media-wrap img {
      width: 100%;
      height: auto;
      transition: transform .6s ease;
    }

    .hero-card:hover .hero-media-wrap img { transform: scale(1.03); }

    /* Stats bar */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 44px;
    }

    .mini-stat {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      padding: 20px 16px;
      transition: all .3s var(--ease);
      backdrop-filter: blur(4px);
    }

    .mini-stat:hover {
      background: rgba(255,255,255,.12);
      transform: translateY(-4px);
    }

    .mini-stat strong {
      display: block;
      font-size: .95rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 4px;
    }

    .mini-stat span {
      font-size: .8rem;
      color: rgba(255,255,255,.6);
      line-height: 1.4;
    }

    /* ============================================
       DIVIDER WAVE
    ============================================ */
    .wave-divider {
      width: 100%;
      overflow: hidden;
      line-height: 0;
      background: var(--navy);
    }

    .wave-divider svg { display: block; width: 100%; }

    /* ============================================
       ABOUT
    ============================================ */
    .about-box, .about-side {
      background: #fff;
      border-radius: var(--r-card);
      border: 1px solid var(--border);
      padding: 40px 44px;
      box-shadow: 0 12px 40px -10px rgba(10,43,74,.07);
      transition: all .3s var(--ease);
    }

    .about-box:hover, .about-side:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px -12px rgba(10,43,74,.12);
    }

    .about-box p, .about-side p {
      color: var(--muted);
      line-height: 1.75;
      font-size: .97rem;
    }

    .about-box p + p { margin-top: 16px; }

    .check {
      width: 36px; height: 36px;
      min-width: 36px;
      background: var(--accent-dim);
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: .85rem;
    }

    .about-points li span:last-child {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.55;
      padding-top: 2px;
    }

    /* ============================================
       SERVICES GRID
    ============================================ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: #fff;
      border-radius: var(--r-card);
      padding: 36px 28px;
      border: 1px solid var(--border);
      box-shadow: 0 8px 30px -8px rgba(10,43,74,.06);
      transition: all .38s var(--ease);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 28px 50px -12px rgba(10,43,74,.14);
      border-color: rgba(200,169,110,.3);
    }

    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--cream), rgba(200,169,110,.1));
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--navy);
      font-size: 1.6rem;
      transition: all .3s;
      border: 1px solid rgba(200,169,110,.2);
    }

    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--accent-dim), rgba(200,169,110,.2));
      transform: scale(1.06) rotate(-2deg);
    }

    .service-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--navy);
      line-height: 1.3;
    }

    .service-card p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ============================================
       WHY CHOOSE
    ============================================ */
    .choose-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .choose-card {
      background: #fff;
      border-radius: var(--r-card);
      padding: 32px 26px;
      border: 1px solid var(--border);
      box-shadow: 0 8px 28px -8px rgba(10,43,74,.06);
      transition: all .38s var(--ease);
    }

    .choose-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 44px -10px rgba(10,43,74,.13);
      border-color: rgba(200,169,110,.25);
    }

    .choose-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--cream), rgba(200,169,110,.1));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--navy-mid);
      font-size: 1.4rem;
      transition: all .3s;
      border: 1px solid rgba(200,169,110,.2);
    }

    .choose-card:hover .choose-icon {
      background: var(--accent-dim);
      color: var(--accent);
      transform: scale(1.05);
    }

    .choose-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .choose-card p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ============================================
       COMMITMENT BAND
    ============================================ */
    .commitment-band {
      background: var(--navy);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }

    .commitment-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200,169,110,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,169,110,.06) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    .commitment-band .eyebrow { color: var(--accent); background: var(--accent-dim); border-color: rgba(200,169,110,.3); }

    .commitment-band .section-title { color: #fff; }

    .commitment-band p { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.7; max-width: 640px; margin: 0 auto; }

    /* ============================================
       GALLERY (unchanged)
    ============================================ */
    .gal-gallery .carousel { max-width: 980px; margin-inline: auto; position: relative; }
    .gal-frame { height: clamp(240px, 48vh, 500px); background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 16px 34px rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; padding: 10px; border: 1px solid rgba(15,59,112,.10); }
    .gal-img { width: auto!important; max-width: 100%; height: auto!important; max-height: 100%; object-fit: contain!important; object-position: center; display: block; cursor: zoom-in; }
    .gal-gallery .carousel-control-prev, .gal-gallery .carousel-control-next { z-index: 20; width: 52px; height: 52px; top: 50%; transform: translateY(-50%); opacity: 1; background: rgba(15,59,112,.72); border-radius: 50%; margin: 0 12px; }
    .gal-gallery .carousel-control-prev { left: 0; }
    .gal-gallery .carousel-control-next { right: 0; }
    .gal-gallery .gal-ctrl-icon { width: 2.6rem; height: 2.6rem; background-size: 58% 58%; }
    .gal-gallery .carousel-indicators { z-index: 10; bottom: -52px; }
    .gal-gallery .carousel-indicators button { width: 10px; height: 10px; border-radius: 50%; background: rgba(15,59,112,.35); border: none; }
    .gal-gallery .carousel-indicators button.active { background: #0a2b4a; }
    .gal-gallery { padding-bottom: 60px; }
    #galLightbox .modal-content { background: #000; border: none; }
    #galLightboxImg { max-height: 86vh; width: 100%; height: auto; object-fit: contain; background: #000; }
    .gal-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); border: 0; width: 46px; height: 46px; border-radius: 999px; background: rgba(255,255,255,.18); color: #fff; font-size: 32px; line-height: 46px; text-align: center; z-index: 5; cursor: pointer; }
    .gal-lightbox-nav:hover { background: rgba(255,255,255,.28); }
    .gal-lightbox-nav.gal-prev { left: 10px; }
    .gal-lightbox-nav.gal-next { right: 10px; }

    /* ============================================
       FAQ ACCORDION
    ============================================ */
    .accordion-wrap { max-width: 800px; margin: 0 auto; }

    .accordion-item {
      border: 1px solid var(--border) !important;
      background: #fff;
      border-radius: var(--r-card) !important;
      margin-bottom: 14px;
      box-shadow: 0 4px 20px -6px rgba(10,43,74,.06);
      overflow: hidden;
    }

    .accordion-button {
      font-weight: 600;
      background: #fff;
      padding: 22px 30px;
      border-radius: 0 !important;
      color: var(--navy);
      font-size: 1rem;
      box-shadow: none !important;
      font-family: 'DM Sans', sans-serif;
    }

    .accordion-button::after {
      filter: none;
      background-size: 16px;
    }

    .accordion-button:not(.collapsed) {
      background: #f8f5ef;
      color: var(--navy);
    }

    .accordion-body {
      padding: 4px 30px 24px;
      color: var(--muted);
      line-height: 1.7;
      font-size: .95rem;
    }

    /* ============================================
       CONTACT
    ============================================ */
    .contact-card {
      background: #fff;
      border-radius: var(--r-card);
      border: 1px solid var(--border);
      box-shadow: 0 8px 36px -8px rgba(10,43,74,.07);
      padding: 40px 44px;
      transition: all .3s var(--ease);
    }

    .contact-card:hover {
      box-shadow: 0 20px 50px -12px rgba(10,43,74,.12);
    }

    .contact-item .icon {
      width: 48px; height: 48px; min-width: 48px;
      background: var(--cream);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      border: 1px solid rgba(200,169,110,.2);
      transition: .2s;
    }

    .contact-item:hover .icon {
      background: var(--accent-dim);
      color: var(--accent);
    }

    .contact-item a, .contact-item span {
      font-size: .93rem;
      color: var(--muted);
    }

    .contact-item a:hover { color: var(--blue); }

    .contact-item strong {
      display: block;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 2px;
    }

    .form-control, .form-select {
      border-radius: 16px;
      border: 1.5px solid rgba(10,43,74,.15);
      padding: .85rem 1.1rem;
      font-size: .93rem;
      transition: .2s;
      background: var(--cream);
      font-family: 'DM Sans', sans-serif;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(200,169,110,.12);
      background: #fff;
    }

    textarea.form-control { border-radius: 18px; resize: vertical; }

    /* ============================================
       FOOTER
    ============================================ */
    footer {
      background: var(--navy);
      color: #fff;
      padding: 80px 0 32px;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .footer-logo {
      height: 48px;
    }

    .footer-brand-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
    }

    .footer-copy {
      color: rgba(255,255,255,.55);
      font-size: .88rem;
      line-height: 1.7;
      max-width: 280px;
      margin-top: 16px;
    }

    .footer-title {
      font-weight: 700;
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--accent);
      margin-bottom: 20px;
    }

    .footer-links li, .footer-contact li {
      margin-bottom: 10px;
    }

    .footer-links a, .footer-contact a, .footer-contact span {
      color: rgba(255,255,255,.6);
      font-size: .9rem;
      transition: .2s;
    }

    .footer-links a:hover, .footer-contact a:hover { color: #fff; }

    .footer-divider {
      border-top: 1px solid rgba(255,255,255,.1);
      margin: 48px 0 24px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      color: rgba(255,255,255,.4);
      font-size: .82rem;
    }

    .footer-bottom a { color: rgba(255,255,255,.6); }
    .footer-bottom a:hover { color: var(--accent); }

    /* ============================================
       SCROLL REVEAL
    ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .65s var(--ease), transform .65s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }
    .reveal-delay-5 { transition-delay: .5s; }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 991px) {
      .section { padding: 80px 0; }
      .services-grid, .choose-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-stats { grid-template-columns: 1fr; }
      .hero { min-height: auto; padding: 130px 0 80px; }
      .hero-text { max-width: 100%; }
      .about-box, .about-side, .contact-card { padding: 30px 28px; }

      .navbar .container {
        gap: 10px;
      }

      .navbar-brand {
        max-width: calc(100% - 58px);
        gap: 10px;
      }

      .navbar-brand img {
        height: 40px;
        width: auto;
        flex: 0 0 auto;
      }

      .brand-title {
        font-size: .98rem;
        line-height: 1.02;
      }

      .brand-subtitle {
        font-size: .56rem;
        line-height: 1.05;
        margin-top: 1px;
      }

      .navbar-collapse {
        margin-top: 14px;
        background: #fff;
        border: 1px solid rgba(10,43,74,.08);
        border-radius: 22px;
        padding: 14px;
        box-shadow: 0 18px 40px rgba(10,43,74,.12);
      }

      .navbar-nav {
        align-items: stretch !important;
        gap: 4px;
      }

      .navbar-nav .nav-link {
        display: block;
        padding: .9rem 1rem;
      }

      .navbar-cta {
        width: 100%;
        margin: 12px 0 0;
      }
    }

    @media (max-width: 640px) {
      .services-grid, .choose-grid { grid-template-columns: 1fr; }
      .hero-title { font-size: 2.4rem; }
      .btn-main { width: 100%; justify-content: center; }
      .hero-actions { flex-direction: column; }
    }


    @media (max-width: 991.98px) {
      .navbar > .container {
        flex-wrap: nowrap;
        align-items: center;
      }

      .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 10px;
      }

      .brand-text {
        min-width: 0;
        overflow: hidden;
      }

      .brand-title,
      .brand-subtitle {
        white-space: normal;
        word-break: break-word;
      }

      .navbar-toggler {
        flex: 0 0 46px;
        margin-left: auto;
      }

      .navbar-collapse {
        flex-basis: 100%;
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        z-index: 1000;
        background: #ffffff;
      }

      .navbar-collapse:not(.show) {
        display: none !important;
      }

      .navbar-collapse.show {
        display: block !important;
      }

      .navbar-nav,
      .navbar-cta {
        width: 100%;
      }
    }

    .hero-mobile-media {
      display: none;
    }

    @media (max-width: 575.98px) {
      .container,
      .container-sm {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
      }

      .navbar-brand img {
        height: 34px;
      }

      .brand-title {
        font-size: .86rem;
        line-height: 1.02;
      }

      .brand-subtitle {
        font-size: .48rem;
        line-height: 1.05;
        margin-top: 1px;
      }

      .hero {
        padding: 118px 0 70px;
      }

      .hero .row {
        row-gap: 18px !important;
      }

      .hero-text {
        margin-bottom: 20px;
      }

      .hero-mobile-media {
        display: block;
        margin-bottom: 20px;
      }

      .hero-mobile-media .hero-card {
        padding: 12px;
        border-radius: 28px;
      }

      .hero-mobile-media .hero-media-wrap {
        min-height: auto;
        padding: 18px;
      }

      .hero-mobile-media .hero-media-wrap img {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
        object-position: center;
      }

      .hero > .container .col-lg-6:last-child {
        display: none;
      }

      .hero-actions {
        margin-top: 0;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
.flashes-loop-section{
      background: linear-gradient(180deg, #ffffff 0%, #f8f5ef 100%);
      overflow: hidden;
      position: relative;
    }

    .flashes-loop-wrap{
      max-width: 1120px;
      margin: 0 auto;
    }

    .flashes-stage{
      position: relative;
      min-height: 470px;
      display: flex;
      align-items: center;
      justify-content: center;
      isolation: isolate;
    }

    .flashes-stage::before{
      content: "";
      position: absolute;
      left: 50%;
      bottom: 10px;
      transform: translateX(-50%);
      width: min(760px, 82%);
      height: 120px;
      background: radial-gradient(circle, rgba(10,43,74,.10) 0%, rgba(10,43,74,.04) 42%, transparent 72%);
      filter: blur(22px);
      z-index: 0;
      pointer-events: none;
    }

    .flash-loop-card{
      position: absolute;
      width: clamp(250px, 28vw, 355px);
      aspect-ratio: 4 / 5;
      border-radius: 30px;
      background:
        radial-gradient(circle at top right, rgba(200,169,110,.16), transparent 35%),
        linear-gradient(135deg, #fcfcfc 0%, #f5f7fa 100%);
      border: 1px solid rgba(10,43,74,.06);
      box-shadow: 0 18px 40px rgba(7,29,53,.10);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      will-change: transform, opacity, filter;
      transition:
        transform 1s cubic-bezier(.22,.8,.2,1),
        opacity 1s ease,
        filter 1s ease,
        box-shadow 1s ease;
      backface-visibility: hidden;
    }

    .flash-loop-card::before{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 32%);
      pointer-events:none;
      z-index:1;
    }

    .flash-loop-card::after{
      content:"";
      position:absolute;
      inset:-10%;
      background: linear-gradient(115deg, transparent 24%, rgba(255,255,255,.70) 50%, transparent 76%);
      transform: translateX(-140%);
      opacity: 0;
      pointer-events:none;
      z-index:2;
    }

    .flash-loop-card img{
      position: relative;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      filter: drop-shadow(0 16px 24px rgba(10,43,74,.14));
      pointer-events: none;
      user-select: none;
      transition: transform 1s cubic-bezier(.22,.8,.2,1), filter 1s ease;
    }

    .flash-pos-center{
      transform: translateX(0) scale(1) rotate(0deg);
      opacity: 1;
      z-index: 5;
      filter: blur(0) saturate(1.08) brightness(1.02);
      box-shadow: 0 28px 64px rgba(7,29,53,.20);
      animation: flashCenterBoom .92s cubic-bezier(.2,.88,.24,1);
    }

    .flash-pos-center::after{
      animation: flashFrontSweep .9s ease;
    }

    .flash-pos-center img{
      transform: scale(1.03);
      filter: drop-shadow(0 20px 30px rgba(10,43,74,.18));
    }

    .flash-pos-right{
      transform: translateX(265px) scale(.88) rotate(4deg);
      opacity: .62;
      z-index: 3;
      filter: blur(5px) saturate(.72) brightness(.92);
      box-shadow: 0 12px 22px rgba(7,29,53,.07);
    }

    .flash-pos-right img{
      transform: scale(.96);
      filter: drop-shadow(0 10px 16px rgba(10,43,74,.10));
    }

    .flash-pos-left{
      transform: translateX(-265px) scale(.88) rotate(-4deg);
      opacity: .62;
      z-index: 2;
      filter: blur(5px) saturate(.72) brightness(.92);
      box-shadow: 0 12px 22px rgba(7,29,53,.07);
    }

    .flash-pos-left img{
      transform: scale(.96);
      filter: drop-shadow(0 10px 16px rgba(10,43,74,.10));
    }

    .flash-pos-hidden{
      transform: translateX(430px) scale(.74) rotate(8deg);
      opacity: 0;
      z-index: 1;
      filter: blur(14px) saturate(.55) brightness(.86);
      pointer-events: none;
      box-shadow: none;
    }

    .flash-pos-hidden-left{
      transform: translateX(-430px) scale(.74) rotate(-8deg);
      opacity: 0;
      z-index: 1;
      filter: blur(14px) saturate(.55) brightness(.86);
      pointer-events: none;
      box-shadow: none;
    }

    @keyframes flashCenterBoom{
      0%{
        transform: translateX(110px) scale(.68) rotate(10deg);
        opacity: 0;
        filter: blur(14px) brightness(1.08);
      }
      38%{
        transform: translateX(-18px) scale(1.10) rotate(-2.6deg);
        opacity: 1;
        filter: blur(0) brightness(1.06);
      }
      60%{
        transform: translateX(8px) scale(.985) rotate(.8deg);
      }
      78%{
        transform: translateX(-4px) scale(1.02) rotate(-.35deg);
      }
      100%{
        transform: translateX(0) scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0) brightness(1);
      }
    }

    @keyframes flashFrontSweep{
      0%{
        transform: translateX(-140%);
        opacity: 0;
      }
      18%{
        opacity: .9;
      }
      100%{
        transform: translateX(140%);
        opacity: 0;
      }
    }

    @media (max-width: 991px){
      .flashes-stage{
        min-height: 390px;
      }

      .flash-loop-card{
        width: min(40vw, 295px);
        border-radius: 26px;
      }

      .flash-pos-right{
        transform: translateX(170px) scale(.86) rotate(4deg);
        filter: blur(5px) saturate(.7) brightness(.92);
      }

      .flash-pos-left{
        transform: translateX(-170px) scale(.86) rotate(-4deg);
        filter: blur(5px) saturate(.7) brightness(.92);
      }

      .flash-pos-hidden{
        transform: translateX(300px) scale(.72) rotate(8deg);
      }

      .flash-pos-hidden-left{
        transform: translateX(-300px) scale(.72) rotate(-8deg);
      }
    }

    @media (max-width: 640px){
      .flashes-loop-wrap .text-center{
        margin-bottom: 2rem !important;
      }

      .flashes-stage{
        min-height: 315px;
      }

      .flash-loop-card{
        width: min(72vw, 276px);
        padding: 14px;
        border-radius: 22px;
      }

      .flash-pos-center{
        transform: translateX(0) scale(1);
      }

      .flash-pos-right{
        transform: translateX(68px) scale(.82) rotate(4deg);
        opacity: .38;
        filter: blur(7px) saturate(.66) brightness(.9);
      }

      .flash-pos-left{
        transform: translateX(-68px) scale(.82) rotate(-4deg);
        opacity: .38;
        filter: blur(7px) saturate(.66) brightness(.9);
      }

      .flash-pos-hidden,
      .flash-pos-hidden-left{
        opacity: 0;
      }

      @keyframes flashCenterBoom{
        0%{
          transform: translateX(75px) scale(.7) rotate(9deg);
          opacity: 0;
          filter: blur(12px) brightness(1.06);
        }
        42%{
          transform: translateX(-8px) scale(1.08) rotate(-1.6deg);
          opacity: 1;
          filter: blur(0);
        }
        100%{
          transform: translateX(0) scale(1) rotate(0deg);
          opacity: 1;
          filter: blur(0);
        }
      }
    }

/* ===== INLINE <style> BLOCK #3 ===== */
:root{
    --wa:#25D366;
    --wa-dark:#1fb85a;
    --wa-darker:#189a4a;

    --light-bg:#ffffff;
    --light-bg-soft:#f6f8f7;
    --light-border:#dde4df;
    --dark-text:#1c1f1d;
    --muted-text:#6c756f;
  }

  /* IG button */
  .ig-float{
    position:fixed; right:18px; bottom:92px;
    z-index:9998;
    width:54px; height:54px; border-radius:50%;
    display:grid; place-items:center; color:#fff; text-decoration:none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:transform .25s, box-shadow .25s, opacity .25s;
  }
  .ig-float:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 14px 36px rgba(0,0,0,.35);
  }

  /* WhatsApp flotante */
  .wa-float{
    position:fixed; right:18px; bottom:18px;
    z-index:9999; font-family:inherit;
  }

  .wa-btn{
    background:var(--wa);
    color:#fff;
    border:0;
    width:60px; height:60px; border-radius:50%;
    display:grid; place-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.22);
    cursor:pointer; transition:transform .3s, box-shadow .3s, filter .3s;
    position:relative; overflow:hidden;
    z-index:9999;
  }
  .wa-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 14px 36px rgba(0,0,0,.28);
    filter:brightness(.98);
  }

  .wa-card{
    position:absolute; right:0; bottom:74px;
    width:min(360px,92vw);
    background:var(--light-bg);
    color:var(--dark-text);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 60px rgba(0,0,0,.25);
    border:1px solid var(--light-border);
    transform:translateY(10px);
    opacity:0;
    transition:transform .3s, opacity .3s;
    z-index:10000;
  }
  .wa-card[aria-modal="true"]{
    transform:translateY(0);
    opacity:1;
  }

  .wa-head{
    display:flex; align-items:center; gap:12px;
    padding:14px 16px;
    background:linear-gradient(135deg, #ffffff, #ecf6f0);
    border-bottom:1px solid var(--light-border);
  }
  .wa-avatar{
    width:40px; height:40px; border-radius:10px;
    background:#e9f7ef;
    display:grid; place-items:center;
    border:1px solid #cfeeda;
    overflow:hidden;
  }
  .wa-title{
    font-weight:800;
    font-size:1.02rem;
    color:var(--dark-text);
  }
  .wa-status{
    font-size:.85rem;
    color:var(--muted-text);
    display:flex; align-items:center; gap:6px;
  }
  .wa-status::before{
    content:""; width:8px; height:8px; border-radius:50%;
    background:var(--wa);
  }
  .wa-close{
    margin-left:auto;
    background:transparent;
    color:var(--muted-text);
    border:0;
    font-size:24px;
    cursor:pointer;
    opacity:.75;
    width:32px; height:32px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    transition:.2s;
  }
  .wa-close:hover{
    opacity:1;
    background:rgba(0,0,0,.04);
  }

  .wa-body{
    padding:12px 14px;
    max-height:40vh;
    overflow:auto;
    background:var(--light-bg-soft);
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .wa-bubble{
    max-width:88%;
    padding:9px 11px;
    border-radius:14px;
    line-height:1.35;
    box-shadow:0 3px 10px rgba(0,0,0,.06);
    animation:fadeIn .25s ease;
    font-size:0.9rem;
  }
  @keyframes fadeIn{
    from{opacity:0; transform:translateY(5px)}
    to{opacity:1; transform:none}
  }
  .wa-bot{
    background:#ffffff;
    border:1px solid var(--light-border);
    align-self:flex-start;
    border-bottom-left-radius:4px;
  }
  .wa-user{
    background:var(--wa);
    color:#fff;
    align-self:flex-end;
    border-bottom-right-radius:4px;
  }

  .wa-compose{
    display:grid;
    grid-template-columns:1fr auto;
    gap:8px;
    padding:10px 12px;
    background:#ffffff;
    border-top:1px solid var(--light-border);
  }
  .wa-compose textarea{
    resize:none;
    border-radius:12px;
    padding:10px 12px;
    border:1px solid var(--light-border);
    background:#f9fbfa;
    color:var(--dark-text);
    outline:none;
    min-height:44px;
    font-family:inherit;
    font-size:0.9rem;
    transition:.2s;
  }
  .wa-compose textarea:focus{
    border-color:var(--wa);
    box-shadow:0 0 0 2px rgba(37,211,102,.15);
    background:#ffffff;
  }
  .wa-send{
    background:var(--wa);
    color:#ffffff;
    border:0;
    border-radius:12px;
    padding:0 16px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
  }
  .wa-send:hover{
    background:var(--wa-dark);
    transform:scale(1.04);
  }

  .wa-body::-webkit-scrollbar{ width:6px; }
  .wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.03); border-radius:3px; }
  .wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:3px; }
  .wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.18); }

  @media (max-width:480px){
    .ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
    .wa-float{ right:12px; bottom:12px; }
    .wa-card{ width:calc(100vw - 24px); right:0; }
  }

      
Manifest preview
{
    "template": "estudiojuridicora.com/index.html",
    "template_mtime": 1774990603,
    "template_mtime_human": "2026-03-31T20:56:43+00:00",
    "css_links_found": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:opsz,[email protected],300;9..40,400;9..40,500;9..40,600&display=swap",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
    ],
    "css_links_external": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:opsz,[email protected],300;9..40,400;9..40,500;9..40,600&display=swap",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 3,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}