/* MIXED CSS PACK */
/* Template: eseizasportbendix.com.ar/index.html */
/* Template mtime: 2026-03-02 15:20:17 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* 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;14..32,900&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== VARIABLES PROFESIONALES ===== */
    :root {
      --accent: #f11308;
      --accent-dark: #c00f06;
      --accent-soft: rgba(241, 19, 8, 0.08);
      --accent-light: rgba(241, 19, 8, 0.04);
      --text-primary: #1a1a1a;
      --text-secondary: #4a4a4a;
      --text-tertiary: #6f6f6f;
      --border-light: rgba(0, 0, 0, 0.08);
      --border-medium: rgba(0, 0, 0, 0.12);
      --bg-soft: #fafafa;
      --white: #ffffff;
      --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 12px 24px -8px rgba(0, 0, 0, 0.08), 0 4px 12px -4px rgba(0, 0, 0, 0.02);
      --shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.12), 0 8px 24px -8px rgba(0, 0, 0, 0.04);
      --radius-xs: 8px;
      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --radius-full: 9999px;
      --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ===== RESET PROFESIONAL ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--white);
      color: var(--text-primary);
      line-height: 1.5;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    /* ===== UTILIDADES PROFESIONALES ===== */
    .container {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      max-width: 1280px;
      padding: 0 2rem;
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 1.5rem;
      }
    }

    .anchor-offset {
      scroll-margin-top: 88px;
    }

    /* ===== NAVBAR ELEVADA ===== */
    /* ===== NAVBAR (FIX MOBILE TOGGLER + OVERFLOW) ===== */
    .navbar-toggler{
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: .45rem .6rem;
    }
    .navbar-toggler:focus{
      box-shadow: 0 0 0 4px rgba(241, 19, 8, 0.12);
    }
    /* Asegura que el icono del hamburguesa se vea aunque cambien variables */
    .navbar-toggler-icon{
      background-image: var(--bs-navbar-toggler-icon-bg);
    }

    .navbar {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border-light);
      padding: 1rem 0;
      transition: var(--transition);
    }

    .navbar.sticky-top {
      box-shadow: var(--shadow-sm);
    }

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-wrap img {
      height: 44px;
      width: auto;
      object-fit: contain;
      transition: var(--transition);
    }

    .brand-wrap .brand-text {
      font-weight: 700;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      color: var(--text-secondary);
      padding: 0.5rem 1rem !important;
      margin: 0 0.25rem;
      border-radius: var(--radius-full);
      transition: var(--transition);
      font-size: 0.95rem;
    }

    .navbar-nav .nav-link:hover {
      color: var(--accent);
      background: var(--accent-soft);
    }

    .btn-accent {
      background: var(--accent);
      border: none;
      color: white;
      font-weight: 600;
      padding: 0.6rem 1.25rem;
      border-radius: var(--radius-full);
      transition: var(--transition);
      box-shadow: 0 8px 16px -4px rgba(241, 19, 8, 0.2);
      letter-spacing: -0.01em;
      font-size: 0.95rem;
    }

    .btn-accent:hover {
      background: var(--accent-dark);
      color: white;
      transform: translateY(-1px);
      box-shadow: 0 12px 20px -8px rgba(241, 19, 8, 0.3);
    }

    .btn-accent:active {
      transform: translateY(0);
      box-shadow: 0 4px 12px -4px rgba(241, 19, 8, 0.25);
    }

    .btn-outline-dark {
      border: 1.5px solid var(--border-medium);
      color: var(--text-primary);
      font-weight: 600;
      padding: 0.6rem 1.5rem;
      border-radius: var(--radius-full);
      transition: var(--transition);
      background: transparent;
      font-size: 0.95rem;
    }

    .btn-outline-dark:hover {
      border-color: var(--accent);
      background: var(--accent-soft);
      color: var(--accent);
      transform: translateY(-1px);
    }

    /* ===== HERO SECTION PROFESIONAL ===== */
    .hero {
      padding: 4rem 0 3rem;
      background: 
        radial-gradient(800px at 10% 30%, rgba(241, 19, 8, 0.03) 0%, transparent 70%),
        radial-gradient(600px at 90% 70%, rgba(241, 19, 8, 0.02) 0%, transparent 70%),
        linear-gradient(180deg, rgba(241, 19, 8, 0.02) 0%, transparent 100%);
      position: relative;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--text-tertiary);
      margin-bottom: 1.5rem;
    }

    .eyebrow::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--accent);
      border-radius: var(--radius-full);
    }

    .hero h1 {
      font-weight: 800;
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--text-primary);
      margin-bottom: 1.5rem;
    }

    .hero .lead {
      font-size: 1.125rem;
      color: var(--text-secondary);
      max-width: 90%;
      margin-bottom: 2rem;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.5rem 1.25rem;
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-full);
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--text-secondary);
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .pill:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .pill svg {
      width: 18px;
      height: 18px;
      fill: var(--accent);
    }

    .hero-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
    }

    .hero-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.16);
    }

    .hero-media {
      aspect-ratio: 1/1;
      background: linear-gradient(135deg, var(--accent-light) 0%, transparent 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    .hero-media img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
    }

    /* ===== SECTION TITLES ===== */
    .section {
      padding: 5rem 0;
      position: relative;
    }

    .section:nth-child(even) {
      background: var(--bg-soft);
    }

    .section-title {
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 2.75rem);
      letter-spacing: -0.02em;
      color: var(--text-primary);
      margin: 1rem 0 1rem;
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: var(--text-tertiary);
      max-width: 720px;
      margin: 0 auto;
    }

    /* ===== CARDS PROFESIONALES ===== */
    .soft-card {
      background: var(--white);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 2rem;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      height: 100%;
    }

    .soft-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-medium);
      box-shadow: var(--shadow-lg);
    }

    .ic {
      width: 56px;
      height: 56px;
      background: var(--accent-light);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .soft-card:hover .ic {
      background: var(--accent);
    }

    .soft-card:hover .ic svg {
      fill: white;
    }

    .ic svg {
      width: 28px;
      height: 28px;
      fill: var(--accent);
      transition: var(--transition);
    }

    .fw-bold {
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }

    .small-muted {
      font-size: 0.95rem;
      color: var(--text-tertiary);
      line-height: 1.6;
    }

    .kpi {
      background: var(--accent-light);
      border: 1px solid rgba(241, 19, 8, 0.15);
      border-radius: var(--radius-md);
      padding: 1.25rem;
      margin-top: 1.5rem;
    }

    .kpi b {
      font-size: 1rem;
      color: var(--accent);
      margin-bottom: 0.5rem;
      display: block;
    }

    /* ===== GALERÍA PROFESIONAL ===== */
    .gal-gallery {
      padding-bottom: 6rem;
    }

    .gal-gallery .carousel {
      max-width: 1000px;
      margin: 0 auto;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .gal-frame {
      height: clamp(300px, 55vh, 500px);
      background: linear-gradient(135deg, var(--bg-soft) 0%, var(--white) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .gal-img {
      max-width: 100%;
      max-height: 100%;
      width: auto !important;
      height: auto !important;
      object-fit: contain !important;
      cursor: zoom-in;
      transition: var(--transition);
      border-radius: var(--radius-sm);
    }

    .gal-img:hover {
      transform: scale(1.02);
    }

    .gal-gallery .carousel-control-prev,
    .gal-gallery .carousel-control-next {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(4px);
      border-radius: var(--radius-full);
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      margin: 0 1rem;
    }

    .gal-gallery:hover .carousel-control-prev,
    .gal-gallery:hover .carousel-control-next {
      opacity: 1;
    }

    .gal-gallery .carousel-control-prev-icon,
    .gal-gallery .carousel-control-next-icon {
      filter: invert(1) brightness(0.2);
    }

    .gal-gallery .carousel-indicators {
      bottom: -3rem;
    }

    .gal-gallery .carousel-indicators button {
      width: 8px;
      height: 8px;
      border-radius: var(--radius-full);
      background: var(--border-medium);
      border: none;
      margin: 0 6px;
      transition: var(--transition);
    }

    .gal-gallery .carousel-indicators button.active {
      background: var(--accent);
      width: 24px;
    }

    /* ===== ACCORDION PROFESIONAL ===== */
    .accordion {
      --bs-accordion-border-color: var(--border-light);
      --bs-accordion-border-radius: var(--radius-md);
      --bs-accordion-inner-border-radius: var(--radius-md);
      --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(241, 19, 8, 0.1);
    }

    .accordion-item {
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md) !important;
      overflow: hidden;
      margin-bottom: 1rem;
      background: var(--white);
    }

    .accordion-button {
      font-weight: 600;
      color: var(--text-primary);
      background: var(--white);
      padding: 1.25rem 1.5rem;
    }

    .accordion-button:not(.collapsed) {
      background: var(--accent-light);
      color: var(--accent);
    }

    .accordion-button:focus {
      border-color: transparent;
      box-shadow: none;
    }

    .accordion-body {
      padding: 1.5rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ===== FORMULARIOS PROFESIONALES ===== */
    .form-control, .form-select {
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 0.875rem 1.25rem;
      font-size: 1rem;
      transition: var(--transition);
      background: var(--white);
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(241, 19, 8, 0.1);
      outline: none;
    }

    .form-label {
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

    /* ===== FOOTER PROFESIONAL ===== */
    footer{
      background: var(--accent);
      color: #fff;
      padding: 4.25rem 0 2.25rem;
      position: relative;
      overflow: hidden;
    }

    /* sutil textura para profundidad (sin perder solidez) */
    footer::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(700px 360px at 10% 10%, rgba(255,255,255,.14), transparent 60%),
        radial-gradient(900px 420px at 90% 80%, rgba(0,0,0,.12), transparent 60%);
      pointer-events:none;
    }

    footer .container{ position: relative; z-index: 1; }

    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:1.25rem;
    }

    .footer-brand img{
      height:48px;
      width:auto;
      border-radius: 12px;
      box-shadow: 0 10px 24px -14px rgba(0,0,0,.45);
      background: rgba(255,255,255,.08);
      padding: 6px;
    }

    .footer-brand span{
      font-weight:800;
      font-size:1.25rem;
      letter-spacing:-0.02em;
      color:#fff;
    }

    .footer-links{
      display:flex;
      flex-direction:column;
      gap:0.65rem;
    }

    .footer-links a{
      color: rgba(255,255,255,.9);
      font-weight:600;
      transition: var(--transition);
      display:inline-flex;
      align-items:center;
      gap:10px;
    }

    .footer-links a::before{
      content:"";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.35);
      transition: var(--transition);
    }

    .footer-links a:hover{
      color:#fff;
      transform: translateX(4px);
    }

    .footer-links a:hover::before{
      background:#fff;
      transform: scale(1.15);
    }

    /* Tipografías dentro del footer */
    footer .fw-bold{
      color:#fff;
      font-weight:800 !important;
    }

    footer .fine{
      font-size: 0.95rem;
      color: rgba(255,255,255,.86);
      line-height: 1.7;
    }

    footer .fine a{
      color: rgba(255,255,255,.92);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,.22);
      padding-bottom: 1px;
      transition: var(--transition);
    }

    footer .fine a:hover{
      color:#fff;
      border-bottom-color: rgba(255,255,255,.55);
    }

    /* CTA dentro del footer: alto contraste */
    .footer-cta{
      background:#fff !important;
      color: var(--accent) !important;
      font-weight:800 !important;
      border-radius: var(--radius-full) !important;
      border: 1px solid rgba(255,255,255,.65) !important;
      box-shadow: 0 14px 28px -18px rgba(0,0,0,.45);
    }

    .footer-cta:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 36px -22px rgba(0,0,0,.55);
      color: var(--accent-dark) !important;
    }

    .footer-sep{
      border-top: 1px solid rgba(255,255,255,.22) !important;
    }


    /* ===== LIGHTBOX PROFESIONAL ===== */
    #galLightbox .modal-content {
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(8px);
    }

    #galLightboxImg {
      max-height: 90vh;
      width: 100%;
      object-fit: contain;
    }

    .gal-lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-size: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      z-index: 10;
    }

    .gal-lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-50%) scale(1.1);
    }

    .gal-prev { left: 2rem; }
    .gal-next { right: 2rem; }

    .btn-close-white {
      filter: brightness(0) invert(1);
      opacity: 0.8;
      transition: var(--transition);
    }

    .btn-close-white:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    /* ===== RESPONSIVE PERFECTO ===== */
    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
        border: 1px solid var(--border-light);
      }
      
      .hero h1 {
        font-size: 2.25rem;
      }
      
      .hero .lead {
        max-width: 100%;
      }
      
      .section {
        padding: 3rem 0;
      }
    }

    @media (max-width: 767.98px) {
      .container {
        padding: 0 1rem;
      }
      
      .hero {
        padding: 2rem 0;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .brand-wrap .brand-text {
        font-size: 1rem;
      }
      
      .gal-frame {
        height: 250px;
      }
      
      .gal-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
      }
      
      .gal-prev { left: 0.5rem; }
      .gal-next { right: 0.5rem; }
    }

    /* ===== MICROINTERACCIONES SUTILES ===== */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero, .section {
      animation: fadeIn 0.6s ease-out;
    }

    ::selection {
      background: var(--accent);
      color: white;
    }

    /* Scrollbar personalizada (sutil) */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg-soft);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--border-medium);
      border-radius: var(--radius-full);
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--text-tertiary);
    }
    .welcome-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 4px;
}

/* ===== INLINE <style> BLOCK #2 ===== */
/* ===== Brand Ticker (standalone / no dependencias) ===== */
      .bt-section{ padding: 84px 0; background: transparent; }
      .bt-container{ max-width: 1140px; margin: 0 auto; padding: 0 16px; }
      .bt-head{ text-align:center; margin-bottom: 18px; }
      .bt-eyebrow{
        display:inline-block; font-weight:700; font-size: 12px; letter-spacing:.12em;
        text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
        background: rgba(11,58,114,.08); color: rgba(11,58,114,.95);
        margin-bottom: 10px;
      }
      .bt-title{ margin: 6px 0 8px; font-size: clamp(22px, 3vw, 34px); line-height: 1.15; }
      .bt-subtitle{ margin: 0 auto; max-width: 720px; opacity: .75; }

      .bt-wrap{
        border-radius: 18px;
        border: 1px solid rgba(11,58,114,.12);
        background: rgba(255,255,255,.92);
        box-shadow: 0 14px 34px rgba(0,0,0,.06);
        padding: 14px;
        overflow: hidden;
      }

      .bt-ticker{
        overflow:hidden; width:100%;
        mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
      }

      .bt-track{
        display:flex;
        align-items:center;
        gap: 18px;
        width: max-content;
        will-change: transform;
        animation-name: bt-scroll;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-duration: 30s; /* JS lo ajusta automáticamente */
      }

      .bt-item{
        flex: 0 0 auto;
        width: 160px;
        height: 86px;
        border-radius: 14px;
        border: 1px solid rgba(11,58,114,.10);
        background:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        padding: 10px;
      }
      .bt-item img{
        max-width:100%;
        max-height:100%;
        width:auto;
        height:auto;
        object-fit:contain;
        display:block;
        opacity:.95;
      }

      @keyframes bt-scroll{
        from{ transform: translateX(0); }
        to{ transform: translateX(-50%); } /* exacto porque duplicamos el contenido */
      }

      @media (max-width: 991.98px){
        .bt-item{ width: 140px; height: 80px; }
      }
      @media (max-width: 575.98px){
        .bt-section{ padding: 64px 0; }
        .bt-wrap{ padding: 12px; }
        .bt-item{ width: 120px; height: 72px; }
      }

      /* Accesibilidad: reduce motion */
      @media (prefers-reduced-motion: reduce){
        .bt-track{ animation: none !important; transform: translateX(0) !important; }
      }

/* ===== INLINE <style> BLOCK #3 ===== */
/* ===== Brand Ticker (standalone / no dependencias) ===== */
      .bt-section{ padding: 84px 0; background: transparent; }
      .bt-container{ max-width: 1140px; margin: 0 auto; padding: 0 16px; }
      .bt-head{ text-align:center; margin-bottom: 18px; }
      .bt-eyebrow{
        display:inline-block; font-weight:700; font-size: 12px; letter-spacing:.12em;
        text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
        background: rgba(11,58,114,.08); color: rgba(11,58,114,.95);
        margin-bottom: 10px;
      }
      .bt-title{ margin: 6px 0 8px; font-size: clamp(22px, 3vw, 34px); line-height: 1.15; }
      .bt-subtitle{ margin: 0 auto; max-width: 720px; opacity: .75; }

      .bt-wrap{
        border-radius: 18px;
        border: 1px solid rgba(11,58,114,.12);
        background: rgba(255,255,255,.92);
        box-shadow: 0 14px 34px rgba(0,0,0,.06);
        padding: 14px;
        overflow: hidden;
      }

      .bt-ticker{
        overflow:hidden; width:100%;
        mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
      }

      .bt-track{
        display:flex;
        align-items:center;
        gap: 18px;
        width: max-content;
        will-change: transform;
        animation-name: bt-scroll;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-duration: 30s; /* JS lo ajusta automáticamente */
      }

      .bt-item{
        flex: 0 0 auto;
        width: 160px;
        height: 86px;
        border-radius: 14px;
        border: 1px solid rgba(11,58,114,.10);
        background:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        padding: 10px;
      }
      .bt-item img{
        max-width:100%;
        max-height:100%;
        width:auto;
        height:auto;
        object-fit:contain;
        display:block;
        opacity:.95;
      }

      @keyframes bt-scroll{
        from{ transform: translateX(0); }
        to{ transform: translateX(-50%); } /* exacto porque duplicamos el contenido */
      }

      @media (max-width: 991.98px){
        .bt-item{ width: 140px; height: 80px; }
      }
      @media (max-width: 575.98px){
        .bt-section{ padding: 64px 0; }
        .bt-wrap{ padding: 12px; }
        .bt-item{ width: 120px; height: 72px; }
      }

      /* Accesibilidad: reduce motion */
      @media (prefers-reduced-motion: reduce){
        .bt-track{ animation: none !important; transform: translateX(0) !important; }
      }

/* ===== INLINE <style> BLOCK #4 ===== */
/* ===== Contenedor fijo (solo WA) ===== */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:2147483647; /* para que no lo tape nada */
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  font-family:inherit;
}

/* ===== Botón flotante ===== */
.wa-btn{
  width:60px;
  height:60px;
  border-radius:50%;
  border:none;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(37,211,102,.45);
  transition:transform .25s, box-shadow .25s;
}
.wa-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 14px 36px rgba(37,211,102,.55);
}

/* ===== Card ===== */
.wa-card{
  position:absolute;
  right:0;
  bottom:74px;
  width:min(360px,92vw);
  background:#fff;
  border-radius:18px;
  border:1px solid #e3e6ea;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
  overflow:hidden;
  transform:translateY(10px);
  opacity:0;
  transition:.25s ease;
}
.wa-card[aria-modal="true"]{ transform:none; opacity:1; }

/* ===== Head ===== */
.wa-head{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
}
.wa-avatar{
  width:40px;
  height:40px;
  background:#fff;
  border-radius:10px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.wa-avatar img{
  width:26px;
  height:26px;
  object-fit:contain;
}
.wa-title{ font-weight:800; }
.wa-status{ font-size:.85rem; opacity:.9; }

.wa-close{
  margin-left:auto;
  border:none;
  background:transparent;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  width:32px;
  height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.9;
}
.wa-close:hover{ opacity:1; background:rgba(255,255,255,.14); }

/* ===== Body ===== */
.wa-body{
  padding:14px;
  max-height:40vh;
  overflow:auto;
  background:#f8f9fa;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.wa-bubble{
  max-width:88%;
  padding:10px 12px;
  border-radius:14px;
  font-size:.95rem;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.wa-bot{
  background:#fff;
  border:1px solid #e3e6ea;
  align-self:flex-start;
}
.wa-user{
  background:#eaf7f0;
  border:1px solid #cfeedd;
  align-self:flex-end;
}

/* ===== Compose ===== */
.wa-compose{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  padding:10px;
  border-top:1px solid #e3e6ea;
  background:#fff;
}
.wa-compose textarea{
  resize:none;
  border-radius:12px;
  padding:10px;
  border:1px solid #e3e6ea;
  font-family:inherit;
  outline:none;
}
.wa-send{
  background:#25D366;
  color:#fff;
  border:none;
  border-radius:12px;
  padding:0 16px;
  cursor:pointer;
}
.wa-send:hover{ background:#1fb85a; }

@media(max-width:480px){
  .wa-float{ right:12px; bottom:12px; }
  .wa-card{ width:calc(100vw - 24px); }
}

