MIX · extractor de estilos
Template: muebleriasys.com.ar/index.html · mtime: 2026-03-11 16:46
← 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: muebleriasys.com.ar/index.html */
/* Template mtime: 2026-03-11 16:46:08 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap */
/* 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 */

/* ===== INLINE <style> BLOCK #1 ===== */
/* === VARIABLES Y RESET === */
    :root {
      --accent: #ef7d2d;
      --accent-2: #111827;
      --accent-soft: #1f2937;
      --ink: #0f172a;
      --ink-light: #334155;
      --muted: #64748b;
      --soft-bg: #f8fafc;
      --soft-border: #e9eef2;
      --white: #ffffff;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --shadow-sm: 0 4px 8px -2px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 12px 24px -8px rgba(2, 6, 23, 0.08), 0 4px 8px -2px rgba(2, 6, 23, 0.03);
      --shadow-lg: 0 24px 48px -12px rgba(2, 6, 23, 0.12), 0 8px 16px -4px rgba(2, 6, 23, 0.04);
      --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* === TIPOGRAFÍA MEJORADA === */
    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .display-5 {
      font-weight: 800;
      letter-spacing: -0.03em;
      font-size: clamp(2.2rem, 5vw, 3rem);
    }

    .section-title {
      font-weight: 800;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      letter-spacing: -0.03em;
      margin-bottom: 0.75rem;
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .eyebrow {
      display: inline-block;
      padding: 0.35rem 1rem;
      background: rgba(17, 24, 39, 0.05);
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--ink);
      margin-bottom: 1rem;
      backdrop-filter: blur(4px);
    }

    /* === LAYOUT === */
    .section {
      padding: 100px 0;
    }

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

    .container {
      max-width: 1280px;
      padding: 0 24px;
    }

    /* === NAVBAR MEJORADA (MÁS ELEGANTE) === */
    .navbar {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px) saturate(180%);
      -webkit-backdrop-filter: blur(12px) saturate(180%);
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      padding: 12px 0;
      transition: var(--transition);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      color: var(--ink) !important;
    }

    .brand-logo {
      height: 42px;
      width: auto;
      transition: var(--transition);
    }

    .navbar-brand:hover .brand-logo {
      transform: scale(1.02);
    }

    .nav-link {
      color: var(--ink-light) !important;
      font-weight: 500;
      font-size: 0.95rem;
      padding: 0.5rem 1rem !important;
      border-radius: 100px;
      transition: var(--transition);
    }

    .nav-link:hover {
      color: var(--ink) !important;
      background: rgba(17, 24, 39, 0.04);
    }

    /* === BOTONES PRO === */
    .btn {
      border-radius: 100px;
      padding: 0.65rem 1.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      transition: var(--transition);
      border: 1px solid transparent;
    }

    .btn-accent {
      background: var(--accent);
      border-color: var(--accent);
      color: white;
      box-shadow: var(--shadow-sm);
    }

    .btn-accent:hover {
      background: var(--accent-soft);
      border-color: var(--accent-soft);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-ghost {
      background: transparent;
      border: 1.5px solid rgba(15, 23, 42, 0.12);
      color: var(--ink);
    }

    .btn-ghost:hover {
      background: rgba(17, 24, 39, 0.02);
      border-color: rgba(15, 23, 42, 0.24);
      transform: translateY(-2px);
    }

    .btn-outline-light {
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      color: white;
    }

    .btn-outline-light:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
    }

    /* === CARDS MODERNAS === */
    .card-premium {
      background: var(--white);
      border: 1px solid var(--soft-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      height: 100%;
      overflow: hidden;
    }

    .card-premium:hover {
      box-shadow: var(--shadow-md);
      border-color: rgba(17, 24, 39, 0.12);
    }

    .card-body {
      padding: 2rem;
    }

    .soft-bg {
      background: var(--soft-bg);
    }

    /* === HERO SECTION (MÁS DINÁMICO) === */
    .hero {
      padding-top: 130px;
      padding-bottom: 40px;
      background: 
        radial-gradient(100% 100% at 70% 0%, rgba(17, 24, 39, 0.02) 0%, transparent 50%),
        radial-gradient(80% 80% at 20% 80%, rgba(17, 24, 39, 0.01) 0%, transparent 50%);
    }

    .hero-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--soft-border);
      background: var(--white);
    }

    .hero-img {
      width: 100%;
      height: auto;        /* 👈 clave */
      object-fit: contain; /* opcional */
      display: block;

      transition: var(--transition);
    }

    .hero-points {
      display: grid;
      gap: 12px;
      margin: 28px 0 20px;
    }

    .hero-point {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 18px;
      background: rgba(17, 24, 39, 0.02);
      border-radius: var(--radius-md);
      border: 1px solid var(--soft-border);
    }

    .hero-point .bi {
      color: var(--accent);
      font-size: 1.25rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .hero-point strong {
      font-weight: 700;
      color: var(--ink);
    }

    /* === SERVICE ITEMS === */
    .service-list {
      display: grid;
      gap: 8px;
    }

    .service-item {
      padding: 14px 18px;
      background: var(--white);
      border: 1px solid var(--soft-border);
      border-radius: var(--radius-md);
      font-weight: 600;
      color: var(--ink-light);
      display: flex;
      align-items: center;
      gap: 12px;
      transition: var(--transition);
    }

    .service-item:hover {
      border-color: var(--accent);
      background: rgba(17, 24, 39, 0.02);
      transform: translateX(4px);
    }

    .service-item::before {
      content: "•";
      color: var(--accent);
      font-size: 1.5rem;
      line-height: 1;
    }

    /* === WHY CARDS (POR QUÉ ELEGIRNOS) === */
    .why-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .why-card {
      background: var(--white);
      border: 1px solid var(--soft-border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(17, 24, 39, 0.18);
    }

    .why-ico {
      width: 56px;
      height: 56px;
      background: rgba(17, 24, 39, 0.04);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--accent);
      transition: var(--transition);
    }

    .why-card:hover .why-ico {
      background: var(--accent);
      color: white;
    }

    .why-ico .bi {
      font-size: 26px;
    }

    .why-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .why-card p {
      color: var(--muted);
      margin-bottom: 0;
      line-height: 1.6;
    }

    /* === PDF WRAPPER (MEJORADO: CATÁLOGO EN PRIMER PLANO) === */
.pdf-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.pdf-embed {
  width: 100%;
  height: 78vh;
  min-height: 640px;
  border: 0;
  display: block;
  background: #fff;
}

.catalog-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.catalog-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .pdf-embed {
    height: 65vh;
    min-height: 520px;
  }
}

/* === GALERÍA === */
    .gal-gallery .carousel {
      max-width: 1000px;
      margin: 0 auto;
    }

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

    .gal-img {
      width: auto !important;
      max-width: 100%;
      height: auto !important;
      max-height: 100%;
      object-fit: contain;
      border-radius: var(--radius-sm);
      cursor: zoom-in;
      transition: var(--transition);
    }

    .gal-img:hover {
      opacity: 0.95;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 48px;
      height: 48px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.45);
      border-radius: 100px;
      opacity: 1;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .carousel-control-prev { left: 16px; }
    .carousel-control-next { right: 16px; }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 24px;
      height: 24px;
    }

    .carousel-indicators {
      bottom: -48px;
    }

    .carousel-indicators button {
      width: 10px !important;
      height: 10px !important;
      border-radius: 100px !important;
      background: var(--muted) !important;
      opacity: 0.3;
      margin: 0 6px !important;
    }

    .carousel-indicators button.active {
      opacity: 1;
      background: var(--accent) !important;
      width: 24px !important;
    }

    /* === ACCORDION === */
    .accordion-item {
      border: 1px solid var(--soft-border) !important;
      border-radius: var(--radius-md) !important;
      overflow: hidden;
      margin-bottom: 12px;
      background: var(--white);
    }

    .accordion-button {
      font-weight: 700;
      padding: 1.25rem 1.5rem;
      color: var(--ink);
      background: var(--white);
      font-size: 1rem;
    }

    .accordion-button:not(.collapsed) {
      background: rgba(17, 24, 39, 0.02);
      color: var(--ink);
      box-shadow: none;
    }

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

    .accordion-body {
      padding: 1.25rem 1.5rem;
      color: var(--ink-light);
      background: var(--white);
      border-top: 1px solid var(--soft-border);
    }

    /* === FORMULARIO === */
    .contact-card {
      background: var(--white);
      border: 1px solid var(--soft-border);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow-sm);
      height: 100%;
    }

    .form-label {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--ink);
      margin-bottom: 0.3rem;
    }

    .form-control,
    .form-select {
      border-radius: var(--radius-sm);
      border: 1.5px solid var(--soft-border);
      padding: 0.75rem 1rem;
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
      outline: none;
    }

    .info-block {
      padding: 1.25rem;
      background: rgba(17, 24, 39, 0.02);
      border-radius: var(--radius-md);
      border: 1px solid var(--soft-border);
      transition: var(--transition);
    }

    .info-block:hover {
      background: rgba(17, 24, 39, 0.04);
    }

    .info-block .bi {
      color: var(--accent);
      font-size: 1.2rem;
      margin-right: 10px;
    }

    /* === FOOTER ELEGANTE === */
    footer {
      background: var(--accent);
      color: white;
      padding: 56px 0 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .footer-logo {
      height: 48px;
      width: auto;
    }

    .footer-name {
      font-weight: 800;
      font-size: 1.4rem;
      letter-spacing: -0.02em;
    }

    .footer-desc {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      max-width: 360px;
      line-height: 1.6;
    }

    footer h6 {
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
      color: white;
    }

    footer a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
      margin-bottom: 0.5rem;
    }

    footer a:hover {
      color: white;
      transform: translateX(4px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
      margin-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.85rem;
    }

    /* === LIGHTBOX === */
    .modal-content.bg-black {
      background: rgba(0, 0, 0, 0.95) !important;
      backdrop-filter: blur(8px);
    }

    .gal-lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-size: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      z-index: 1060;
    }

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

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

    #galLightboxImg {
      max-height: 85vh;
      width: 100%;
      object-fit: contain;
    }

    /* === RESPONSIVE FIXES === */
    @media (max-width: 768px) {
      .hero-card {
        margin-top: 24px;
      }
      
      .why-grid {
        grid-template-columns: 1fr;
      }
      
      .carousel-control-prev,
      .carousel-control-next {
        width: 40px;
        height: 40px;
      }
      
      .gal-lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 2rem;
      }
    }
  /* === CATÁLOGO FULL WIDTH + PDF.JS (mejor compatibilidad mobile) === */
.catalog-card .card-body{ padding: 1.25rem; }
.catalog-card.fullbleed .card-body{ padding: 0; }
.catalog-head{ padding: 1.25rem; padding-bottom: .75rem; }

.pdf-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.catalog-card.fullbleed .pdf-wrap{
  border-left: 0; border-right: 0;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid var(--soft-border);
  border-bottom: 1px solid var(--soft-border);
}

/* Iframe/Embed (desktop) */
.pdf-embed{
  width:100%;
  height: 86vh;
  min-height: 760px;
  border:0;
  display:block;
  background:#fff;
}

/* PDF.js viewer (mobile fallback) */
.pdfjs-viewer{
  width:100%;
  background:#fff;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  max-height: 90vh;
  min-height: 85vh;
  padding: .5rem;
}

.pdfjs-page{
  display:block;
  margin: 0 auto 1rem auto;
  width:100%;
  height:auto;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(2,6,23,.08);
  background:#fff;
}

@media (max-width: 992px){
  .pdf-embed{ height: 72vh; min-height: 560px; }
}

@media (max-width: 768px){
  .pdf-embed{ display:none !important; }
  .pdfjs-viewer{ display:block; }
  .catalog-card.fullbleed .catalog-head{ padding: .75rem; }
}

@media (min-width: 769px){
  .pdfjs-viewer{ display:none; }
}

/* === PDF.js viewer en MODAL (pantalla completa) === */
.pdfjs-viewer--modal{
  max-height: calc(100vh - 64px); /* header modal */
  min-height: calc(100vh - 64px);
  padding: .75rem;
}
@media (max-width: 768px){
  .pdfjs-viewer--modal{ padding: .5rem; }
}
.service-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all .3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.service-card h5 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--ink);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.service-icon {

  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}


.highlight-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.highlight-card h5,
.highlight-card p {
  color: #fff;
}

.highlight-card .service-icon {
  background: rgba(255,255,255,.2);
}

/* === VIDEOS FACEBOOK (responsive + sin contenedor gigante) === */
.fb-video-wrapper{
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
  background: #000; /* evita transparencias raras mientras carga */
  aspect-ratio: 4 / 4;
}
.fb-video-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.fb-video-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.75rem;
  color:#fff;
  font-weight:700;
  text-align:center;
  padding:1rem;
  background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  cursor:pointer;
}
.fb-video-placeholder .play{
  width:56px;height:56px;border-radius:999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  display:flex;align-items:center;justify-content:center;
  backdrop-filter: blur(8px);
}
.fb-video-placeholder .play svg{ width:22px; height:22px; fill:#fff; margin-left:2px;}
.fb-video-placeholder small{display:block;opacity:.85;font-weight:600}



/* === FIX OVERFLOW / NAVBAR MOBILE (evita scroll horizontal) === */
html, body{ max-width:100%; overflow-x:hidden; }
img, iframe, video, canvas{ max-width:100%; }

/* Evita que el brand empuje el toggler fuera de pantalla */
.navbar .container{ min-width:0; }
.navbar-brand{ min-width:0; max-width: calc(100% - 64px); }
.navbar-brand span{ display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

@media (max-width: 576px){
  .container{ padding-left: 16px; padding-right: 16px; }
  .navbar{ padding: 10px 0; }
  .brand-logo{ height: 34px; }
  .navbar-brand{ font-size: 1.05rem; gap: 10px; }
  .navbar-toggler{ margin-left:auto; }
  /* Por si algún componente se pasa 1-2px por gutters */
  .row{ margin-left: 0; margin-right: 0; }
}

/* === WhatsApp doble (2 números) === */
.wa-duo .btn{ width:100%; }
@media (min-width: 992px){
  /* En desktop en navbar: los ponemos uno al lado del otro */
  .navbar .wa-duo{ flex-direction: row !important; }
  .navbar .wa-duo .btn{ width:auto; padding:.55rem 1.1rem; font-size:.92rem; }
}
@media (max-width: 991.98px){
  /* En mobile: que no se vean enormes */
  .navbar .wa-duo .btn{ padding:.55rem 1.1rem; font-size:.92rem; }
}

/* ===== INLINE <style> BLOCK #2 ===== */
/* ===================== VIDEOS LOCALES ===================== */
  .vids-4 .vid-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.12);
    border-radius:18px;
    box-shadow:0 10px 30px rgba(2,6,23,.06);
    padding:12px;
    height:100%;
  }
  
  .vids-4 .vid-frame{
    width:100%;
    aspect-ratio:9 / 16;
    border-radius:16px;
    overflow:hidden;
    background:#f6f8fb;
    border:1px solid rgba(15,23,42,.12);
    position:relative;
  }
  
  .vids-4 .vid-el{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    background:#000;
  }
  
  .vids-4 .vid-preview{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    background:#f6f8fb;
    z-index:2;
    cursor:pointer;
  }
  
  .vids-4 .vid-play{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:54px;
    height:54px;
    border-radius:999px;
    border:0;
    background:rgba(0,0,0,.55);
    color:#fff;
    z-index:3;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  
  .vids-4 .vid-play:hover{
    background:rgba(0,0,0,.65);
  }
  
  .vids-4 .vid-play-ico{
    font-size:18px;
    margin-left:2px;
  }
  
  .vids-4 .vid-frame.is-playing .vid-preview,
  .vids-4 .vid-frame.is-playing .vid-play{
    display:none !important;
  }
  
  @media (max-width: 575.98px){
    .vids-4 .vid-card{
      padding:10px;
    }
  }

/* ===== INLINE <style> BLOCK #3 ===== */
/* contenedor */
.social-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
  font-family:inherit;
}

/* ===== Facebook button ===== */
.fb-btn{
  width:56px;height:56px;border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(135deg,#1877F2,#0f5fd3);
  color:#fff;text-decoration:none;
  box-shadow:0 10px 30px rgba(24,119,242,.35);
  transition:transform .25s, box-shadow .25s;
}
.fb-btn:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 14px 36px rgba(24,119,242,.45); }

/* ===== Instagram button ===== */
.ig-btn{
  width:56px;height:56px;border-radius:50%;
  display:grid;place-items:center;
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color:#fff;text-decoration:none;
  box-shadow:0 10px 30px rgba(214,36,159,.28);
  transition:transform .25s, box-shadow .25s;
}
.ig-btn:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 14px 36px rgba(214,36,159,.38); }

/* ===== WhatsApp (igual que el tuyo) ===== */
:root{
  --wa:#6ba1bc; --wa-dark:#5a8a9f; --wa-light:#7db3ca;
  --wa-text:#1a1a1a; --wa-muted:#6c757d; --wa-bg:#ffffff; --wa-border:#e3e6ea;
}
.wa-float{ position:relative; }
.wa-btn{
  width:60px;height:60px;border-radius:50%;
  border:none;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;display:grid;place-items:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(37,211,102,.45);
  transition:transform .3s, box-shadow .3s;
}
.wa-btn:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 14px 36px rgba(37,211,102,.55); }

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

.wa-head{
  display:flex; align-items:center; gap:12px;
  padding:14px;
  background:linear-gradient(135deg,var(--wa),var(--wa-dark));
  color:#fff;
}
.wa-avatar{
  width:40px;height:40px;background:#fff;border-radius:8px;
  display:grid;place-items:center;overflow:hidden;
}
.wa-avatar img{width:26px;height:26px;object-fit:contain}
.wa-title{ font-weight:700; }
.wa-status{ font-size:.85rem; opacity:.9; }
.wa-close{ margin-left:auto;border:none;background:transparent;color:#fff;font-size:24px;cursor:pointer; }

.wa-body{
  padding:14px; max-height:40vh; overflow:auto;
  background:#f8f9fa; display:flex; flex-direction:column; gap:8px;
}
.wa-bubble{
  max-width:88%;
  padding:10px 12px;
  border-radius:14px;
  font-size:.95rem;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{ background:#fff;border:1px solid var(--wa-border); align-self:flex-start; }
.wa-user{ background:#eaf4f8;border:1px solid #cfe4ef; align-self:flex-end; }

.wa-compose{
  display:grid; grid-template-columns:1fr auto; gap:8px;
  padding:10px; border-top:1px solid var(--wa-border); background:#fff;
}
.wa-compose textarea{
  resize:none;border-radius:12px;padding:10px;border:1px solid var(--wa-border);font-family:inherit;
}
.wa-send{ background:var(--wa);color:#fff;border:none;border-radius:12px;padding:0 16px;cursor:pointer; }
.wa-send:hover{ background:var(--wa-dark); }

@media(max-width:480px){
  .wa-card{ width:calc(100vw - 24px); }
}

      
Manifest preview
{
    "template": "muebleriasys.com.ar/index.html",
    "template_mtime": 1773247568,
    "template_mtime_human": "2026-03-11T16:46:08+00:00",
    "css_links_found": [
        "https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
    ],
    "css_links_external": [
        "https://fonts.googleapis.com/css2?family=Inter:opsz,[email protected],400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 3,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}