/* MIXED CSS PACK */
/* Template: erazourbanclothes.com.ar/index.html */
/* Template mtime: 2026-02-18 12:44:20 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300..800&family=Space+Grotesk:wght@500..700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
/*--------------------------------------------------------------
    # VARIABLES Y RESET PROFESIONAL
    --------------------------------------------------------------*/
    :root {
      --accent: #ff3b7a;
      --accent-soft: rgba(255, 59, 122, 0.08);
      --accent-dim: rgba(255, 59, 122, 0.25);
      --black: #03050a;
      --gray-900: #0f172a;
      --gray-800: #1e293b;
      --gray-700: #334155;
      --gray-600: #475569;
      --gray-300: #cbd5e1;
      --gray-100: #f1f5f9;
      --white: #ffffff;
      --glass-bg: rgba(255, 255, 255, 0.72);
      --glass-border: rgba(15, 23, 42, 0.06);
      --shadow-xs: 0 2px 5px rgba(2, 6, 23, 0.02), 0 1px 2px rgba(2, 6, 23, 0.03);
      --shadow-sm: 0 5px 12px rgba(2, 6, 23, 0.03), 0 2px 4px rgba(2, 6, 23, 0.03);
      --shadow-md: 0 18px 32px -12px rgba(2, 6, 23, 0.08);
      --shadow-lg: 0 25px 40px -16px rgba(2, 6, 23, 0.12);
      --shadow-xl: 0 30px 60px -12px rgba(2, 6, 23, 0.18);
      --radius-sm: 14px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --radius-xl: 40px;
      --radius-pill: 999px;
      --transition: all 0.22s cubic-bezier(0.2, 0, 0, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
      overflow-x: clip;
      width: 100%;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      color: var(--gray-900);
      background: var(--white);
      line-height: 1.6;
      overflow-x: clip;
      width: 100%;
    }

    /*--------------------------------------------------------------
    # TIPOGRAFÍA PREMIUM
    --------------------------------------------------------------*/
    h1, h2, h3, h4, .h1, .h2, .h3, .h4, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6, .fw-black, .fw-bolder, .fw-extrabold {
      font-family: "Space Grotesk", "Inter", sans-serif;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .display-1 { font-size: clamp(3.5rem, 8vw, 5.5rem); line-height: 0.95; }
    .display-2 { font-size: clamp(3rem, 7vw, 4.5rem); line-height: 1; }
    .display-5 { font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.1; }
    .display-6 { font-size: clamp(1.6rem, 4vw, 2rem); line-height: 1.2; }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--accent);
      background: var(--accent-soft);
      padding: 0.55rem 1rem;
      border-radius: var(--radius-pill);
      border: 1px solid var(--accent-dim);
      backdrop-filter: blur(4px);
      margin-bottom: 1.2rem;
    }

    .section-title {
      font-size: clamp(2.2rem, 5vw, 2.8rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.2rem;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: var(--gray-600);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 400;
    }

    /*--------------------------------------------------------------
    # COMPONENTES GLASS Y CARDS
    --------------------------------------------------------------*/
    .glass-card {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .glass-card:hover {
      background: rgba(255, 255, 255, 0.85);
      border-color: rgba(15, 23, 42, 0.1);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .premium-card {
      background: var(--white);
      border: 1px solid rgba(15, 23, 42, 0.05);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-xs);
      transition: var(--transition);
      height: 100%;
    }

    .premium-card:hover {
      border-color: var(--accent-dim);
      box-shadow: var(--shadow-lg);
      transform: scale(1.01);
    }

    .icon-pill-premium {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(255,59,122,0.12), rgba(255,59,122,0.02));
      border: 1px solid rgba(255,59,122,0.2);
      color: var(--accent);
      font-size: 1.5rem;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .premium-card:hover .icon-pill-premium {
      background: linear-gradient(145deg, rgba(255,59,122,0.18), rgba(255,59,122,0.05));
      border-color: rgba(255,59,122,0.4);
      transform: scale(0.96);
    }

    /*--------------------------------------------------------------
    # BOTONES DE AUTOR
    --------------------------------------------------------------*/
    .btn-accent {
      background: var(--accent);
      border: none;
      color: white;
      font-weight: 700;
      padding: 0.85rem 1.8rem;
      border-radius: var(--radius-pill);
      letter-spacing: -0.01em;
      box-shadow: 0 8px 18px rgba(255, 59, 122, 0.25);
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-accent:hover {
      background: #ff1f5e;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(255, 59, 122, 0.35);
    }

    .btn-outline-accent {
      background: transparent;
      border: 1.5px solid rgba(255, 59, 122, 0.35);
      color: var(--accent);
      font-weight: 700;
      padding: 0.85rem 1.8rem;
      border-radius: var(--radius-pill);
      transition: var(--transition);
      backdrop-filter: blur(4px);
    }

    .btn-outline-accent:hover {
      background: var(--accent-soft);
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    /*--------------------------------------------------------------
    # NAVBAR DE LUJO
    --------------------------------------------------------------*/
    .navbar {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(15, 23, 42, 0.04);
      padding: 16px 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      letter-spacing: -0.02em;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, var(--accent-soft), rgba(255,255,255,0.1));
      border-radius: 16px;
      border: 1px solid rgba(255,59,122,0.2);
      color: var(--accent);
      font-size: 1.5rem;
    }

    .nav-link {
      font-weight: 600;
      color: var(--gray-800);
      padding: 0.5rem 1rem !important;
      margin: 0 0.2rem;
      border-radius: var(--radius-pill);
      transition: var(--transition);
    }

    .nav-link:hover {
      color: var(--accent);
      background: var(--accent-soft);
    }

    /*--------------------------------------------------------------
    # HERO ÉPICO
    --------------------------------------------------------------*/
    .hero {
      padding-top: 140px;
      padding-bottom: 60px;
      background: radial-gradient(circle at 80% 50%, rgba(255,59,122,0.02) 0%, transparent 50%);
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 3.8rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }

    .hero p {
      font-size: 1.2rem;
      color: var(--gray-600);
      margin-bottom: 2rem;
    }

    .hero-media-frame {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(15, 23, 42, 0.04);
      padding: 12px;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hero-media-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: var(--radius-lg);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
      pointer-events: none;
    }

    .hero-media-frame img {
      width: auto;
      max-width: 100%;
      height: auto;
      max-height: 100%;
      object-fit: contain;
      border-radius: 16px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--gray-900);
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: var(--radius-pill);
      font-weight: 600;
      font-size: 0.9rem;
    }

    /*--------------------------------------------------------------
    # SERVICIOS Y CARDS COMPACTAS
    --------------------------------------------------------------*/
    .service-item {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 0.8rem 1.2rem;
      background: white;
      border: 1px solid rgba(15,23,42,0.04);
      border-radius: 100px;
      transition: var(--transition);
      box-shadow: var(--shadow-xs);
    }

    .service-item:hover {
      border-color: rgba(255,59,122,0.25);
      background: white;
      box-shadow: var(--shadow-md);
      transform: translateX(5px);
    }

    .service-item .icon-pill-premium {
      width: 48px;
      height: 48px;
      border-radius: 100px;
    }

    .service-item h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.1rem;
    }

    .service-item p {
      color: var(--gray-600);
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    /*--------------------------------------------------------------
    # GALERÍA DE LUJO (CARRUSEL)
    --------------------------------------------------------------*/
    .gal-gallery .carousel {
      max-width: 1000px;
      margin-inline: auto;
      position: relative;
    }

    .gal-frame {
      height: clamp(300px, 55vh, 500px);
      background: #ffffff;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      border: 1px solid rgba(255,255,255,0.4);
      backdrop-filter: blur(2px);
    }

    .gal-img {
      width: auto !important;
      max-width: 100%;
      height: auto !important;
      max-height: 100%;
      object-fit: contain !important;
      object-position: center;
      display: block;
      cursor: zoom-in;
      transition: transform 0.4s ease;
    }

    .gal-img:hover {
      transform: scale(1.02);
    }

    .gal-gallery .carousel-control-prev,
    .gal-gallery .carousel-control-next {
      width: 56px;
      height: 56px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(8px);
      border-radius: 100px;
      margin: 0 20px;
      border: 1px solid rgba(255,255,255,0.3);
    }

    .gal-gallery .carousel-control-prev:hover,
    .gal-gallery .carousel-control-next:hover {
      background: rgba(0,0,0,0.7);
    }

    .gal-gallery .carousel-indicators {
      bottom: -50px;
    }

    .gal-gallery .carousel-indicators button {
      width: 8px;
      height: 8px;
      border-radius: 100px;
      background: var(--gray-400);
      border: none;
      margin: 0 6px;
    }

    .gal-gallery .carousel-indicators button.active {
      background: var(--accent);
      width: 28px;
    }

    /* Lightbox */
    #galLightbox .modal-content {
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(12px);
    }

    #galLightboxImg {
      max-height: 88vh;
      object-fit: contain;
    }

    .gal-lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      border-radius: 100px;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      font-size: 2.8rem;
      line-height: 60px;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gal-lightbox-nav:hover {
      background: rgba(255,255,255,0.22);
    }

    /*--------------------------------------------------------------
    # FORMULARIO Y CONTACTO
    --------------------------------------------------------------*/
    .form-control, .form-select {
      border-radius: 20px;
      padding: 0.9rem 1.2rem;
      border: 1.5px solid rgba(15,23,42,0.06);
      background: white;
      font-size: 1rem;
      transition: var(--transition);
      box-shadow: inset 0 2px 5px rgba(0,0,0,0.01);
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(255,59,122,0.12), inset 0 1px 3px rgba(0,0,0,0.02);
    }

    .form-label {
      font-weight: 700;
      color: var(--gray-800);
      margin-bottom: 0.4rem;
      font-size: 0.9rem;
      letter-spacing: -0.01em;
    }

    /*--------------------------------------------------------------
    # FOOTER DE IMPACTO
    --------------------------------------------------------------*/
    footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.8);
      padding-top: 64px;
      padding-bottom: 32px;
      margin-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.04);
    }

    footer .foot-title {
      color: white;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1.2rem;
    }

    footer a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: var(--transition);
      font-weight: 500;
    }

    footer a:hover {
      color: white;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    /*--------------------------------------------------------------
    # RESPONSIVE FINO
    --------------------------------------------------------------*/
    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(20px);
        border-radius: 28px;
        padding: 1rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(255,255,255,0.5);
        box-shadow: var(--shadow-lg);
      }
      .hero {
        padding-top: 110px;
      }
    }

    @media (max-width: 767.98px) {
      .service-item {
        border-radius: 24px;
      }
      .gal-frame {
        height: clamp(240px, 45vh, 380px);
      }
    }
    .brand-logo-img {
  height: 40px;      /* ajustá tamaño acá */
  width: auto;
  object-fit: contain;
}
.footer-logo-img {
  height: 50px;
  width: auto;
}

  
        /*--------------------------------------------------------------
    # FIX OVERFLOW NAVBAR (MOBILE)
    --------------------------------------------------------------*/
    /* FIX NAVBAR MOBILE (sin scroll horizontal y sin cortar el menú)
   - En mobile el collapse tiene que bajar a una 2da línea (wrap)
   - El brand se achica pero NO recorta el menú
   - El toggler queda siempre visible */
.navbar > .container{
  max-width: 100%;
}

@media (max-width: 991.98px){
  .navbar > .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;            /* clave: permite que el menú baje */
    gap: .5rem;
  }

  .navbar-brand{
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px); /* deja lugar al botón */
    overflow: visible;            /* no cortes texto del brand */
  }

  .navbar-brand > span:last-child{
    white-space: normal;          /* permite 2 líneas si hace falta */
    overflow: visible;
    text-overflow: unset;
    line-height: 1.1;
  }

  .navbar-toggler{
    flex: 0 0 auto;
    margin-left: auto;
    padding: .25rem .5rem;
  }

  /* Asegura que el collapse ocupe todo el ancho debajo */
  .navbar-collapse{
    flex-basis: 100%;
    width: 100%;
  }
}

/* En pantallas MUY angostas, si el brand es largo, que haga wrap en vez de empujar */
@media (max-width: 420px){
  .navbar-brand > span:last-child{ font-size: 1.05rem; }
}


    /*--------------------------------------------------------------
    # FIX OVERFLOW: WhatsApp floating card uses 100vw (causa scroll horizontal en mobile)
    --------------------------------------------------------------*/
    @media (max-width: 575.98px){
      .eec-wa-card{
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        max-width: calc(100% - 24px) !important;
        box-sizing: border-box;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
:root{
    --eec-wa:#25D366;
    --eec-wa-dark:#1fb85a;
    --eec-light-bg:#ffffff;
    --eec-light-bg-soft:#f6f8f7;
    --eec-light-border:#dde4df;
    --eec-dark-text:#1c1f1d;
    --eec-muted-text:#6c756f;
  }

  .eec-fb-float{
    position:fixed; right:18px; bottom:166px;
    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;
  }
  .eec-fb-float:hover{ transform:translateY(-2px) scale(1.04); box-shadow:0 14px 36px rgba(0,0,0,.35); }

  .eec-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, opacity .25s;
  }
  .eec-ig-float:hover{ transform:translateY(-2px) scale(1.04); box-shadow:0 14px 36px rgba(0,0,0,.35); }

  .eec-wa-float{
    position:fixed; right:18px; bottom:18px;
    z-index:9999; font-family:inherit;
  }

  .eec-wa-btn{
    background:var(--eec-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;
  }
  .eec-wa-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 14px 36px rgba(0,0,0,.28);
    filter:brightness(.98);
  }

  /* ===== FIX DEFINITIVO: la tarjeta es FIXED, no depende de contenedores ===== */
  .eec-wa-card{
    position:fixed;
    right:18px;
    bottom:92px; /* arriba del botón */
    width:min(360px, calc(100vw - 24px));
    max-width:calc(100vw - 24px);

    background:var(--eec-light-bg);
    color:var(--eec-dark-text);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 60px rgba(0,0,0,.25);
    border:1px solid var(--eec-light-border);

    transform:translateY(10px);
    opacity:0;
    transition:transform .3s, opacity .3s;
    z-index:10000;
  }
  .eec-wa-card[aria-modal="true"]{
    transform:translateY(0);
    opacity:1;
  }

  .eec-wa-head{
    display:flex; align-items:center; gap:12px;
    padding:14px 16px;
    background:linear-gradient(135deg, #ffffff, rgba(255,59,122,0.08));
    border-bottom:1px solid var(--eec-light-border);
  }
  .eec-wa-avatar{
    width:40px; height:40px; border-radius:12px;
    background:rgba(255,59,122,0.08);
    display:grid; place-items:center;
    border:1px solid rgba(255,59,122,0.18);
    overflow:hidden;
  }
  .eec-wa-title{ font-weight:800; font-size:1.02rem; color:var(--eec-dark-text); }
  .eec-wa-status{
    font-size:.85rem;
    color:var(--eec-muted-text);
    display:flex; align-items:center; gap:6px;
  }
  .eec-wa-status::before{
    content:""; width:8px; height:8px; border-radius:50%;
    background:var(--eec-wa);
  }
  .eec-wa-close{
    margin-left:auto;
    background:transparent;
    color:var(--eec-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;
  }
  .eec-wa-close:hover{ opacity:1; background:rgba(0,0,0,.04); }

  .eec-wa-body{
    padding:12px 14px;
    max-height:40vh;
    overflow:auto;
    background:var(--eec-light-bg-soft);
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .eec-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:eecFadeIn .25s ease;
    font-size:0.9rem;
    word-break:break-word;
  }
  @keyframes eecFadeIn{
    from{opacity:0; transform:translateY(5px)}
    to{opacity:1; transform:none}
  }
  .eec-wa-bot{
    background:#ffffff;
    border:1px solid var(--eec-light-border);
    align-self:flex-start;
    border-bottom-left-radius:4px;
  }
  .eec-wa-user{
    background:var(--eec-wa);
    color:#fff;
    align-self:flex-end;
    border-bottom-right-radius:4px;
  }

  .eec-wa-compose{
    display:grid;
    grid-template-columns:1fr auto;
    gap:8px;
    padding:10px 12px;
    background:#ffffff;
    border-top:1px solid var(--eec-light-border);
  }
  .eec-wa-compose textarea{
    resize:none;
    border-radius:12px;
    padding:10px 12px;
    border:1px solid var(--eec-light-border);
    background:#f9fbfa;
    color:var(--eec-dark-text);
    outline:none;
    min-height:44px;
    font-family:inherit;
    font-size:0.9rem;
    transition:.2s;
  }
  .eec-wa-compose textarea:focus{
    border-color:var(--eec-wa);
    box-shadow:0 0 0 2px rgba(37,211,102,.15);
    background:#ffffff;
  }
  .eec-wa-send{
    background:var(--eec-wa);
    color:#ffffff;
    border:0;
    border-radius:12px;
    padding:0 16px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
  }
  .eec-wa-send:hover{ background:var(--eec-wa-dark); transform:scale(1.04); }

  .eec-wa-body::-webkit-scrollbar{ width:6px; }
  .eec-wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.03); border-radius:3px; }
  .eec-wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:3px; }
  .eec-wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.18); }

  @media (max-width:480px){
    .eec-fb-float{ right:12px; bottom:160px; width:52px; height:52px; }
    .eec-ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
    .eec-wa-float{ right:12px; bottom:12px; }
    .eec-wa-card{
      right:12px;
      bottom:86px;
      width:calc(100vw - 24px);
      max-width:calc(100vw - 24px);
    }
  }

