MIX · extractor de estilos
Template: mygimportados.com.ar/index.html · mtime: 2026-05-05 13:21
← 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: mygimportados.com.ar/index.html */
/* Template mtime: 2026-05-05 13:21:05 */

/* 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.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #111827;
      --primary-dark: #0f172a;
      --secondary: #7c3aed;
      --accent: #f59e0b;
      --muted: #6b7280;
      --light: #f8fafc;
      --soft: #f1f5f9;
      --radius: 20px;
      --radius-sm: 12px;
      --radius-lg: 28px;
      --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
    }

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

    body {
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
      line-height: 1.6;
      color: #1f2937;
      overflow-x: hidden;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      min-height: 100vh;
    }

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

    .gradient-text {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }

    .section {
      padding: 100px 0;
      position: relative;
    }

    @media (max-width: 768px) {
      .section {
        padding: 60px 0;
      }
    }

    .section-title {
      font-weight: 900;
      letter-spacing: -0.03em;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      margin-bottom: 1.5rem;
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 680px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .5rem 1rem;
      border-radius: 100px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
      color: var(--secondary);
      margin-bottom: 1.5rem;
    }

    /* ===== Navbar ===== */
    .navbar {
      backdrop-filter: saturate(180%) blur(20px);
      background: rgba(255, 255, 255, 0.85) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      padding: 1rem 0;
      transition: var(--transition);
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.95) !important;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
      padding: 0.8rem 0;
    }

    .navbar-brand {
      font-weight: 900;
      font-size: 1.5rem;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .nav-link {
      font-weight: 600;
      color: #374151 !important;
      padding: 0.5rem 1rem !important;
      border-radius: 10px;
      transition: var(--transition);
      position: relative;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--secondary) !important;
      background: rgba(124, 58, 237, 0.05);
    }

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

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

    /* ===== Hero Section ===== */
    .hero {
      padding: 180px 0 100px;
      position: relative;
      overflow: hidden;
      background: 
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, #ffffff 100%);
    }

    @media (max-width: 768px) {
      .hero {
        padding: 140px 0 60px;
      }
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero .lead {
      color: var(--muted);
      font-size: 1.2rem;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .hero-badges {
      margin-bottom: 2.5rem;
    }

    .hero-badges li {
      margin-bottom: 0.75rem;
      font-weight: 500;
      display: flex;
      align-items: center;
    }

    .hero-badges i {
      color: var(--secondary);
      font-size: 1.2rem;
      margin-right: 0.75rem;
      background: rgba(124, 58, 237, 0.1);
      padding: 0.5rem;
      border-radius: 10px;
    }

    .hero-card {
      border-radius: var(--radius-lg);
      background: #ffffff;
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.3);
      transform: perspective(1000px) rotateY(-5deg);
      transition: var(--transition);
      position: relative;
    }

    .hero-card:hover {
      transform: perspective(1000px) rotateY(0deg);
      box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.25);
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      z-index: 2;
    }

    .hero-img {
      width: 100%;
      height: clamp(300px, 50vh, 600px);
      object-fit: cover;
      object-position: center;
      display: block;
      background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    }

    /* ===== Buttons ===== */
    .btn {
      border-radius: 12px;
      padding: 0.85rem 1.8rem;
      font-weight: 600;
      transition: var(--transition);
      border: none;
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .btn-brand {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      border: none;
      box-shadow: 0 10px 25px rgba(17, 24, 39, 0.15);
    }

    .btn-brand:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(17, 24, 39, 0.2);
      color: white;
    }

    .btn-secondary {
      background: linear-gradient(135deg, var(--secondary) 0%, #6d28d9 100%);
      color: white;
      border: none;
      box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
    }

    .btn-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(124, 58, 237, 0.25);
      color: white;
    }

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

    .btn-outline-brand:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(17, 24, 39, 0.1);
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn:active::after {
      width: 300px;
      height: 300px;
    }

    /* ===== Cards ===== */
    .card-soft {
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: var(--radius);
      background: #ffffff;
      box-shadow: var(--shadow);
      transition: var(--transition);
      overflow: hidden;
      position: relative;
      backdrop-filter: blur(10px);
    }

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

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

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

    .icon-pill {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
      color: var(--secondary);
      font-size: 1.5rem;
      transition: var(--transition);
    }

    .card-soft:hover .icon-pill {
      transform: scale(1.1) rotate(5deg);
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    }

    /* ===== Service Cards ===== */
    .service-card {
      height: 100%;
      padding: 2.5rem 2rem;
      text-align: center;
      border-radius: var(--radius);
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

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

    .service-card i {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--secondary), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .service-card h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }



    /* ===== Catálogos PDF ===== */
    .catalog-grid {
      row-gap: 2rem;
    }

    .pdf-preview {
      height: 100%;
      border-radius: var(--radius);
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.75);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .pdf-preview:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
    }

    .pdf-head {
      padding: 1.35rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }

    .pdf-head .pdf-title {
      font-size: 1.05rem;
      line-height: 1.2;
    }

    .pdf-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: .7rem;
      flex: 0 0 auto;
    }

    .pdf-body {
      height: clamp(300px, 36vw, 430px);
      max-height: 430px;
      background: #ffffff;
      position: relative;
      overflow: hidden;
      flex: 1 1 auto;
    }

    .pdf-preview object,
    .pdf-preview iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      background: #ffffff;
    }

    .pdf-fallback {
      position: absolute;
      inset: 0;
      display: none;
      place-items: center;
      padding: 24px;
      text-align: center;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }

    .pdf-fallback-inner {
      max-width: 420px;
    }

    .catalog-modal-body {
      height: min(78vh, 760px);
      background: #f8fafc;
    }

    .catalog-modal-body iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
      background: #ffffff;
    }

    @media (max-width: 991.98px) {
      .pdf-head {
        flex-direction: column;
      }

      .pdf-actions {
        width: 100%;
        justify-content: flex-start;
      }

      .pdf-body {
        height: 360px;
        max-height: 360px;
      }
    }

    @media (max-width: 575.98px) {
      .pdf-head {
        padding: 1.1rem;
      }

      .pdf-actions .btn {
        width: 100%;
      }

      .pdf-body {
        height: 310px;
        max-height: 310px;
      }

      .catalog-modal-body {
        height: 72vh;
      }
    }

/* ===== Store Frame ===== */
    .store-frame {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: var(--shadow-xl);
      background: #ffffff;
      transition: var(--transition);
    }

    .store-frame:hover {
      transform: translateY(-5px);
      box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
    }

    .store-frame iframe {
      width: 100%;
      height: min(80vh, 900px);
      border: 0;
      display: block;
      background: #ffffff;
    }

/* Mobile: evitar “bloqueo” de scroll (dejar aire fuera del iframe para poder seguir bajando) */
@media (max-width: 768px) {
  .store-frame iframe {
    height: 60vh;          /* más chico para que quede área fuera del iframe y puedas seguir scrolleando la página */
    min-height: 520px;     /* evita que quede demasiado bajo en teléfonos grandes */
    max-height: 680px;     /* limita la altura para que no ocupe toda la pantalla */
  }
}

    /* ===== FAQ Accordion ===== */
    .accordion-item {
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px !important;
      margin-bottom: 1rem;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    }

    .accordion-button {
      background: #ffffff;
      color: var(--primary);
      font-weight: 600;
      padding: 1.5rem;
      border: none;
      border-radius: 12px !important;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      color: var(--secondary);
    }

    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237c3aed'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      transform: rotate(0deg);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
    }

    .accordion-body {
      padding: 1.5rem;
      background: #ffffff;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ===== Contact Form ===== */
    .form-control, .form-select {
      border-radius: 12px;
      padding: 0.85rem 1.2rem;
      border: 2px solid #e5e7eb;
      background: #ffffff;
      transition: var(--transition);
      font-size: 1rem;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--secondary);
      box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
      transform: translateY(-2px);
    }

    .form-label {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }

    /* ===== Footer ===== */
    footer {
      background: linear-gradient(135deg, var(--primary-dark) 0%, #0c0f1a 100%);
      color: #e5e7eb;
      position: relative;
      overflow: hidden;
    }

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

    footer a {
      color: #e5e7eb;
      text-decoration: none;
      transition: var(--transition);
      opacity: 0.9;
    }

    footer a:hover {
      color: white;
      opacity: 1;
      text-decoration: underline;
    }

    .footer-badge {
      display: inline-flex;
      gap: .6rem;
      align-items: center;
      padding: .5rem 1.2rem;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.1);
      font-weight: 700;
      font-size: .9rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* ===== Animations ===== */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .floating {
      animation: float 6s ease-in-out infinite;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero .lead {
        font-size: 1.1rem;
      }
      
      .btn {
        width: 100%;
        margin-bottom: 0.5rem;
      }
      
      .nav-link::after {
        display: none;
      }
    }

    /* ===== Anclas: offset por navbar fixed ===== */
    section {
      scroll-margin-top: 100px;
    }
    .navbar-brand-text {
  font-size: 0.9rem;   /* probá 0.85rem si lo querés más chico */
  font-weight: 600;
  line-height: 1;
}
.navbar-logo {
  height: 36px;      /* ajustá a gusto */
  width: auto;
  object-fit: contain;
}

/* ===== INLINE <style> BLOCK #2 ===== */
.gal-gallery .carousel{max-width:980px;margin-inline:auto;position:relative}
  .gal-frame{
    height: clamp(220px, 48vh, 440px);
    background:#fff;border-radius:16px;overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,.12);
    display:flex;align-items:center;justify-content:center;padding:8px
  }
  .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
  }
  /* Controles circulares con más contraste */
  .gal-gallery .carousel-control-prev,
  .gal-gallery .carousel-control-next{
    z-index:20;width:50px;height:50px;top:50%;transform:translateY(-50%);
    opacity:1;background:rgba(0,0,0,.55);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:60% 60%}
  /* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
  .gal-gallery .carousel-indicators{z-index:10;bottom:-50px}
  .gal-gallery .carousel-indicators button{
    width:10px;height:10px;border-radius:50%;
    background:rgba(0,0,0,.5);border:none
  }
  .gal-gallery .carousel-indicators button.active{background:#000}
  .gal-gallery{padding-bottom:56px} /* espacio para indicadores */
  
  /* Modal */
  #galLightbox .modal-content{background:#000}
  #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:44px;height:44px;border-radius:999px;
    background:rgba(255,255,255,.18);color:#fff;font-size:30px;line-height:44px;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}
  
  /* Pequeños ajustes móviles */
  @media (max-width: 575.98px){
    .gal-frame{height: clamp(200px, 40vh, 360px)}
  }

/* ===== INLINE <style> BLOCK #3 ===== */
/* ===== TIENDA IFRAME - FIX SCROLL ===== */
.store-wrapper {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.store-frame-fixed {
  position: relative;
  width: 100%;
  height: 900px; /* Altura grande para ver muchos productos */
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.store-frame-fixed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Desktop: altura generosa */
@media (min-width: 992px) {
  .store-frame-fixed {
    height: 1000px;
  }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 769px) {
  .store-frame-fixed {
    height: 800px;
  }
}

/* Mobile: altura fija, NO fullscreen para permitir scroll de página */
@media (max-width: 768px) {
  .store-wrapper {
    padding: 1rem;
  }
  
  .store-frame-fixed {
    height: 600px; /* Altura fija, deja espacio arriba/abajo para seguir scrolleando */
    touch-action: pan-y; /* Permite scroll vertical de la página */
  }
  
  /* Overlay invisible que permite scroll de página cuando el dedo está sobre el iframe */
  .store-frame-fixed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
  }
}

/* ===== INLINE <style> BLOCK #4 ===== */
:root{
    --wa:#25D366;
    --wa-dark:#1fb85a;
    --light-bg:#ffffff;
    --light-bg-soft:#f6f8f7;
    --light-border:#dde4df;
    --dark-text:#1c1f1d;
    --muted-text:#6c756f;
    /* Podés cambiar este accent al color del sitio si querés */
    --accent:#6F5BD6;
  }

  .fb-float{
    position:fixed; right:18px; bottom:240px;
    z-index:9997;
    width:54px; height:54px; border-radius:50%;
    display:grid; place-items:center; color:#fff; text-decoration:none;
    background: linear-gradient(180deg, #1877F2 0%, #0f63d6 100%);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:transform .25s, box-shadow .25s, opacity .25s;
  }
  .fb-float:hover{ transform:translateY(-2px) scale(1.04); box-shadow:0 14px 36px rgba(0,0,0,.35); }

  .ig-float{
    position:fixed; right:18px; bottom:166px;
    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); }

  .tt-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(180deg, #111 0%, #000 100%);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:transform .25s, box-shadow .25s, opacity .25s;
  }
  .tt-float:hover{ transform:translateY(-2px) scale(1.04); box-shadow:0 14px 36px rgba(0,0,0,.35); }

  .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, rgba(111,91,214,.08));
    border-bottom:1px solid var(--light-border);
  }
  .wa-avatar{
    width:40px; height:40px; border-radius:10px;
    background:rgba(111,91,214,.10);
    display:grid; place-items:center;
    border:1px solid rgba(111,91,214,.20);
    overflow:hidden;
  }
  .wa-title{ font-weight:900; 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:#fff; border:1px solid var(--light-border); align-self:flex-start; border-bottom-left-radius:4px; }
  .wa-user{ background:var(--accent); 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:#fff;
    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:rgba(111,91,214,.45);
    box-shadow:0 0 0 2px rgba(111,91,214,.14);
    background:#fff;
  }
  .wa-send{
    background:var(--accent);
    color:#fff;
    border:0;
    border-radius:12px;
    padding:0 16px;
    font-weight:800;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
  }
  .wa-send:hover{ background:#5f4fd0; 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){
    .fb-float{ right:12px; bottom:190px; width:50px; height:50px; }
    .ig-float{ right:12px; bottom:132px; width:50px; height:50px; }
    .tt-float{ right:12px; bottom:74px;  width:50px; height:50px; }
    .wa-float{ right:12px; bottom:12px; }
    .wa-btn{ width:58px; height:58px; }
    .wa-card{ width:calc(100vw - 24px); right:0; }
  }

      
Manifest preview
{
    "template": "mygimportados.com.ar/index.html",
    "template_mtime": 1777987265,
    "template_mtime_human": "2026-05-05T13:21:05+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.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&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.min.css",
        "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 4,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}