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

/* 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&family=Playfair+Display:wght@400;500;600;700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== VARIABLES Y RESET ===== */
    :root {
      --accent: #7f1637;
      --accent-light: rgba(127, 22, 55, 0.1);
      --accent-dark: #6b1230;
      --text: #1a1a1a;
      --text-light: #666;
      --text-lighter: #8a8a8a;
      --border: #eaeaea;
      --border-light: #f0f0f0;
      --soft: #fafafa;
      --white: #ffffff;
      --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
      --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
      --radius: 20px;
      --radius-sm: 12px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    
    html, body { width: 100%; overflow-x: hidden; }
body {
      background: var(--white);
      color: var(--text);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

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

    /* ===== UTILITIES ===== */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-title {
      font-size: 3.2rem;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent-dark));
      border-radius: 2px;
    }

    .section-title.center::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .section-subtitle {
      color: var(--text-light);
      font-size: 1.125rem;
      max-width: 600px;
      margin-bottom: 3rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: 0.75rem;
      color: var(--accent);
      background: var(--accent-light);
      border: 1px solid rgba(127, 22, 55, 0.2);
      padding: 0.5rem 1rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }

    /* ===== NAVBAR PREMIUM ===== */
    .navbar {
      background: rgba(255, 255, 255, 0.95) !important;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(234, 234, 234, 0.8);
      padding: 1.25rem 0;
      transition: var(--transition);
    }

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

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .brand-dot {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .brand-dot::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
      animation: shine 3s infinite linear;
    }

    @keyframes shine {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .brand-name {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .nav-link {
      font-weight: 600;
      color: var(--text) !important;
      padding: 0.5rem 1rem !important;
      margin: 0 0.25rem;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      position: relative;
    }

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

    .nav-link:hover {
      color: var(--accent) !important;
      background: var(--accent-light);
    }

    .nav-link:hover::after {
      width: 80%;
    }

    .nav-link.active {
      color: var(--accent) !important;
      background: var(--accent-light);
    }

    .nav-link.active::after {
      width: 80%;
    }

    .btn-accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      border: none;
      color: var(--white);
      font-weight: 600;
      padding: 0.875rem 1.75rem;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn-accent::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
      transition: var(--transition);
      z-index: -1;
    }

    .btn-accent:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 30px rgba(127, 22, 55, 0.2);
    }

    .btn-accent:hover::before {
      left: 0;
    }

    /* ===== HERO SECTION PREMIUM ===== */
    .hero {
      padding: 140px 0 100px;
      background: linear-gradient(135deg, #fff 0%, var(--soft) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 70%;
      height: 200%;
      background: linear-gradient(135deg, var(--accent-light) 0%, transparent 70%);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      animation: morph 20s infinite linear;
    }

    @keyframes morph {
      0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
      25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
      50% { border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%; }
      75% { border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%; }
    }

    .hero h1 {
      font-size: 4rem;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .hero p {
      color: var(--text-light);
      font-size: 1.25rem;
      margin-bottom: 2rem;
      max-width: 600px;
      position: relative;
      z-index: 1;
    }

    .hero-highlight {
      color: var(--accent);
      font-weight: 700;
      position: relative;
    }

    .hero-highlight::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 100%;
      height: 6px;
      background: var(--accent-light);
      z-index: -1;
    }

    .hero-bullets {
      margin: 2rem 0;
      padding: 0;
      list-style: none;
      position: relative;
      z-index: 1;
    }

    .hero-bullets li {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      padding: 0.75rem 1rem;
      background: var(--white);
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .hero-bullets li:hover {
      transform: translateX(10px);
      box-shadow: var(--shadow-hover);
    }

    .hero-bullets i {
      color: var(--accent);
      font-size: 1.25rem;
      background: var(--accent-light);
      padding: 0.5rem;
      border-radius: 10px;
    }

    .hero-image-container {
      position: relative;
      z-index: 1;
    }

    .hero-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
    }

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

    .hero-img-wrap {
      padding: 2rem;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

    .hero-img {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: contain;
      border-radius: var(--radius-sm);
    }

    .hero-card-footer {
      border-top: 1px solid var(--border);
      padding: 1.5rem;
      background: linear-gradient(180deg, var(--white), var(--soft));
      color: var(--text-light);
      font-size: 0.9rem;
    }

    /* ===== FEATURE CARDS PREMIUM ===== */
    .soft {
      background: linear-gradient(135deg, var(--soft) 0%, #fff 100%);
      position: relative;
    }

    .card-premium {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.5rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      z-index: 1;
    }

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

    .card-premium:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
      border-color: var(--accent-light);
    }

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

    .icon-badge {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--accent-light), rgba(127, 22, 55, 0.05));
      border: 1px solid rgba(127, 22, 55, 0.1);
      color: var(--accent);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      transition: var(--transition);
    }

    .card-premium:hover .icon-badge {
      transform: scale(1.1) rotate(5deg);
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: var(--white);
    }

    /* ===== GALLERY PREMIUM ===== */
    .gal-gallery {
      background: linear-gradient(135deg, #fff 0%, var(--soft) 100%);
    }

    .gal-frame {
      height: 500px;
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      transition: var(--transition);
      cursor: pointer;
    }

    .gal-frame:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-hover);
    }

    .gal-img {
      width: auto !important;
      max-width: 100%;
      height: auto !important;
      max-height: 100%;
      object-fit: contain !important;
      object-position: center;
      display: block;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 60px;
      height: 60px;
      background: var(--white);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: var(--accent);
      transform: translateY(-50%) scale(1.1);
    }

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

    .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--border);
      border: none;
      margin: 0 6px;
      transition: var(--transition);
    }

    .carousel-indicators .active {
      background: var(--accent);
      transform: scale(1.3);
    }

    /* ===== STORE SECTION ===== */
    .store-shell {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--white);
      border: 1px solid var(--border);
    }

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

    /* ===== CONTACT PREMIUM ===== */
    .contact-box {
      background: var(--white);
      border-radius: var(--radius);
      padding: 3rem;
      height: 100%;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      transition: var(--transition);
    }

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

    .form-control,
    .form-select {
      border-radius: var(--radius-sm);
      border: 2px solid var(--border);
      padding: 0.875rem 1rem;
      font-size: 1rem;
      transition: var(--transition);
      background: var(--white);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(127, 22, 55, 0.1);
      transform: translateY(-2px);
    }

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

    /* ===== FAQS PREMIUM ===== */
    .accordion-item {
      border: 2px solid var(--border);
      border-radius: var(--radius-sm) !important;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: var(--transition);
    }

    .accordion-item:hover {
      border-color: var(--accent-light);
    }

    .accordion-button {
      background: var(--white);
      color: var(--text);
      font-weight: 600;
      padding: 1.5rem;
      font-size: 1.1rem;
      transition: var(--transition);
    }

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

    .accordion-button:focus {
      box-shadow: 0 0 0 3px rgba(127, 22, 55, 0.1);
      border-color: var(--accent);
    }

    .accordion-body {
      padding: 1.5rem;
      background: var(--white);
      color: var(--text-light);
    }

    /* ===== FOOTER PREMIUM ===== */
    footer {
      background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
      color: var(--white);
      padding: 5rem 0 2rem;
      position: relative;
      overflow: hidden;
    }

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

    .footer-title {
      color: var(--white);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--accent);
    }

    .footer-link {
      color: rgba(255, 255, 255, 0.8) !important;
      text-decoration: none;
      display: inline-block;
      margin: 0.5rem 0;
      transition: var(--transition);
      position: relative;
      padding-left: 0;
    }

    .footer-link::before {
      content: '→';
      position: absolute;
      left: -20px;
      opacity: 0;
      transition: var(--transition);
      color: var(--accent);
    }

    .footer-link:hover {
      color: var(--white) !important;
      transform: translateX(10px);
    }

    .footer-link:hover::before {
      opacity: 1;
      left: -15px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-link {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      transition: var(--transition);
    }

    .social-link:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    

    /* ===== HERO LOGO EN MOBILE ===== */
    .hero-logo-mobile-img{
      width: min(72vw, 260px);
      height: auto;
      object-fit: contain;
      display: inline-block;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1199.98px) {
      .hero h1 { font-size: 3.5rem; }
      .section-title { font-size: 2.8rem; }
    }

    @media (max-width: 991.98px) {
      .hero { padding: 120px 0 80px; }
      .hero h1 { font-size: 3rem; }
      .section { padding: 80px 0; }
      .section-title { font-size: 2.5rem; }
      .nav-link { margin: 0.25rem 0; }
    }

    @media (max-width: 767.98px) {
      .hero h1 { font-size: 2.5rem; }
      .hero p { font-size: 1.125rem; }
      .section-title { font-size: 2.2rem; }
      .hero::before { display: none; }
      .store-iframe { height: 500px; }
      .gal-frame { height: 350px; }
    }

    @media (max-width: 575.98px) {
      .hero { padding: 100px 0 60px; }
      .brand-name{font-size:1.15rem; white-space:nowrap;}
      .navbar .container{padding-left:16px; padding-right:16px;}
      .navbar-toggler{padding:.25rem .5rem;}

      .hero h1 { font-size: 2rem; }
      .section { padding: 60px 0; }
      .section-title { font-size: 1.8rem; }
      .card-premium { padding: 1.5rem; }
      .contact-box { padding: 1.5rem; }
      .wa-float {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
      }
    }
    .brand-dot {
  width: 40px;
  height: 40px;
  background: #871a33; /* violeta */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

  
    /* ===== FIX ANTI-DESBORDE (MOBILE) ===== */
    img, svg, video, canvas, iframe { max-width: 100%; height: auto; }
    .container, .container-fluid { max-width: 100%; }
    .row { margin-left: 0; margin-right: 0; }

/* ===== 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 ===== */
:root{
    --vc-wa:#25D366;       /* WhatsApp oficial */
    --vc-wa-dark:#128C7E;  /* WhatsApp dark */
    --vc-fb:#1877F2;       /* Facebook oficial */
    --vc-fb-dark:#0f5dc7;
    --vc-dark:#0b0f18;
    --vc-darker:#0a1324;
    --vc-text:#ffffff;
    --vc-muted:rgba(255,255,255,.72);
  }

  .vc-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;
    font-family:inherit;
  }

  .vc-stack{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
  }

  /* Facebook */
  .vc-fb-btn{
    background:linear-gradient(135deg,var(--vc-fb),var(--vc-fb-dark));
    color:#fff;
    width:52px;
    height:52px;
    border-radius:50%;
    display:grid;
    place-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    text-decoration:none;
    border:0;
    cursor:pointer;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .vc-fb-btn:hover{
    transform:translateY(-2px) scale(1.03);
    box-shadow:0 14px 36px rgba(0,0,0,.35);
  }

  /* WhatsApp */
  .vc-wa-btn{
    background:linear-gradient(135deg,var(--vc-wa),var(--vc-wa-dark));
    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,.25);
    cursor:pointer;
    transition:transform .25s ease, box-shadow .25s ease;
    position:relative;
    overflow:hidden;
  }
  .vc-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 .25s ease;
  }
  .vc-wa-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 14px 36px rgba(0,0,0,.35);
  }
  .vc-wa-btn:hover::after{ opacity:1; }

  /* Card */
  .vc-card{
    position:absolute;
    right:0;
    bottom:74px;
    width:min(360px,92vw);
    background:var(--vc-dark);
    color:var(--vc-text);
    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 .25s ease, opacity .25s ease;
    z-index:1;
  }
  .vc-card[aria-modal="true"]{
    transform:translateY(0);
    opacity:1;
  }

  .vc-head{
    display:flex; align-items:center; gap:12px;
    padding:14px;
    background:linear-gradient(180deg,#0d162c,var(--vc-darker));
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .vc-avatar{
    width:40px; height:40px; border-radius:10px;
    background:#0e1a33;
    display:grid; place-items:center;
    border:1px solid rgba(255,255,255,.10);
  }
  .vc-title{ font-weight:800; font-size:1.05rem; }
  .vc-status{
    font-size:.85rem; color:var(--vc-muted);
    display:flex; align-items:center; gap:6px;
  }
  .vc-status::before{
    content:""; width:8px; height:8px; border-radius:50%; background:var(--vc-wa);
  }
  .vc-close{
    margin-left:auto;
    background:transparent;
    color:#fff;
    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;
  }
  .vc-close:hover{ opacity:1; background:rgba(255,255,255,.1); }

  .vc-body{
    padding:12px 14px;
    max-height:40vh;
    overflow:auto;
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  .vc-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:vcFadeIn .2s ease;
  }
  @keyframes vcFadeIn{ from{opacity:0; transform:translateY(5px)} to{opacity:1; transform:none} }
  .vc-bot{
    background:#0c1428;
    border:1px solid rgba(255,255,255,.06);
    align-self:flex-start;
    border-bottom-left-radius:4px;
  }
  .vc-user{
    background:var(--vc-wa-dark);
    align-self:flex-end;
    border-bottom-right-radius:4px;
  }

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

  @media (max-width:480px){
    .vc-float{ right:12px; bottom:12px; }
    .vc-card{ width:min(360px, calc(100vw - 24px)); max-width:calc(100vw - 24px); box-sizing:border-box; }
  }

      
Manifest preview
{
    "template": "vilcalzados.com.ar/index.html",
    "template_mtime": 1770729692,
    "template_mtime_human": "2026-02-10T13:21:32+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&family=Playfair+Display: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&family=Playfair+Display:wght@400;500;600;700&display=swap"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 3,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}