/* MIXED CSS PACK */
/* Template: marinaramirezterapeuta.com/index.html */
/* Template mtime: 2026-03-16 19:33:27 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== RESET Y VARIABLES PRO ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --accent: #0a2b4a;           /* azul profundo solicitado */
      --accent-soft: #eef3f9;       /* versión muy clara para fondos */
      --accent-light: #d9e3f0;      /* hover sutil */
      --dark: #0a1a2c;
      --text: #1e2e44;
      --muted: #54657e;
      --bg: #ffffff;
      --white: #ffffff;
      --border: rgba(10, 43, 74, 0.08);
      --shadow-sm: 0 12px 32px -8px rgba(10, 43, 74, 0.08);
      --shadow-md: 0 24px 48px -12px rgba(10, 43, 74, 0.18);
      --shadow-lg: 0 40px 64px -16px rgba(10, 43, 74, 0.25);
      --radius-card: 28px;
      --radius-element: 20px;
      --radius-btn: 60px;
      --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.15, 1);
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .container-custom {
      max-width: 1280px;
      padding: 0 32px;
      margin: 0 auto;
      width: 100%;
    }

    @media (max-width: 768px) {
      .container-custom { padding: 0 24px; }
    }

    /* ===== TIPOGRAFÍA PREMIUM ===== */
    .eyebrow {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(10, 43, 74, 0.04);
      padding: 6px 16px;
      border-radius: 40px;
      margin-bottom: 20px;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(10, 43, 74, 0.1);
    }

    .section-title {
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--dark);
      margin-bottom: 24px;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: var(--muted);
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 400;
      line-height: 1.6;
    }

    /* ===== NAVBAR DE LUJO ===== */
    .navbar-premium {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(10, 43, 74, 0.08);
      padding: 16px 0;
      transition: var(--transition);
    }

    .navbar-premium .nav-link {
      color: var(--text);
      font-weight: 600;
      font-size: 0.98rem;
      padding: 10px 18px !important;
      border-radius: 40px;
      transition: var(--transition);
      position: relative;
    }

    .navbar-premium .nav-link:hover {
      color: var(--accent);
      background: rgba(10, 43, 74, 0.03);
    }

    .navbar-premium .nav-link.active {
      color: var(--accent);
      background: rgba(10, 43, 74, 0.06);
      font-weight: 700;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      text-decoration: none;
    }

    .navbar-premium .container-custom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .navbar-premium .navbar-collapse {
      flex-basis: 100%;
    }

    .brand-logo {
      height: 44px;
      width: auto;
      border-radius: 12px;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .brand-title {
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--dark);
    }

    .brand-subtitle {
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.02em;
    }

    /* ===== HERO NEXT LEVEL ===== */
    .hero-section {
      padding: 180px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: radial-gradient(ellipse at 70% 30%, rgba(10, 43, 74, 0.03) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-card {
      background: var(--white);
      border-radius: var(--radius-card);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-md);
      padding: 48px;
      backdrop-filter: blur(10px);
      transition: var(--transition);
    }

    .hero-title {
      font-size: clamp(2.6rem, 5.5vw, 4.5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--dark);
      margin-bottom: 24px;
    }

    .hero-text {
      font-size: 1.2rem;
      color: var(--muted);
      max-width: 580px;
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .hero-points-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin: 32px 0 24px;
    }

    .hero-point-item {
      background: rgba(10, 43, 74, 0.02);
      border: 1px solid rgba(10, 43, 74, 0.06);
      border-radius: 60px;
      padding: 12px 20px;
      font-weight: 600;
      color: var(--dark);
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .hero-point-item:hover {
      background: rgba(10, 43, 74, 0.04);
      border-color: rgba(10, 43, 74, 0.15);
      transform: translateY(-2px);
    }

    .btn-accent {
      background: var(--accent);
      color: white;
      border: none;
      border-radius: var(--radius-btn);
      padding: 16px 36px;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.01em;
      box-shadow: 0 18px 32px -10px rgba(10, 43, 74, 0.3);
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-accent:hover {
      background: #0c3560;
      transform: translateY(-3px);
      box-shadow: 0 24px 40px -8px rgba(10, 43, 74, 0.4);
      color: white;
    }

    .btn-outline-premium {
      background: transparent;
      border: 1.5px solid rgba(10, 43, 74, 0.2);
      border-radius: var(--radius-btn);
      padding: 16px 36px;
      font-weight: 700;
      color: var(--dark);
      transition: var(--transition);
    }

    .btn-outline-premium:hover {
      background: rgba(10, 43, 74, 0.02);
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .hero-photo-frame {
      border-radius: 32px;
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(10, 43, 74, 0.1);
      padding: 12px;
    }

    .hero-photo {
      width: 100%;
      max-height: 520px;
      height: auto;
      object-fit: contain;
      object-position: center;
      border-radius: 24px;
      display: block;
      transition: transform 1s ease;
    }

    .hero-photo-frame:hover .hero-photo {
      transform: scale(1.02);
    }

    /* ===== SECCIONES CON ESPACIADO PRO ===== */
    .section {
      padding: 110px 0;
      position: relative;
    }

    .section-light {
      background: #fafcff;
    }

    /* ===== CARDS DE SERVICIOS / POR QUÉ ELEGIRME (PREMIUM) ===== */
    .card-premium {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-card);
      padding: 36px 28px;
      height: 100%;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .card-premium:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(10, 43, 74, 0.15);
    }

    .icon-badge-xl {
      width: 64px;
      height: 64px;
      background: linear-gradient(145deg, var(--accent), #143b60);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      color: white;
      box-shadow: 0 16px 28px -6px rgba(10, 43, 74, 0.3);
    }

    .icon-badge-xl svg {
      width: 32px;
      height: 32px;
      stroke-width: 1.7;
    }

    .card-premium h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .card-premium p {
      color: var(--muted);
      line-height: 1.7;
      font-size: 1rem;
    }

    /* ===== QUIEN SOY (GRID ELEGANTE) ===== */
    .about-grid-custom {
      display: grid;
      grid-template-columns: 1.2fr 0.9fr;
      gap: 28px;
    }

    .about-main-card {
      background: var(--white);
      border-radius: var(--radius-card);
      border: 1px solid var(--border);
      padding: 44px;
      box-shadow: var(--shadow-sm);
    }

    .about-main-card p {
      font-size: 1.1rem;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .about-side-card {
      background: var(--white);
      border-radius: var(--radius-card);
      border: 1px solid var(--border);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      height: 100%;
    }

    .pill-about {
      background: rgba(10, 43, 74, 0.02);
      border-left: 4px solid var(--accent);
      border-radius: 20px;
      padding: 24px;
      margin-bottom: 20px;
      transition: var(--transition);
    }

    .pill-about:hover {
      background: rgba(10, 43, 74, 0.03);
      transform: translateX(4px);
    }

    .pill-about strong {
      color: var(--dark);
      font-size: 1.1rem;
      display: block;
      margin-bottom: 8px;
    }

    /* ===== CONTACTO (TARJETAS DE LUJO) ===== */
    .contact-card-premium {
      background: var(--white);
      border-radius: var(--radius-card);
      border: 1px solid var(--border);
      padding: 44px 36px;
      height: 100%;
      box-shadow: var(--shadow-sm);
    }

    .contact-item-premium {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      border-radius: 24px;
      background: rgba(10, 43, 74, 0.02);
      border: 1px solid rgba(10, 43, 74, 0.06);
      margin-bottom: 16px;
      transition: var(--transition);
    }

    .contact-item-premium:hover {
      background: rgba(10, 43, 74, 0.04);
      border-color: rgba(10, 43, 74, 0.15);
    }

    .contact-icon-small {
      width: 48px;
      height: 48px;
      background: var(--accent);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      flex-shrink: 0;
    }

    .contact-icon-small svg {
      width: 24px;
      height: 24px;
    }

    .form-control-premium {
      border: 1.5px solid rgba(10, 43, 74, 0.1);
      border-radius: 18px;
      padding: 16px 20px;
      font-size: 1rem;
      transition: var(--transition);
      background: white;
    }

    .form-control-premium:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(10, 43, 74, 0.1);
      outline: none;
    }

    textarea.form-control-premium {
      min-height: 140px;
    }

    /* ===== FOOTER PROFESIONAL ===== */
    .footer-premium {
      background: var(--accent);
      color: white;
      padding: 60px 0 24px;
      border-radius: 40px 40px 0 0;
      margin-top: 40px;
    }

    .footer-premium a {
      color: rgba(255, 255, 255, 0.85);
      transition: var(--transition);
      text-decoration: none;
      font-weight: 500;
    }

    .footer-premium a:hover {
      color: white;
      opacity: 1;
      padding-left: 4px;
    }

    .footer-title {
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
      color: white;
    }

    .footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 14px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 48px;
      padding-top: 24px;
      font-size: 0.95rem;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* ===== RESPONSIVE PERFECTO ===== */
    @media (max-width: 992px) {
      .about-grid-custom { grid-template-columns: 1fr; }
      .hero-card { padding: 32px; }

      .navbar-premium .navbar-collapse {
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        border-radius: 28px;
        padding: 16px;
        margin-top: 16px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
      }

      .navbar-premium .navbar-collapse:not(.show) {
        display: none !important;
      }

      .navbar-premium .navbar-collapse.show {
        display: block !important;
      }

      .navbar-premium .navbar-nav {
        align-items: stretch !important;
        width: 100%;
      }

      .navbar-premium .nav-link {
        display: block;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .container-custom { padding: 0 18px; }
      .section { padding: 80px 0; }
      .hero-section { padding: 136px 0 56px; }
      .hero-card { padding: 22px; border-radius: 22px; }
      .hero-photo-frame { padding: 10px; border-radius: 24px; }
      .hero-photo { border-radius: 18px; }
      .hero-points-grid { grid-template-columns: 1fr; }
      .btn-accent, .btn-outline-premium { width: 100%; justify-content: center; }
      .navbar-premium .container-custom {
        row-gap: 10px;
      }
      .navbar-brand {
        max-width: calc(100% - 64px);
        gap: 10px;
        flex: 1 1 auto;
      }
      .navbar-toggler {
        align-self: center;
      }
      .brand-logo {
        height: 38px;
      }
      .brand-title {
        font-size: 0.95rem;
      }
      .brand-subtitle {
        font-size: 0.62rem;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
      }

      .hero-text,
      .section-subtitle {
        font-size: 1rem;
      }
    }

    /* microinteracciones extra */
    .hover-lift {
      transition: var(--transition);
    }
    .hover-lift:hover {
      transform: translateY(-4px);
    }

    /* la galería original se mantiene intacta (solo copiamos los estilos que ya funcionaban) */
    /* ===== SECCIÓN GALERÍA (INTACTA, SOLO AJUSTES MÍNIMOS DE ESPACIO) ===== */
    .gal-gallery .carousel{max-width:980px;margin-inline:auto;position:relative}
    .gal-frame{
      height: clamp(260px, 50vh, 500px);
      background:#fff;border-radius:20px;overflow:hidden;
      box-shadow:0 16px 36px rgba(0,0,0,.12);
      display:flex;align-items:center;justify-content:center;padding:10px
    }
    .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
    }
    .gal-gallery .carousel-control-prev,
    .gal-gallery .carousel-control-next{
      z-index:20;width:52px;height:52px;top:50%;transform:translateY(-50%);
      opacity:1;background:rgba(36,27,46,.72);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.5rem;height:2.5rem;background-size:58% 58%}
    .gal-gallery .carousel-indicators{z-index:10;bottom:-52px}
    .gal-gallery .carousel-indicators button{
      width:10px;height:10px;border-radius:50%;
      background:rgba(36,27,46,.4);border:none
    }
    .gal-gallery .carousel-indicators button.active{background:var(--accent)}
    .gal-gallery{padding-bottom:60px}
    #galLightbox .modal-content{background:#000;border:none}
    #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:46px;height:46px;border-radius:999px;
      background:rgba(255,255,255,.18);color:#fff;font-size:30px;line-height:46px;text-align:center;z-index:5;cursor:pointer
    }
    .gal-lightbox-nav:hover{background:rgba(255,255,255,.28)}
    .gal-lightbox-nav.gal-prev{left:12px}
    .gal-lightbox-nav.gal-next{right:12px}
    /* fin sección galería intacta */

    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      position: relative;
    }

    img, svg, iframe, video {
      max-width: 100%;
    }

    .navbar-brand,
    .brand-text,
    .brand-title,
    .brand-subtitle,
    .nav-link,
    .hero-title,
    .hero-text,
    .section-title,
    .section-subtitle,
    .hero-point-item,
    .card-premium h3,
    .card-premium p,
    .pill-about,
    .contact-item-premium,
    .footer-list a {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .navbar-toggler {
      padding: 8px;
      border-radius: 14px;
      margin-left: auto;
      flex: 0 0 auto;
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1031;
    }

    .navbar-toggler-icon {
      width: 1.5rem;
      height: 1.5rem;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10,43,74,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      background-size: 100% 100%;
    }

/* ===== INLINE <style> BLOCK #2 ===== */
:root{
    --wa:#25D366;
    --wa-dark:#1fb85a;
    --wa-darker:#189a4a;
    --light-bg:#ffffff;
    --light-bg-soft:#f6f8f7;
    --light-border:#dde4df;
    --dark-text:#1c1f1d;
    --muted-text:#6c756f;
  }

  .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;
  }
  .fb-float:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 14px 36px rgba(0,0,0,.35);
  }

  .ig-float{
    position:fixed; right:18px; bottom: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;
  }
  .ig-float:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 14px 36px rgba(0,0,0,.35);
  }

  .wa-float{
    position:fixed; right:18px; bottom:18px;
    z-index:9999; font-family:inherit;
  }

  .wa-btn{
    background:var(--wa);
    color:#fff;
    border:0;
    width:60px; height:60px; border-radius:50%;
    display:grid; place-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.22);
    cursor:pointer; transition:transform .3s, box-shadow .3s, filter .3s;
    position:relative; overflow:hidden;
    z-index:9999;
  }
  .wa-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 14px 36px rgba(0,0,0,.28);
    filter:brightness(.98);
  }

  .wa-card{
    position:absolute; right:0; bottom:74px;
    width:min(360px,92vw);
    background:var(--light-bg);
    color:var(--dark-text);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 60px rgba(0,0,0,.25);
    border:1px solid var(--light-border);
    transform:translateY(10px);
    opacity:0;
    transition:transform .3s, opacity .3s;
    z-index:10000;
  }
  .wa-card[aria-modal="true"]{
    transform:translateY(0);
    opacity:1;
  }

  .wa-head{
    display:flex; align-items:center; gap:12px;
    padding:14px 16px;
    background:linear-gradient(135deg, #ffffff, #ecf6f0);
    border-bottom:1px solid var(--light-border);
  }
  .wa-avatar{
    width:40px; height:40px; border-radius:10px;
    background:#e9f7ef;
    display:grid; place-items:center;
    border:1px solid #cfeeda;
    overflow:hidden;
  }
  .wa-title{
    font-weight:800;
    font-size:1.02rem;
    color:var(--dark-text);
  }
  .wa-status{
    font-size:.85rem;
    color:var(--muted-text);
    display:flex; align-items:center; gap:6px;
  }
  .wa-status::before{
    content:""; width:8px; height:8px; border-radius:50%;
    background:var(--wa);
  }
  .wa-close{
    margin-left:auto;
    background:transparent;
    color:var(--muted-text);
    border:0;
    font-size:24px;
    cursor:pointer;
    opacity:.75;
    width:32px; height:32px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    transition:.2s;
  }
  .wa-close:hover{
    opacity:1;
    background:rgba(0,0,0,.04);
  }

  .wa-body{
    padding:12px 14px;
    max-height:40vh;
    overflow:auto;
    background:var(--light-bg-soft);
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .wa-bubble{
    max-width:88%;
    padding:9px 11px;
    border-radius:14px;
    line-height:1.35;
    box-shadow:0 3px 10px rgba(0,0,0,.06);
    animation:fadeIn .25s ease;
    font-size:0.9rem;
  }
  @keyframes fadeIn{
    from{opacity:0; transform:translateY(5px)}
    to{opacity:1; transform:none}
  }
  .wa-bot{
    background:#ffffff;
    border:1px solid var(--light-border);
    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:#ffffff;
    border-top:1px solid var(--light-border);
  }
  .wa-compose textarea{
    resize:none;
    border-radius:12px;
    padding:10px 12px;
    border:1px solid var(--light-border);
    background:#f9fbfa;
    color:var(--dark-text);
    outline:none;
    min-height:44px;
    font-family:inherit;
    font-size:0.9rem;
    transition:.2s;
  }
  .wa-compose textarea:focus{
    border-color:var(--wa);
    box-shadow:0 0 0 2px rgba(37,211,102,.15);
    background:#ffffff;
  }
  .wa-send{
    background:var(--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;
  }
  .wa-send:hover{
    background:var(--wa-dark);
    transform:scale(1.04);
  }

  .wa-body::-webkit-scrollbar{ width:6px; }
  .wa-body::-webkit-scrollbar-track{ background:rgba(0,0,0,.03); border-radius:3px; }
  .wa-body::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:3px; }
  .wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(0,0,0,.18); }

  @media (max-width:480px){
    .fb-float{ right:12px; bottom:160px; width:52px; height:52px; }
    .ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
    .wa-float{ right:12px; bottom:12px; }
    .wa-card{ width:calc(100vw - 24px); right:0; }
  }

