MIX · extractor de estilos
Template: tecnigo.com.ar/index.html · mtime: 2025-11-25 17:09
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 4 Embebidos: 0 Externos: 4 Inline styles: 1 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: tecnigo.com.ar/index.html */
/* Template mtime: 2025-11-25 17:09:42 */

/* 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=Inter:wght@300;400;500;600;700;800;900&display=swap */
/* 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=Poppins:wght@500;600&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #e30613;
      --primary-dark: #b3040f;
      --primary-light: rgba(227, 6, 19, 0.1);
      --dark: #111;
      --gray: #f8f9fa;
      --gray-dark: #e9ecef;
      --text: #333;
      --text-light: #6c757d;
      --white: #fff;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
      --radius: 16px;
      --radius-lg: 24px;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    /* NAVBAR MEJORADA */
    .navbar {
      background: rgba(0, 0, 0, 0.95) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 0.8rem 0;
      transition: var(--transition);
    }

    .navbar.scrolled {
      padding: 0.5rem 0;
      background: rgba(0, 0, 0, 0.98) !important;
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .navbar-brand span {
      background: linear-gradient(90deg, var(--white) 0%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      margin: 0 0.2rem;
      padding: 0.5rem 1rem !important;
      border-radius: 50px;
      transition: var(--transition);
      position: relative;
    }

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

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

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
      color: var(--primary) !important;
    }

    .navbar-toggler {
      border: none;
      padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    /* SECCIONES MEJORADAS */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-title {
      font-weight: 800;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      line-height: 1.2;
    }

    .section-eyebrow {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 12px;
      display: inline-block;
      padding: 4px 12px;
      background: var(--primary-light);
      border-radius: 50px;
    }

    .section-subtitle {
      color: var(--text-light);
      max-width: 620px;
      font-size: 1.1rem;
    }

    /* HERO MEJORADO */
    .hero {
      padding: 160px 0 100px;
      background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 50%, rgba(227, 6, 19, 0.15) 0%, transparent 50%);
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero-highlight {
      background: linear-gradient(90deg, var(--primary) 0%, #ff4d5a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .hero p.lead {
      margin-top: 1rem;
      color: #ddd;
      font-size: 1.2rem;
      max-width: 90%;
    }

    .hero-list {
      margin: 28px 0 32px;
      padding: 0;
      list-style: none;
    }

    .hero-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      color: #eee;
      font-size: 1rem;
      transition: var(--transition);
      padding: 8px 0;
    }

    .hero-list li:hover {
      transform: translateX(5px);
    }

    .hero-list li i {
      color: var(--primary);
      margin-top: 3px;
      font-size: 1.2rem;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 2rem;
    }

    .hero-cta .btn {
      font-weight: 600;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      font-size: 1rem;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    }

    .hero-cta .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(227, 6, 19, 0.4);
    }

    .hero-cta .btn-outline-light {
      border-width: 2px;
      background: transparent;
    }

    .hero-cta .btn-outline-light:hover {
      background: var(--white);
      color: var(--dark);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.08);
      color: #f5f5f5;
      font-size: 0.9rem;
      margin-bottom: 24px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-badge span {
      color: var(--primary);
      font-weight: 700;
    }

    .hero-img-wrap {
      background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
      border-radius: var(--radius-lg);
      padding: 16px;
      box-shadow: var(--shadow-lg);
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero-img-wrap::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(227, 6, 19, 0.1) 0%, transparent 70%);
      animation: rotate 15s linear infinite;
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .hero-img {
      width: 100%;
      max-height: 480px;
      object-fit: contain;
      border-radius: 12px;
      display: block;
      position: relative;
      z-index: 2;
    }

    .hero-location {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #bbb;
      font-size: 0.9rem;
    }

    @media (max-width: 991.98px) {
      .hero {
        padding: 140px 0 80px;
        text-align: center;
      }
      .hero p.lead {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }
      .hero-img-wrap {
        margin-top: 48px;
      }
    }

    /* QUIÉNES SOMOS MEJORADO */
    .about-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      box-shadow: var(--shadow);
      border: 1px solid var(--gray-dark);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    }

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

    .about-card p {
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
    }

    /* SERVICIOS MEJORADOS */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .service-box {
      border-radius: var(--radius-lg);
      background: var(--white);
      padding: 32px 28px;
      border: 1px solid var(--gray-dark);
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, var(--primary), var(--primary-dark));
    }

    .service-box:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .service-box h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--dark);
    }

    .service-box ul {
      padding-left: 1.2rem;
      margin: 0;
      color: var(--text);
      font-size: 1rem;
    }

    .service-box ul li {
      margin-bottom: 8px;
      position: relative;
    }

    .service-box ul li::marker {
      color: var(--primary);
    }

    /* POR QUÉ ELEGIRNOS MEJORADO */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      margin-top: 40px;
    }

    .why-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 24px;
      border: 1px solid var(--gray-dark);
      box-shadow: var(--shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-light) 0%, transparent 70%);
      opacity: 0;
      transition: var(--transition);
    }

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

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

    .why-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.5rem;
      margin-bottom: 20px;
      transition: var(--transition);
      position: relative;
      z-index: 2;
    }

    .why-card:hover .why-icon {
      background: var(--primary);
      color: var(--white);
      transform: scale(1.1);
    }

    .why-card h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      font-weight: 700;
      position: relative;
      z-index: 2;
    }

    .why-card p {
      font-size: 1rem;
      margin: 0;
      color: var(--text-light);
      position: relative;
      z-index: 2;
    }

    /* FAQS MEJORADO */
    #faqs .accordion {
      margin-top: 40px;
    }

    #faqs .accordion-item {
      border: 1px solid var(--gray-dark);
      border-radius: 12px;
      margin-bottom: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    #faqs .accordion-button {
      font-weight: 600;
      padding: 20px 24px;
      background: var(--white);
      font-size: 1.05rem;
      border: none;
      box-shadow: none;
    }

    #faqs .accordion-button:not(.collapsed) {
      background: var(--primary-light);
      color: var(--dark);
      box-shadow: none;
    }

    #faqs .accordion-button:focus {
      box-shadow: none;
      border-color: var(--primary);
    }

    #faqs .accordion-body {
      padding: 20px 24px;
      background: var(--white);
      color: var(--text);
      font-size: 1rem;
    }

    /* CONTACTO MEJORADO */
    #contacto {
      background: linear-gradient(135deg, var(--gray) 0%, var(--white) 100%);
      position: relative;
    }

    .contact-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--gray-dark);
    }

    .contact-meta {
      font-size: 1rem;
      color: var(--text);
      margin-top: 24px;
    }

    .contact-meta p {
      margin-bottom: 16px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .contact-meta i {
      color: var(--primary);
      margin-top: 4px;
      flex-shrink: 0;
    }

    .form-control {
      padding: 12px 16px;
      border: 1px solid var(--gray-dark);
      border-radius: 12px;
      font-size: 1rem;
      transition: var(--transition);
    }

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

    .form-label {
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--text);
    }

    .btn-primary {
      background: var(--primary);
      border: none;
      padding: 12px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(227, 6, 19, 0.3);
    }

    /* FOOTER REDISEÑADO */
  footer {
    background:
      radial-gradient(circle at top left, rgba(227, 6, 19, 0.28) 0%, transparent 50%),
      radial-gradient(circle at bottom right, rgba(227, 6, 19, 0.18) 0%, transparent 55%),
      linear-gradient(135deg, #050505 0%, #111 45%, #1a0003 100%);
    color: #f1f1f1;
    padding: 48px 0 24px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.04),
      transparent 30%,
      transparent 70%,
      rgba(255, 255, 255, 0.04)
    );
    pointer-events: none;
  }
  
  footer a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
  }
  
  footer a:hover {
    color: var(--primary);
    text-decoration: none;
  }
  
  .footer-content {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
  }
  
  .footer-heading {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
  }
  
  .footer-main-text {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
  }
  
  .footer-contacts i {
    color: var(--primary);
    margin-right: 6px;
  }
  
  .footer-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 8px;
    font-size: 0.85rem;
  }
  
  .footer-quick-links a {
    opacity: 0.9;
  }
  
  .footer-quick-links a:hover {
    opacity: 1;
  }
  
  /* MAPA */
  .footer-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    background: #000;
    min-height: 230px;
  }
  
  .footer-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 230px;
    border: 0;
    display: block;
  }
  
  /* BOTTOM */
  .footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
    margin-top: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Responsive footer */
  @media (max-width: 767.98px) {
    footer {
      padding: 40px 0 22px;
    }
  
    .footer-map-wrap {
      margin-top: 16px;
      min-height: 200px;
    }
  }

    /* ====== GALERÍA (MEJORADA PERO MANTENIENDO LA ESTRUCTURA) ====== */
    .gal-gallery {
      position: relative;
    }

    .gal-gallery .carousel {
      max-width: 1000px;
      margin-inline: auto;
      position: relative;
    }

    .gal-frame {
      height: clamp(280px, 55vh, 500px);
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      border: 1px solid var(--gray-dark);
    }

    .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;
      transition: var(--transition);
      border-radius: 8px;
    }

    .gal-img:hover {
      transform: scale(1.02);
    }

    .gal-gallery .carousel-control-prev,
    .gal-gallery .carousel-control-next {
      z-index: 20;
      width: 60px;
      height: 60px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 50%;
      margin: 0 16px;
      transition: var(--transition);
    }

    .gal-gallery .carousel-control-prev:hover,
    .gal-gallery .carousel-control-next:hover {
      background: rgba(0, 0, 0, 0.9);
      transform: translateY(-50%) scale(1.1);
    }

    .gal-gallery .gal-ctrl-icon {
      width: 2.6rem;
      height: 2.6rem;
      background-size: 60% 60%;
    }

    .gal-gallery .carousel-indicators {
      z-index: 10;
      bottom: -50px;
    }

    .gal-gallery .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.3);
      border: none;
      transition: var(--transition);
    }

    .gal-gallery .carousel-indicators button.active {
      background: var(--primary);
      transform: scale(1.2);
    }

    .gal-gallery {
      padding-bottom: 70px;
    }

    #galLightbox .modal-content {
      background: #000;
      border-radius: 0;
    }

    #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: 50px;
      height: 50px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 30px;
      line-height: 50px;
      text-align: center;
      z-index: 5;
      cursor: pointer;
      transition: var(--transition);
    }

    .gal-lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-50%) scale(1.1);
    }

    .gal-lightbox-nav.gal-prev {
      left: 20px;
    }

    .gal-lightbox-nav.gal-next {
      right: 20px;
    }

    @media (max-width: 575.98px) {
      .gal-frame {
        height: clamp(220px, 45vh, 400px);
      }
    }

    /* PARTÍCULAS DECORATIVAS */
    .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
    }

    .particle {
      position: absolute;
      background: var(--primary);
      border-radius: 50%;
      opacity: 0.1;
      animation: float 15s infinite linear;
    }

    @keyframes float {
      0% {
        transform: translateY(0) translateX(0) rotate(0deg);
      }
      100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
      }
    }

    /* EFECTO DE APARICIÓN AL SCROLL */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* BOTÓN FLOTANTE WHATSAPP */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 30px;
      right: 30px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      }
      50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
      }
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      }
    }/* QUIÉNES SOMOS EN DOS COLUMNAS */
.about-card--compact {
  padding: 32px 28px;
  max-width: 100%;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-dark);
  background: #000;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain; /* respeta el contenido de img/7.jpeg */
  object-position: center;
  display: block;
}

/* Ajustes mobile */
@media (max-width: 991.98px) {
  #quienes .about-card--compact {
    margin-bottom: 24px;
  }

  .about-image-wrap img {
    max-height: 320px;
  }
}

      
Manifest preview
{
    "template": "tecnigo.com.ar/index.html",
    "template_mtime": 1764090582,
    "template_mtime_human": "2025-11-25T17:09:42+00:00",
    "css_links_found": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
        "https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap"
    ],
    "css_links_external": [
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css",
        "https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 1,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}