/* MIXED CSS PACK */
/* Template: tingladosjgs.com.ar/index.html */
/* Template mtime: 2026-03-20 19:41:34 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700&display=swap */
/* 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://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #0052FF;
      --primary-dark: #0039B8;
      --primary-light: #E6F0FF;
      --secondary: #10B981;
      --accent: #F59E0B;
      --dark: #0F172A;
      --dark-light: #1E293B;
      --gray: #64748B;
      --gray-light: #F1F5F9;
      --white: #FFFFFF;
      --shadow: 0 20px 60px rgba(0, 82, 255, 0.08);
      --shadow-lg: 0 32px 64px rgba(0, 0, 0, 0.08);
      --radius: 24px;
      --radius-sm: 12px;
      --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      line-height: 1.2;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    .container-custom {
      max-width: 1280px;
      padding: 0 24px;
      margin: 0 auto;
    }

    /* === NAVBAR PREMIUM === */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 82, 255, 0.08);
      padding: 16px 0;
      z-index: 1000;
      transition: var(--transition);
    }

    .navbar.scrolled {
      padding: 12px 0;
      box-shadow: 0 8px 32px rgba(0, 82, 255, 0.08);
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-icon {
      width: 48px;
      height: 48px;
      background: var(--gradient);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 900;
      font-size: 1.5rem;
      box-shadow: 0 8px 24px rgba(0, 82, 255, 0.3);
      transition: var(--transition);
    }

    .brand-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
      background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* --- Navbar layout fix (mobile + desktop) --- */
    .navbar .container-custom{
      display:flex;
      align-items:center;
      width:100%;
      gap:16px;
    }
    /* fuerza logo a la izquierda y hamburguesa al extremo derecho */
    .navbar-brand{ flex:0 0 auto; margin-right:auto; }
    .navbar-toggler{
      margin-left:auto;
      border:0;
      padding:10px 12px;
      border-radius:14px;
      background: rgba(0, 82, 255, 0.10);
    }
    .navbar-toggler:focus{ box-shadow:0 0 0 4px rgba(0, 82, 255, 0.15); }

    @media (max-width: 991.98px){
      .navbar .container-custom{ flex-wrap:wrap; }
      .navbar-collapse{ width:100%; padding-top:12px; }
      .navbar-nav{ padding:8px 0; }
      .navbar .d-flex.ms-lg-4{ width:100%; margin-top:12px; }
      .navbar .btn-cta{ width:100%; justify-content:center; }
    }
    @media (max-width: 575.98px){
      /* menos padding para que se vea bien "al borde" */
      .navbar .container-custom{ padding-left:16px; padding-right:16px; }
      .brand-name{ font-size:1.55rem; }
      .brand-icon{ width:44px; height:44px; border-radius:14px; font-size:1.35rem; }
    }

    .nav-item {
      margin: 0 4px;
    }

    .nav-link {
      position: relative;
      font-weight: 600;
      color: var(--dark);
      padding: 8px 16px !important;
      border-radius: 12px;
      transition: var(--transition);
    }

    .nav-link:hover {
      background: var(--primary-light);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: var(--gradient);
      border-radius: 2px;
      transition: var(--transition);
    }

    .nav-link:hover::after {
      width: 20px;
    }

    .btn-cta {
      background: var(--gradient);
      color: white;
      padding: 12px 28px;
      border-radius: 16px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      box-shadow: 0 12px 32px rgba(0, 82, 255, 0.3);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .btn-cta:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 82, 255, 0.4);
      color: white;
    }

    .btn-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.6s;
    }

    .btn-cta:hover::before {
      left: 100%;
    }

    /* === HERO SECTION === */
    .hero {
      padding: 160px 0 100px;
      background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><defs><linearGradient id="a" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="%230052FF" stop-opacity="0.05"/><stop offset="100%" stop-color="%230052FF" stop-opacity="0"/></linearGradient></defs><rect width="800" height="800" fill="url(%23a)" opacity="0.5"/></svg>');
      opacity: 0.6;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--primary-light);
      color: var(--primary);
      padding: 12px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 24px;
      animation: fadeInUp 0.6s ease-out 0.2s both;
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 24px;
      line-height: 1.1;
      animation: fadeInUp 0.6s ease-out 0.4s both;
    }

    .hero-highlight {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .hero-highlight::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(0, 82, 255, 0.15);
      z-index: -1;
      border-radius: 4px;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      color: var(--gray);
      margin-bottom: 32px;
      max-width: 600px;
      animation: fadeInUp 0.6s ease-out 0.6s both;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin-bottom: 40px;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      animation: fadeInUp 0.6s ease-out;
      animation-fill-mode: both;
    }

    .feature-list li:nth-child(1) { animation-delay: 0.8s; }
    .feature-list li:nth-child(2) { animation-delay: 0.9s; }
    .feature-list li:nth-child(3) { animation-delay: 1.0s; }
    .feature-list li:nth-child(4) { animation-delay: 1.1s; }

    .feature-icon {
      width: 24px;
      height: 24px;
      background: var(--primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      flex-shrink: 0;
    }

    .hero-image {
      position: relative;
      animation: float 6s ease-in-out infinite;
    }

    .hero-card {
      background: white;
      border-radius: var(--radius);
      padding: 8px;
      box-shadow: var(--shadow-lg);
      transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
      transition: var(--transition);
      overflow: hidden;
      border: 1px solid rgba(0, 82, 255, 0.1);
    }

    .hero-card:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0);
    }

    .hero-img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: calc(var(--radius) - 8px);
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotateY(-10deg) rotateX(5deg); }
      50% { transform: translateY(-20px) rotateY(-10deg) rotateX(5deg); }
    }

    /* === SECTIONS === */
    .section {
      padding: 120px 0;
    }

    .section-alt {
      background: linear-gradient(135deg, #F8FAFF 0%, #F1F5F9 100%);
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .section-badge {
      display: inline-block;
      background: var(--primary-light);
      color: var(--primary);
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 24px;
      letter-spacing: 1px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      margin-bottom: 24px;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--gradient);
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: 1.25rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto;
    }

    /* === CARDS === */
    .service-card {
      background: white;
      border-radius: var(--radius);
      padding: 40px;
      height: 100%;
      border: 1px solid rgba(0, 82, 255, 0.1);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }

    .service-card:hover {
      transform: translateY(-16px);
      box-shadow: var(--shadow);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .card-icon {
      width: 72px;
      height: 72px;
      background: var(--primary-light);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px;
      font-size: 32px;
      color: var(--primary);
      transition: var(--transition);
    }

    .service-card:hover .card-icon {
      background: var(--gradient);
      color: white;
      transform: scale(1.1) rotate(5deg);
    }

    .card-title {
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .card-text {
      color: var(--gray);
      margin-bottom: 24px;
    }

    /* === GALLERY === */
    .gallery-section {
      position: relative;
    }

    .gallery-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery-carousel {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: white;
    }

    .carousel-item {
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-image {
      width: 100%;
      height: 600px;
      object-fit: cover;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 64px;
      height: 64px;
      background: white;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      opacity: 0;
      transition: var(--transition);
    }

    .gallery-container:hover .carousel-control-prev,
    .gallery-container:hover .carousel-control-next {
      opacity: 1;
    }

    .carousel-control-prev { left: 32px; }
    .carousel-control-next { right: 32px; }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: var(--primary);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      background-size: 60%;
    }

    /* === FAQS === */
    .accordion-item {
      background: white;
      border: 1px solid rgba(0, 82, 255, 0.1);
      border-radius: 20px !important;
      margin-bottom: 16px;
      overflow: hidden;
      transition: var(--transition);
    }

    .accordion-item:hover {
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    .accordion-button {
      background: white;
      color: var(--dark);
      font-weight: 700;
      font-size: 1.1rem;
      padding: 24px;
      border: none;
      border-radius: 20px !important;
      transition: var(--transition);
    }

    .accordion-button:not(.collapsed) {
      background: var(--primary-light);
      color: var(--primary);
      box-shadow: none;
    }

    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230052FF'%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-body {
      padding: 0 24px 24px;
      color: var(--gray);
    }

    /* === CONTACT === */
    .contact-card {
      background: white;
      border-radius: var(--radius);
      padding: 48px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(0, 82, 255, 0.1);
      height: 100%;
    }

    .contact-info {
      margin-top: 32px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      padding: 20px;
      background: var(--gray-light);
      border-radius: 16px;
      transition: var(--transition);
    }

    .contact-item:hover {
      background: var(--primary-light);
      transform: translateX(8px);
    }

    .contact-icon {
      width: 56px;
      height: 56px;
      background: var(--gradient);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      flex-shrink: 0;
    }

    .whatsapp-icon {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }

    .form-control,
    .form-select {
      padding: 16px 24px;
      border: 2px solid rgba(0, 82, 255, 0.1);
      border-radius: 16px;
      font-size: 1rem;
      transition: var(--transition);
      background: white;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.1);
      transform: translateY(-2px);
    }

    /* === FOOTER === */
    footer {
      background: var(--dark);
      color: white;
      padding: 80px 0 40px;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
    }

    .footer-brand-icon {
      width: 56px;
      height: 56px;
      background: var(--gradient);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.5rem;
    }

    .footer-title {
      font-size: 1.8rem;
      font-weight: 900;
      background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 16px;
    }

    .footer-links a {
      color: #94A3B8;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links a:hover {
      color: white;
      transform: translateX(8px);
    }

    .footer-bottom {
      margin-top: 80px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      color: #94A3B8;
    }

    .back-to-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 56px;
      height: 56px;
      background: var(--gradient);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      box-shadow: 0 8px 32px rgba(0, 82, 255, 0.3);
      transition: var(--transition);
      z-index: 999;
      opacity: 0;
      transform: translateY(20px);
    }

    .back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .back-to-top:hover {
      transform: translateY(-4px) scale(1.1);
    }

    /* === ANIMATIONS === */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(40px);
      transition: var(--transition);
    }

    .animate-on-scroll.visible {
      opacity: 1;
        transform: translateY(0);
    }

    /* === RESPONSIVE === */
    @media (max-width: 992px) {
      .section {
        padding: 80px 0;
      }
      
      .hero {
        padding: 140px 0 60px;
      }
      
      .hero-img {
        height: 400px;
      }
      
      .gallery-image {
        height: 400px;
      }
      
      .nav-link {
        padding: 12px 0 !important;
      }
    }

    @media (max-width: 768px) {
      .container-custom {
        padding: 0 20px;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .contact-card,
      .service-card {
        padding: 32px 24px;
      }
      
      .carousel-control-prev,
      .carousel-control-next {
        display: none;
      }
      
      .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
      }
    }

    @media (max-width: 576px) {
      .hero-img {
        height: 300px;
      }
      
      .gallery-image {
        height: 300px;
      }
      
      .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      
      .brand-name {
        font-size: 1.5rem;
      }
    }
    /* =========================================================
   EYEBROW MASTER REAL (para tu HTML)
   - Aplica tanto a .eyebrow como a .section-badge
   - Fuerza a que queden ARRIBA y CENTRADOS siempre
   ========================================================= */

/* 1) El contenedor del encabezado SIEMPRE en columna centrada */
.section-header{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* En tu galería el header es .text-center mb-5 (no .section-header) */
.gal-gallery .text-center{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* 2) Eyebrow / badge: siempre arriba y centrado */
.eyebrow,
.section-badge{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: max-content !important;
  max-width: 100% !important;

  margin: 0 auto 16px auto !important; /* separa del título */
  float: none !important;
  clear: both !important;

  /* por si cae dentro de flex/grid raros */
  align-self: center !important;
  justify-self: center !important;
  order: -10 !important;
}

/* 3) El título abajo, centrado */
.section-title{
  display: inline-block !important;
  text-align: center !important;
}

/* ===== INLINE <style> BLOCK #2 ===== */
/* Card contenedora */
    .vid-vertical-card{
      width: min(360px, 92vw);     /* en phone ocupa casi todo el ancho */
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255,255,255,.9);
      border: 1px solid rgba(0,0,0,.08);
      box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    /* Frame vertical (9:16) — evita el “contenedor gigante” */
    .vid-vertical-frame{
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;       /* clave: vertical tipo celular */
      background: #000;
    }

    /* Video ocupa el frame */
    .vid-vertical{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;           /* fill lindo (sin bordes negros) */
      display: block;
    }

    .vid-vertical-body{
      padding: 14px 16px 16px;
    }

    /* En desktop: un poquito más “fino” para que entren prolijos lado a lado */
    @media (min-width: 992px){
      .vid-vertical-card{
        width: 320px;
      }
    }

    /* En phone: más grande aún (pero sin romper) */
    @media (max-width: 576px){
      .vid-vertical-card{
        width: min(420px, 96vw);
      }
      .vid-vertical-body{
        padding: 14px 14px 16px;
      }
    }

/* ===== INLINE <style> BLOCK #3 ===== */
.gal-gallery .carousel{max-width:980px;margin-inline:auto;position:relative}
  .gal-frame{
    height: clamp(220px, 48vh, 440px);
    background:#fff;border-radius:16px;overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,.12);
    display:flex;align-items:center;justify-content:center;padding:8px
  }
  .gal-img{
    width:auto !important;max-width:100%;
    height:auto !important;max-height:100%;
    object-fit:contain !important;object-position:center;display:block;cursor:zoom-in
  }
  /* Controles circulares con más contraste */
  .gal-gallery .carousel-control-prev,
  .gal-gallery .carousel-control-next{
    z-index:20;width:50px;height:50px;top:50%;transform:translateY(-50%);
    opacity:1;background:rgba(0,0,0,.55);border-radius:50%;margin:0 12px
  }
  .gal-gallery .carousel-control-prev{left:0}
  .gal-gallery .carousel-control-next{right:0}
  .gal-gallery .gal-ctrl-icon{width:2.6rem;height:2.6rem;background-size:60% 60%}
  /* Indicadores: se sitúan fuera; agregamos espacio inferior para que no se corten */
  .gal-gallery .carousel-indicators{z-index:10;bottom:-50px}
  .gal-gallery .carousel-indicators button{
    width:10px;height:10px;border-radius:50%;
    background:rgba(0,0,0,.5);border:none
  }
  .gal-gallery .carousel-indicators button.active{background:#000}
  .gal-gallery{padding-bottom:56px} /* espacio para indicadores */
  
  /* Modal */
  #galLightbox .modal-content{background:#000}
  #galLightboxImg{max-height:86vh;width:100%;height:auto;object-fit:contain;background:#000}
  .gal-lightbox-nav{
    position:absolute;top:50%;transform:translateY(-50%);
    border:0;width:44px;height:44px;border-radius:999px;
    background:rgba(255,255,255,.18);color:#fff;font-size:30px;line-height:44px;text-align:center;z-index:5;cursor:pointer
  }
  .gal-lightbox-nav:hover{background:rgba(255,255,255,.28)}
  .gal-lightbox-nav.gal-prev{left:10px}
  .gal-lightbox-nav.gal-next{right:10px}
  
  /* Pequeños ajustes móviles */
  @media (max-width: 575.98px){
    .gal-frame{height: clamp(200px, 40vh, 360px)}
  }

/* ===== INLINE <style> BLOCK #4 ===== */
:root{
    --wa-green-1:#25D366;
    --wa-green-2:#128C7E;
    --wa-bg:#ffffff;
    --wa-border: rgba(0,0,0,.10);
    --wa-soft:#f6f7f9;
    --wa-text:#0f172a;
    --wa-muted:#64748b;
  }

  .wa-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;
    font-family: inherit;
  }

  .wa-btn{
    width:60px;height:60px;border-radius:50%;
    border:none;
    background:linear-gradient(135deg,var(--wa-green-1),var(--wa-green-2));
    color:#fff;
    display:grid;place-items:center;
    cursor:pointer;
    box-shadow:0 14px 38px rgba(18,140,126,.35);
    transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
  }
  .wa-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 18px 46px rgba(18,140,126,.45);
    filter:saturate(1.05);
  }

  .wa-card{
    position:absolute;
    right:0;
    bottom:74px;
    width:min(380px,92vw);
    background:var(--wa-bg);
    border-radius:18px;
    border:1px solid var(--wa-border);
    box-shadow:0 20px 70px rgba(0,0,0,.25);
    overflow:hidden;
    transform:translateY(10px);
    opacity:0;
    transition:.25s ease;
  }
  .wa-card[aria-modal="true"]{ transform:none; opacity:1; }

  .wa-head{
    display:flex;align-items:center;gap:12px;
    padding:14px 14px 12px;
    background:linear-gradient(135deg,var(--wa-green-1),var(--wa-green-2));
    color:#fff;
  }

  .wa-avatar{
    width:40px;height:40px;border-radius:12px;
    background:rgba(255,255,255,.18);
    display:grid;place-items:center;
    border:1px solid rgba(255,255,255,.25);
  }
  .wa-initials{ font-weight:900; letter-spacing:.5px; }

  .wa-title{ font-weight:800; line-height:1.1; }
  .wa-status{ font-size:.85rem; opacity:.95; }

  .wa-close{
    margin-left:auto;
    border:none;background:transparent;color:#fff;
    font-size:26px;line-height:1;
    cursor:pointer;
    opacity:.9;
  }
  .wa-close:hover{ opacity:1; transform:scale(1.05); }

  .wa-body{
    padding:14px;
    max-height:40vh;
    overflow:auto;
    background:var(--wa-soft);
    display:flex;flex-direction:column;gap:8px;
  }
  .wa-bubble{
    max-width:92%;
    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 rgba(0,0,0,.08);
    align-self:flex-start;
    color:var(--wa-text);
  }
  .wa-user{
    background:#eaf7f0;
    border:1px solid rgba(18,140,126,.25);
    align-self:flex-end;
    color:var(--wa-text);
  }
  .wa-hint{
    font-size:.9rem;
    color:var(--wa-muted);
  }

  .wa-compose{
    display:grid;
    grid-template-columns:1fr auto;
    gap:8px;
    padding:10px;
    border-top:1px solid rgba(0,0,0,.08);
    background:#fff;
  }
  .wa-compose textarea{
    resize:none;
    border-radius:12px;
    padding:10px 12px;
    border:1px solid rgba(0,0,0,.12);
    font-family:inherit;
    outline:none;
  }
  .wa-compose textarea:focus{
    border-color: rgba(18,140,126,.55);
    box-shadow:0 0 0 4px rgba(18,140,126,.12);
  }

  .wa-send{
    background:linear-gradient(135deg,var(--wa-green-1),var(--wa-green-2));
    color:#fff;
    border:none;
    border-radius:12px;
    padding:0 16px;
    cursor:pointer;
    transition:transform .2s ease, filter .2s ease;
  }
  .wa-send:hover{ transform:translateY(-1px); filter:saturate(1.06); }

  .wa-quick{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    padding:10px;
    border-top:1px solid rgba(0,0,0,.06);
    background:#fff;
  }
  .wa-chip{
    border:1px solid rgba(0,0,0,.10);
    background:#fff;
    color:var(--wa-text);
    border-radius:999px;
    padding:8px 10px;
    font-size:.86rem;
    cursor:pointer;
    transition:transform .2s ease, background .2s ease, border-color .2s ease;
  }
  .wa-chip:hover{
    transform:translateY(-1px);
    border-color: rgba(18,140,126,.35);
    background: rgba(37,211,102,.06);
  }

  @media(max-width:480px){
    .wa-card{ width:calc(100vw - 24px); }
  }

