MIX · extractor de estilos
Template: acquapiletas.com.ar/index.html · mtime: 2025-10-30 15:16
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 4 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: acquapiletas.com.ar/index.html */
/* Template mtime: 2025-10-30 15:16:34 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #008dca;
      --primary-dark: #006fa3;
      --secondary: #00b3e3;
      --accent: #00c9b7;
      --dark: #0d1117;
      --darker: #0a0e14;
      --text: #1e293b;
      --muted: #64748b;
      --light: #f3f6fb;
      --white: #ffffff;
      --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      --gradient-dark: linear-gradient(135deg, var(--dark) 0%, #1a2238 100%);
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
      --radius: 16px;
      --transition: all 0.3s ease;
    }

    * {
      box-sizing: border-box;
    }

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

    h1, h2, h3, h4, h5, h6, .title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.2;
    }

    .btn {
      font-weight: 600;
      border-radius: 50px;
      padding: 12px 28px;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }

    .btn-primary {
      background: var(--gradient-primary);
      border: none;
      box-shadow: 0 4px 15px rgba(0, 141, 202, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 141, 202, 0.4);
    }

    .btn-outline-primary {
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline-primary:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }

    .text-muted {
      color: var(--muted) !important;
    }

    .section {
      padding: 100px 0;
    }

    .section-sm {
      padding: 60px 0;
    }

    .section-soft {
      background: var(--light);
      position: relative;
    }

    .section-dark {
      background: var(--gradient-dark);
      color: white;
    }

    .eyebrow {
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.8rem;
      color: var(--primary);
      font-weight: 600;
      display: inline-block;
      margin-bottom: 12px;
      font-family: 'Montserrat', sans-serif;
    }

    .title {
      font-weight: 800;
      margin-bottom: 1.5rem;
    }

    .lead-sm {
      font-size: 1.1rem;
      color: var(--text);
    }

    .card-soft {
      background: var(--white);
      border: none;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
    }

    .card-soft:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .badge-soft {
      background: rgba(0, 141, 202, 0.1);
      color: var(--primary-dark);
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
    }

    /* Navbar */
    .navbar {
      padding: 1rem 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: saturate(1.8) blur(12px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
    }

    .navbar.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
    }

    .navbar .nav-link {
      font-weight: 600;
      color: var(--text);
      margin: 0 8px;
      position: relative;
      font-family: 'Montserrat', sans-serif;
    }

    .navbar .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: var(--gradient-primary);
      transition: var(--transition);
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
      width: 100%;
    }

    .navbar .btn {
      padding: 8px 20px;
      font-size: 0.9rem;
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      isolation: isolate;
      overflow: hidden;
    }

    .hero::before{content:none;}

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
      z-index: -1;
    }

    .hero-content {
      color: white;
      max-width: 800px;
      padding-top: 80px;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 2rem;
    }

    .hero-badge {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* Icon Boxes */
    .icon-xl {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      display: inline-block;
      padding: 15px;
      border-radius: 50%;
      background: rgba(0, 141, 202, 0.1);
    }

    /* Gallery */
    .gallery-frame {
      position: relative;
      margin-top: 2rem;
    }

    .gallery-viewport {
      overflow: hidden;
      scroll-snap-type: x mandatory;
      display: flex;
      gap: 20px;
      scroll-behavior: smooth;
      padding-bottom: 10px;
    }

    .gallery-item {
      flex: 0 0 500px;
      max-width: 500px;
      scroll-snap-align: center;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .gallery-item:hover {
      transform: scale(1.03);
      box-shadow: var(--shadow-lg);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 1/1;
    }

    .gallery-ctrl {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      pointer-events: none;
    }

    .gallery-ctrl .btn {
      pointer-events: auto;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow);
      border: none;
      color: var(--primary);
    }

    .gallery-ctrl .btn:hover {
      background: var(--white);
      transform: scale(1.1);
    }

    .dots {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 20px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #cbd5e1;
      cursor: pointer;
      transition: var(--transition);
    }

    .dot.active {
      background: var(--primary);
      transform: scale(1.2);
    }

    /* Accordion */
    .accordion-item {
      border: none;
      border-radius: var(--radius) !important;
      margin-bottom: 15px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .accordion-button {
      font-weight: 600;
      padding: 20px 25px;
      background: var(--white);
      border: none;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: var(--white);
      color: var(--primary);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border: none;
    }

    .accordion-body {
      padding: 0 25px 25px;
    }

    /* Form */
    .form-control {
      padding: 12px 18px;
      border-radius: 10px;
      border: 1px solid #e2e8f0;
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 141, 202, 0.1);
    }

    /* Footer */
    #site-footer {
      background: var(--darker);
      color: #e9edf3;
    }

    #site-footer a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    #site-footer a:hover {
      color: var(--secondary);
    }

    .footer-line {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Alert */
    .alert-fixed {
      position: sticky;
      top: 0;
      z-index: 1030;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: fadeInUp 0.8s ease forwards;
    }

    .delay-1 {
      animation-delay: 0.2s;
    }

    .delay-2 {
      animation-delay: 0.4s;
    }

    .delay-3 {
      animation-delay: 0.6s;
    }

    /* Responsive */
    @media (max-width: 991.98px) {
      .hero h1 {
        font-size: 2.8rem;
      }
      
      .gallery-item {
        flex-basis: 70vw;
        max-width: 70vw;
      }
      
      .section {
        padding: 80px 0;
      }
    }

    @media (max-width: 767.98px){
  .hero{ min-height: 75vh; }
  .hero h1{ font-size: 2rem; }
  .hero p{ font-size: 1rem; }
}

      
      .hero p {
        font-size: 1rem;
      }
      
      .gallery-item {
        flex-basis: 85vw;
        max-width: 85vw;
      }
      
      .section {
        padding: 60px 0;
      }
      
      .navbar .btn {
        margin-top: 10px;
        width: 100%;
      }
    }

    @media (max-width: 575.98px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
      }
    }
  
    /* === HERO Video Background === */
    .hero{
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(135deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 100%);
      z-index:-1;
    }
    .hero-video{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:-2;
      background:#000;
    }

    /* Phone tweaks: show image fallback (no video), adjust hero height */
    @media (max-width: 767.98px){
      .hero{ min-height: 70vh; }
      .hero-video{ display:none; }
      .hero::before{
        content:"";
        position:absolute;
        inset:0;
        background:url('img/hero.jpg') center/cover no-repeat;
        z-index:-2;
      }
      .hero h1{ font-size:2rem; }
      .hero p{ font-size:1rem; }
    }

  
    /* Desktop fallback when video no carga o autoplay falla */
    .hero.hero-fallback::before{
      content:"";
      position:absolute;
      inset:0;
      background:url('img/hero.jpg') center/cover no-repeat;
      z-index:-2;
    }

  
@media (max-width: 767.98px){
  .hero{ min-height: 68vh; }
  .hero-video{ display:none !important; }
  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('img/hero.jpg') center/cover no-repeat;
    z-index:-2;
  }
  .hero h1{ font-size: 2rem; }
  .hero p{ font-size: 1rem; }
  .hero .btn{ padding:10px 18px; font-size:.95rem; }
}

  
/* === OVERRIDES: asegurar video visible en móviles === */
@media (max-width: 767.98px){
  .hero-video{
    display:block !important;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .hero::before{
    content:none !important;
    background:none !important;
  }
  .hero{ min-height: 75vh !important; }
}
/* ===== Carrusel: imágenes más chicas en desktop ===== */
@media (min-width: 992px){
  .gallery-viewport{ gap:16px; }              /* un poco menos de separación */
  .gallery-item{
    flex: 0 0 340px;                          /* antes ~500px */
    max-width: 340px;
  }
}

/* Opcional: en pantallas MUY grandes, un toque más grande */
@media (min-width: 1400px){
  .gallery-item{
    flex-basis: 360px;                        /* ajustá a gusto: 320–380 */
    max-width: 360px;
  }
}


/* ===== FIXES 2025-10-30 ===== */
html, body { margin: 0; overflow-x: hidden; }
body { min-height: 100svh; display: flex; flex-direction: column; }
#site-footer { margin-top: auto; }

/* Prevent stretched icons on mobile */
i.bi { line-height: 1; display: inline-block; vertical-align: middle; }
.icon-xl { width: auto; height: auto; }

/* Ensure images don't overflow or stretch oddly */
img { max-width: 100%; height: auto; display: block; }
video { max-width: 100%; display: block; }

/* Make sure nothing causes horizontal scrollbars */
.hero, .hero .container, .gallery-frame, .gallery-viewport { overflow-x: clip; }

/* Fix Bootstrap hamburger icon absence when not using navbar-light/dark */
.navbar-toggler { border: 0; }
.navbar-toggler-icon {
  width: 1.5rem; height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* dark icon */
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(30,41,59,0.95)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Safer collapse container on small screens */
@media (max-width: 991.98px){
  .navbar .btn { width: 100%; margin-top: 10px; }
  .navbar-collapse { max-width: 100%; overflow-x: hidden; }
}

/* Footer: avoid any gap showing "white strip" at very bottom */
#site-footer { background: var(--darker); color: #e9edf3; }
#site-footer .footer-line { margin-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
span img {
  height: 34px;
  width: auto;
}

/* end fixes */

/* ===== INLINE <style> BLOCK #2 ===== */
/* ===== Scope local de la sección ===== */
    #servicios .feature-card{
      text-align:center;
      border-radius:16px;
      background:#fff;
      box-shadow:0 6px 22px rgba(2,12,34,.06);
      padding:28px 22px;
      height:100%;
    }
    #servicios .icon-wrap{
      width:72px;height:72px;margin:0 auto 12px;
      border-radius:50%;
      display:flex;align-items:center;justify-content:center;
      background:#e9f6ff; /* celeste suave */
    }
    #servicios .icon-wrap svg{
      width:36px;height:36px;display:block;
      stroke:#0ea5e9; /* azul acorde al logo */
      fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
    }
    #servicios .title{margin:0 0 6px;font-weight:700}
    #servicios p{margin:0;color:#5f6b7a}

/* ===== INLINE <style> BLOCK #3 ===== */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#site-footer {
  margin-top: auto;
}

.hover-primary:hover {
  color: var(--primary) !important;
}

/* ===== INLINE <style> BLOCK #4 ===== */
/* ====== Paleta y layout ====== */
    :root{
      --ig: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      --fb: #1877F2;
      --wa: #25D366;
      --wa-dark: #128C7E;
      --wa-darker: #075E54;
      --dark-bg: #0b0f18;
      --darker-bg: #0a1324;
      --light: #ffffff;
      --muted: rgba(255,255,255,.72);
    }
    
    #social-floats{
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 9999;
      font-family: system-ui, -apple-system, sans-serif;
    }
    
    .sf-stack{
      position: absolute;
      right: 0;
      bottom: 84px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .sf-btn{
      width: 46px;
      height: 46px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(0,0,0,.28);
      transform: translateZ(0);
      transition: transform .25s, box-shadow .25s, opacity .25s;
    }
    
    .sf-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(0,0,0,.34);
    }
    
    .sf-ig{
      background: var(--ig);
    }
    
    .sf-fb{
      background: var(--fb);
    }

    .wa-float{
      position: relative;
    }
    
    .wa-btn{
      background: var(--wa);
      color: #fff;
      border: 0;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      box-shadow: 0 12px 36px rgba(0,0,0,.28);
      cursor: pointer;
      transition: transform .3s, box-shadow .3s, background .3s;
      position: relative;
      overflow: hidden;
    }
    
    .wa-btn::after{
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
      opacity: 0;
      transition: opacity .3s;
    }
    
    .wa-btn:hover{
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 16px 42px rgba(0,0,0,.36);
      background: var(--wa-dark);
    }
    
    .wa-btn:hover::after{
      opacity: 1;
    }

    .wa-card{
      position: absolute;
      right: 0;
      bottom: 78px;
      width: min(380px, 92vw);
      background: var(--dark-bg);
      color: var(--light);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 60px rgba(0,0,0,.5);
      border: 1px solid rgba(255,255,255,.08);
      transform: translateY(10px);
      opacity: 0;
      transition: transform .3s, opacity .3s;
    }
    
    .wa-card[aria-modal="true"]{
      transform: translateY(0);
      opacity: 1;
    }
    
    .wa-head{
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px;
      background: linear-gradient(180deg, #0d162c, var(--darker-bg));
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    
    .wa-avatar{
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: #0e1a33;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.08);
      overflow: hidden;
    }
    
    .wa-title{
      font-weight: 700;
      font-size: 1.05rem;
    }
    
    .wa-status{
      font-size: .85rem;
      color: var(--muted);
      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: #fff;
      border: 0;
      font-size: 24px;
      cursor: pointer;
      opacity: .7;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .2s;
    }
    
    .wa-close:hover{
      opacity: 1;
      background: rgba(255,255,255,.1);
    }

    .wa-line{
      margin-left: auto;
      margin-right: 8px;
    }
    
    .wa-select{
      appearance: none;
      background: #0d1a33;
      color: #fff;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      padding: 6px 8px;
      font-size: .85rem;
    }
    
    .sr-only{
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      border: 0;
    }

    .wa-body{
      padding: 12px 14px;
      max-height: 40vh;
      overflow: auto;
      background: var(--dark-bg);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .wa-bubble{
      max-width: 88%;
      padding: 10px 12px;
      border-radius: 14px;
      line-height: 1.35;
      box-shadow: 0 4px 14px rgba(0,0,0,.25);
      animation: fadeIn .25s ease;
    }
    
    @keyframes fadeIn{
      from{
        opacity: 0;
        transform: translateY(5px);
      }
      to{
        opacity: 1;
        transform: none;
      }
    }
    
    .wa-bot{
      background: #0c1428;
      border: 1px solid rgba(255,255,255,.06);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }
    
    .wa-user{
      background: var(--wa-darker);
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }

    .wa-compose{
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      padding: 10px;
      background: var(--dark-bg);
      border-top: 1px solid rgba(255,255,255,.08);
    }
    
    .wa-compose textarea{
      resize: none;
      border-radius: 12px;
      padding: 10px 12px;
      border: 1px solid rgba(255,255,255,.12);
      background: #0a1324;
      color: var(--light);
      outline: none;
      min-height: 44px;
      font-family: inherit;
      transition: .2s;
    }
    
    .wa-compose textarea:focus{
      border-color: var(--wa);
      box-shadow: 0 0 0 2px rgba(37,211,102,.15);
    }
    
    .wa-send{
      background: var(--wa);
      color: #fff;
      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(255,255,255,.05);
      border-radius: 3px;
    }
    
    .wa-body::-webkit-scrollbar-thumb{
      background: rgba(255,255,255,.2);
      border-radius: 3px;
    }
    
    .wa-body::-webkit-scrollbar-thumb:hover{
      background: rgba(255,255,255,.3);
    }

    @media (max-width: 480px){
      #social-floats{
        right: 12px;
        bottom: 12px;
      }
      
      .sf-stack{
        bottom: 78px;
      }
      
      .wa-card{
        width: calc(100vw - 24px);
        right: 0;
      }
    }

      
Manifest preview
{
    "template": "acquapiletas.com.ar/index.html",
    "template_mtime": 1761837394,
    "template_mtime_human": "2025-10-30T15:16:34+00:00",
    "css_links_found": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
        "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap"
    ],
    "css_links_external": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
        "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 4,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}