MIX · extractor de estilos
Template: burbujasjabonesartesanales.com.ar/index.html · mtime: 2026-02-05 15:56
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 2 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: burbujasjabonesartesanales.com.ar/index.html */
/* Template mtime: 2026-02-05 15:56: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://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #F8D7FF;
      --primary-dark: #E5B8F4;
      --secondary: #FFC9DE;
      --accent: #D0A8FF;
      --dark: #1A1A2E;
      --light: #FFF9FD;
      --gray: #6C757D;
      --gray-light: #F8F9FA;
      --border: rgba(0,0,0,0.08);
      --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
      --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --radius-xl: 40px;
      --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: 80px;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: linear-gradient(135deg, #FFF9FD 0%, #FFF5FB 100%);
      color: var(--dark);
      overflow-x: hidden;
      line-height: 1.6;
    }
    
    /* Tipografía premium */
    h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    
    .section-title {
      background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 2px;
    }
    
    /* Navbar premium */
    .navbar {
      background: rgba(255, 249, 253, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
      transition: var(--transition);
    }
    
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--dark) !important;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .logo-badge {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    
    .navbar-brand:hover .logo-badge {
      transform: rotate(15deg) scale(1.1);
    }
    
    .nav-link {
      color: var(--dark) !important;
      font-weight: 500;
      padding: 0.5rem 1.2rem !important;
      border-radius: 50px;
      transition: var(--transition);
      position: relative;
    }
    
    .nav-link:hover, .nav-link.active {
      background: rgba(248, 215, 255, 0.2);
      transform: translateY(-2px);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 1px;
      transition: var(--transition);
    }
    
    .nav-link:hover::after, .nav-link.active::after {
      width: 60%;
    }
    
    /* Botones premium */
    .btn-primary-custom {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border: none;
      color: var(--dark);
      font-weight: 600;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn-primary-custom::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
      transition: var(--transition);
      z-index: -1;
    }
    
    .btn-primary-custom:hover::before {
      left: 0;
    }
    
    .btn-primary-custom:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: var(--shadow-lg);
    }
    
    .btn-secondary-custom {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--dark);
      font-weight: 600;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      transition: var(--transition);
    }
    
    .btn-secondary-custom:hover {
      background: var(--primary);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    
    /* Hero section */
    .hero-section {
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }
    
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 50%, rgba(248, 215, 255, 0.2) 0%, transparent 50%),
                  radial-gradient(circle at 80% 20%, rgba(255, 201, 222, 0.15) 0%, transparent 50%);
      z-index: -1;
    }
    
    .hero-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: var(--radius-xl);
      padding: 4rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .hero-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 200%;
      background: linear-gradient(135deg, transparent 30%, rgba(248, 215, 255, 0.1) 50%, transparent 70%);
      animation: shine 8s infinite linear;
    }
    
    @keyframes shine {
      0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
      100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }
    
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: var(--dark);
      font-weight: 600;
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 2rem;
    }
    
    .hero-image {
      width: 100%;
      height: 100%;
      min-height: 400px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .hero-image:hover img {
      transform: scale(1.05);
    }
    
    .feature-list {
      list-style: none;
      padding: 0;
    }
    
    .feature-list li {
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .feature-list i {
      color: var(--accent);
      font-size: 1.2rem;
    }
    
    /* Cards premium */
    .card-premium {
      background: white;
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      height: 100%;
      transition: var(--transition);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }
    
    .card-premium::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    
    .card-premium:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    
    .card-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }
    
    .card-premium:hover .card-icon {
      transform: rotate(15deg) scale(1.1);
    }
    
    /* Tienda iframe - FIX COMPLETO */
    .shop-container {
      background: white;
      border-radius: var(--radius-xl);
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }
    
    .shop-frame {
      width: 100%;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: white;
      position: relative;
    }
    
    .shop-frame iframe {
      width: 100% !important;
      height: 85vh !important;
      min-height: 700px;
      border: none;
      display: block;
      -webkit-overflow-scrolling: touch !important;
      overflow: auto !important;
      transform: scale(1) !important;
      transform-origin: top left;
      background: white;
    }
    
    /* FAQ premium */
    .accordion-premium .accordion-item {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-md) !important;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    
    .accordion-premium .accordion-item:hover {
      box-shadow: var(--shadow-md);
    }
    
    .accordion-premium .accordion-button {
      background: white;
      color: var(--dark);
      font-weight: 600;
      padding: 1.5rem;
      border: none;
      box-shadow: none;
    }
    
    .accordion-premium .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, rgba(248,215,255,0.1) 0%, rgba(255,255,255,1) 100%);
      color: var(--dark);
    }
    
    .accordion-premium .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A2E'%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: scale(1.2);
    }
    
    .accordion-premium .accordion-button:not(.collapsed)::after {
      transform: scale(1.2) rotate(180deg);
    }
    
    /* Contacto premium */
    .contact-card {
      background: white;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      height: 100%;
    }
    
    .contact-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      padding: 2rem;
      color: var(--dark);
    }
    
    .contact-info {
      padding: 2rem;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
    }
    
    .contact-item:last-child {
      border-bottom: none;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: rgba(248, 215, 255, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.2rem;
    }
    
    .contact-form {
      background: white;
      border-radius: var(--radius-xl);
      padding: 3rem;
      box-shadow: var(--shadow-lg);
      height: 100%;
    }
    
    .form-control-custom {
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1rem;
      font-size: 1rem;
      transition: var(--transition);
      background: var(--gray-light);
    }
    
    .form-control-custom:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 0.25rem rgba(208, 168, 255, 0.25);
      background: white;
    }
    
    /* Footer premium */
    footer {
      background: linear-gradient(135deg, var(--dark) 0%, #2A2A4E 100%);
      color: white;
      padding: 4rem 0 2rem;
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition);
      display: block;
      padding: 0.3rem 0;
    }
    
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 5px;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .social-icon:hover {
      background: var(--primary);
      color: var(--dark);
      transform: translateY(-3px);
    }
    
    /* Animaciones */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* === FIX PARA ICONOS FALTANTES === */
    .bi::before {
      display: inline-block;
      font-family: "bootstrap-icons" !important;
      font-style: normal;
      font-weight: normal !important;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      vertical-align: -.125em;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    .feature-list i,
    .hero-badge i,
    .btn i,
    .navbar-brand i,
    .card-icon i {
      font-size: inherit !important;
      display: inline-block !important;
      line-height: 1 !important;
    }
    
    /* === RESPONSIVE FIXES === */
    @media (max-width: 768px) {
      .hero-section {
        padding: 100px 0 60px;
      }
      
      .hero-card {
        padding: 2rem;
      }
      
      .contact-form {
        padding: 2rem;
      }
      
      /* Tienda en móviles */
      .shop-container {
        padding: 1rem !important;
        overflow: visible !important;
      }
      
      .shop-frame iframe {
        height: 100vh !important;
        min-height: 800px;
        width: 100% !important;
        zoom: 1;
        -webkit-zoom: 1;
        -moz-transform: scale(1);
        -moz-transform-origin: 0 0;
      }
      
      .shop-frame {
        margin: 0;
        padding: 0;
        border-radius: 12px;
      }
      
      /* Mensaje de tienda */
      .shop-mobile-note {
        background: #e7f1ff;
        border-radius: 12px;
        padding: 1rem;
        margin-top: 1rem;
      }
    }
    
    @media (max-width: 576px) {
      .navbar-brand {
        font-size: 1.5rem;
      }
      
      .logo-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      
      .btn-primary-custom, .btn-secondary-custom {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
      }
      
      /* FIX ESPACIADO EN HERO PARA MÓVILES */
      .hero-section h1.display-4 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        word-spacing: normal !important;
        letter-spacing: -0.01em;
        margin-bottom: 1rem !important;
        hyphens: auto;
        -webkit-hyphens: auto;
        overflow-wrap: break-word;
        text-align: left;
      }
      
      .hero-section .lead {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        word-spacing: normal !important;
        margin-bottom: 1.5rem !important;
      }
      
      .feature-list li {
        padding: 0.3rem 0;
        font-size: 0.95rem;
      }
      
      .hero-section .d-flex.gap-3 {
        gap: 0.5rem !important;
      }
      
      /* Botones flotantes en móviles */
      .wa-float {
        right: 12px !important;
        bottom: 12px !important;
      }
      
      .ig-float {
        right: 12px !important;
        bottom: 80px !important;
      }
      
      .wa-btn, .ig-float {
        width: 50px !important;
        height: 50px !important;
      }
    }
    
    /* Para tablets */
    @media (max-width: 992px) and (min-width: 769px) {
      .shop-frame iframe {
        height: 75vh !important;
        min-height: 600px;
      }
    }
    
    /* === FIX PARA OVERFLOW EN MÓVILES === */
    @media (max-width: 768px) {
      html, body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
      }
      
      .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
      }
      
      .row {
        margin-left: 0;
        margin-right: 0;
      }
      
      .col-md-6, .col-lg-6, .col-lg-4, .col-lg-3 {
        padding-left: 8px;
        padding-right: 8px;
      }
    }
    
    /* === MEJORA PARA NAVBAR EN MÓVILES === */
    @media (max-width: 991px) {
      .navbar-collapse {
        background: rgba(255, 249, 253, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }
      
      .navbar-nav {
        gap: 0.5rem !important;
      }
      
      .nav-link {
        padding: 0.8rem 1rem !important;
        text-align: center;
      }
    }
    
    /* === FIX PARA GALERÍA EN MÓVILES === */
    @media (max-width: 576px) {
      .gal-frame {
        height: 250px !important;
      }
      
      .carousel-control-prev,
      .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
      }
    }
    
    /* === FIX PARA ACCORDION EN MÓVILES === */
    @media (max-width: 576px) {
      .accordion-button {
        padding: 1rem !important;
        font-size: 0.95rem;
      }
      
      .accordion-body {
        padding: 1rem !important;
        font-size: 0.9rem;
      }
    }
    
    /* Estilos específicos para la galería */
    .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 para galería */
    @media (max-width: 575.98px){
      .gal-frame{height: clamp(200px, 40vh, 360px)}
    }
    
    /* Alert para tienda móvil */
    .alert-info-custom {
      background: #e7f1ff;
      border: 1px solid #b3d4ff;
      border-radius: 12px;
      padding: 1rem;
      margin-top: 1rem;
    }
    
    .alert-info-custom i {
      color: #0066cc;
      font-size: 1.2rem;
    }
    .logo-badge {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.logo-badge {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* footer un poco más chico */
.footer-logo .logo-badge {
  width: 32px;
  height: 32px;
}
/* ===== HERO TITULO ===== */
.hero-title {
  margin-bottom: 1rem;
  line-height: 1.15;
  hyphens: none;
  word-break: normal;
}

.hero-top {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

.hero-brand {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
}

.hero-bottom {
  display: block;
  font-size: 1.3rem;
  margin-top: .25rem;
}

/* ===== DESCRIPCION ===== */
.hero-desc {
  margin-bottom: 1.2rem;
}

/* ===== FEATURES COMPACTAS ===== */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.feature-list i {
  color: #b084ff;
  margin-top: .15rem;
  flex-shrink: 0;
}

/* ===== BOTONES ===== */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
}

/* ===== MAIL ===== */
.hero-mail {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: #888;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 575px) {
  .hero-brand {
    font-size: 2.1rem;
  }

  .hero-bottom {
    font-size: 1.1rem;
  }
}

/* ===== INLINE <style> BLOCK #2 ===== */
:root{
    /* WhatsApp VERDE original */
    --wa:#25D366;
    --wa-dark:#1EBE5D;
  }

  /* IG button (arriba del WA) */
  .ig-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(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;
  }
  .ig-float:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 14px 36px rgba(0,0,0,.35);
  }

  /* WhatsApp flotante */
  .wa-float{ position:fixed; right:18px; bottom:18px; z-index:9999; font-family:inherit; }

  /* ✅ Importante: el botón debe "capturar" clicks en TODO su círculo */
  .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 28px rgba(37,211,102,.35), 0 8px 24px rgba(0,0,0,.18);
    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(37,211,102,.42), 0 14px 36px rgba(0,0,0,.24);
    filter:saturate(1.02) brightness(1.02);
  }

  /* ✅ Clave: el SVG NO "bloquea" el click (así el click siempre cuenta como del botón) */
  .wa-btn svg{ color:#fff; pointer-events:none; }

  .wa-card{
    position:absolute; right:0; bottom:74px;
    width:min(360px,92vw);
    background:#fff; color:#0b0b0b;
    border-radius:18px; overflow:hidden;
    box-shadow:0 18px 60px rgba(0,0,0,.25);
    border:1px solid rgba(0,0,0,.14);
    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, rgba(37,211,102,.18), #ffffff);
    border-bottom:1px solid rgba(0,0,0,.12);
  }
  .wa-avatar{
    width:40px; height:40px; border-radius:10px;
    background:rgba(37,211,102,.15);
    display:grid; place-items:center;
    border:1px solid rgba(0,0,0,.10);
    overflow:hidden;
  }
  .wa-title{ font-weight:800; font-size:1.02rem; }
  .wa-status{
    font-size:.85rem; color:rgba(0,0,0,.62);
    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; 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;
    color:rgba(0,0,0,.62);
  }
  .wa-close:hover{ opacity:1; background:rgba(0,0,0,.04); }

  .wa-body{
    padding:12px 14px;
    max-height:40vh;
    overflow:auto;
    background:#f6f8f7;
    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);
    font-size:0.9rem;
  }
  .wa-bot{
    background:#fff;
    border:1px solid rgba(0,0,0,.12);
    align-self:flex-start;
    border-bottom-left-radius:4px;
  }
  .wa-user{
    background:var(--wa);
    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 rgba(0,0,0,.12);
  }
  .wa-compose textarea{
    resize:none;
    border-radius:12px;
    padding:10px 12px;
    border:1px solid rgba(0,0,0,.12);
    background:#f9fbfa;
    color:#0b0b0b;
    outline:none;
    min-height:44px;
    font-family:inherit;
    font-size:0.9rem;
    transition:.2s;
  }
  .wa-compose textarea:focus{
    border-color:rgba(37,211,102,.6);
    box-shadow:0 0 0 2px rgba(37,211,102,.18);
    background:#fff;
  }
  .wa-send{
    background:var(--wa);
    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:var(--wa-dark); transform:scale(1.04); }

  @media (max-width:480px){
    .ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
    .wa-float{ right:12px; bottom:12px; }
    .wa-card{ width:calc(100vw - 24px); right:0; }
  }

      
Manifest preview
{
    "template": "burbujasjabonesartesanales.com.ar/index.html",
    "template_mtime": 1770306965,
    "template_mtime_human": "2026-02-05T15:56: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://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
    ],
    "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://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 2,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}