/* MIXED CSS PACK */
/* Template: sculls.com.ar/index.html */
/* Template mtime: 2026-02-20 12:39:34 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300..900&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://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ===== VARIABLES Y RESET ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
  /* ===== BRAND (UI principal) -> AZUL del logo ===== */
  --brand-light: #eef6ff;
  --brand: #1f78b4;                          /* 🔵 azul */
  --brand-dark: #155a86;                     /* azul profundo */
  --brand-glow: rgba(31, 120, 180, 0.28);
  --brand-soft: rgba(31, 120, 180, 0.08);

  /* ===== ACENTOS del logo ===== */
  --accent-red: #e10600;                     /* 🔴 rojo */
  --accent-red-dark: #b80000;
  --accent-red-soft: rgba(225, 6, 0, 0.08);
  --accent-red-glow: rgba(225, 6, 0, 0.22);

  --accent-yellow: #f4c400;                  /* 🟡 amarillo */
  --accent-yellow-dark: #c99d00;
  --accent-yellow-soft: rgba(244, 196, 0, 0.14);

  --accent-black: #111111;                   /* ⚫ negro */

  /* ===== BASE UI ===== */
  --bg: #ffffff;
  --bg-alt: #f4f5f7;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;

  /* ===== TEXTOS ===== */
  --text-primary: #111827;
  --text-secondary: #1f2937;
  --text-muted: #4b5563;
  --text-light: #6b7280;

  /* ===== BORDES ===== */
  --border-light: rgba(17, 24, 39, 0.08);
  --border-medium: rgba(17, 24, 39, 0.16);

  /* ===== SOMBRAS ===== */
  --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, 32, 64, 0.12), 0 4px 12px -4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 32px 48px -16px rgba(0, 48, 80, 0.2), 0 8px 16px -8px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 48px 64px -24px rgba(0, 64, 96, 0.25);

  /* ===== RADIOS ===== */
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* ===== TRANSICIONES ===== */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}


    body {
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      background: var(--bg-alt);
      color: var(--text-primary);
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* ===== BACKGROUNDS SUTILES ===== */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: 
        radial-gradient(800px at 10% 20%, rgba(35, 182, 201, 0.08), transparent 50%),
        radial-gradient(600px at 90% 70%, rgba(35, 182, 201, 0.06), transparent 50%),
        repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(35, 182, 201, 0.02) 20px, rgba(35, 182, 201, 0.02) 40px);
      pointer-events: none;
      z-index: -1;
    }

    /* ===== UTILIDADES ===== */
    .anchor-offset {
      scroll-margin-top: 88px;
    }

    .container {
      max-width: 1280px;
      padding-inline: 24px;
    }

    /* ===== ESPACIADO ENTRE SECCIONES (más aire entre fin de una sección y el eyebrow de la siguiente) ===== */
    section {
      padding: 88px 0;
    }
    /* Mantener HERO con su propio padding (ya definido) */
    header.hero {
      padding: 140px 0 120px;
      position: relative;
      background: url('img/hero2.jpg') center / cover no-repeat;
    }
    .hero::before{
      content:'';
      position:absolute;
      inset:0;
      /* overlay mínimo (sin gradiente) para que se vea la foto y el texto tenga contraste */
      background: rgba(0,0,0,0.18);
      pointer-events:none;
    }
    .hero > .container{
      position: relative;
      z-index: 1;
    }

    /* ===== HERO: CONTRASTE DE TEXTOS SOBRE IMAGEN (título negro, resto blanco) ===== */
    header.hero .display-eyebrow{
      color:#fff;
      background: rgba(0,0,0,0.35);
      border-color: rgba(255,255,255,0.22);
      text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    }
    header.hero h1{
      color: var(--text-primary);
      /* sombra suave para que el negro se lea sobre la foto */
      text-shadow: 0 2px 14px rgba(255,255,255,0.30), 0 2px 18px rgba(0,0,0,0.30);
    }
    header.hero .lead,
    header.hero .hero-bullets .it,
    header.hero .hero-meta,
    header.hero .hero-meta *{
      color:#fff;
      text-shadow: 0 2px 12px rgba(0,0,0,0.60);
    }
    header.hero .hero-bullets .it i{
      color:#fff;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
    }


    @media (max-width: 576px){
      header.hero{
        padding: 120px 0 140px;
        background-position: center;
      }
      .hero::before{
        /* overlay mínimo también en phone (sin gradiente) */
        background: rgba(0,0,0,0.22);
      }
    }
    /* Galería ya define padding-bottom; le sumamos padding-top coherente */
    .gal-gallery {
      padding-top: 88px;
      padding-bottom: 80px;
    }
    /* Footer ya tiene su padding */


    /* ===== TIPOGRAFÍA ===== */
    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .display-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(35, 182, 201, 0.1);
      border: 1px solid rgba(35, 182, 201, 0.2);
      border-radius: var(--radius-full);
      color: var(--brand-dark);
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      backdrop-filter: blur(4px);
    }

    .display-eyebrow i {
      color: var(--brand);
      font-size: 1rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-top: 16px;
      background: linear-gradient(145deg, var(--text-primary) 0%, var(--text-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 800px;
      margin: 16px auto 0;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(16px) saturate(180%);
      border-bottom: 1px solid var(--border-light);
      padding: 16px 0;
      transition: var(--transition-base);
    }

    .navbar-scrolled {
      padding: 12px 0;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow-md);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.75rem;
      letter-spacing: -0.02em;
      color: var(--text-primary) !important;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-dot {
      width: 10px;
      height: 10px;
      background: var(--brand);
      border-radius: var(--radius-full);
      box-shadow: 0 0 0 6px var(--brand-glow);
      transition: var(--transition-base);
    }

    .navbar-brand:hover .brand-dot {
      transform: scale(1.2);
      box-shadow: 0 0 0 8px var(--brand-glow);
    }

    .navbar-nav .nav-link {
      font-weight: 600;
      color: var(--text-secondary) !important;
      padding: 8px 16px !important;
      border-radius: var(--radius-full);
      transition: var(--transition-fast);
      position: relative;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 20px;
      height: 3px;
      background: var(--brand);
      border-radius: var(--radius-full);
      transition: transform var(--transition-fast);
    }

    .navbar-nav .nav-link:hover {
      color: var(--brand-dark) !important;
      background: var(--brand-soft);
    }

    .navbar-nav .nav-link:hover::after {
      transform: translateX(-50%) scaleX(1);
    }

    .navbar-toggler {
      border: 1px solid var(--border-medium);
      border-radius: var(--radius-md);
      padding: 8px 10px;
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px var(--brand-glow);
    }

    /* ===== BOTONES ===== */
    .btn {
      padding: 12px 28px;
      border-radius: var(--radius-full);
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.3px;
      transition: var(--transition-base);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: none;
    }

    .btn-brand {
      background: linear-gradient(145deg, var(--brand), var(--brand-dark));
      color: white;
      box-shadow: 0 8px 20px -8px var(--brand);
    }

    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 28px -8px var(--brand);
      filter: brightness(1.05);
    }

    .btn-brand:active {
      transform: translateY(0);
    }

    .btn-ghost {
      background: var(--surface);
      color: var(--text-primary);
      border: 1px solid var(--border-medium);
      backdrop-filter: blur(8px);
    }

    .btn-ghost:hover {
      background: var(--surface-solid);
      border-color: var(--brand);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* ===== HERO ===== */
    .hero {
      padding: 140px 0 80px;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin: 24px 0 16px;
    }

    .hero .lead {
      font-size: 1.25rem;
      color: var(--text-muted);
      margin-bottom: 32px;
    }

    .hero-bullets {
      display: grid;
      gap: 16px;
      margin: 32px 0;
    }

    .hero-bullets .it {
      display: flex;
      gap: 16px;
      align-items: center;
      font-weight: 500;
    }

    .hero-bullets .it i {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--brand-soft);
      color: var(--brand-dark);
      border-radius: var(--radius-full);
      font-size: 0.9rem;
    }

    .hero-media {
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: transparent; /* ✅ sin fondo en el contenedor */
      box-shadow: var(--shadow-xl);
      position: relative;
      aspect-ratio: 4/3;
      transform: rotate(1deg) scale(0.98);
      transition: var(--transition-slow);
    }

    .hero-media:hover {
      transform: rotate(0deg) scale(1);
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: contain; /* mostrar la imagen completa */
      object-position: center;
      background: transparent; /* ✅ sin fondo blanco detrás del logo */
      padding: 12px;           /* aire para que no "pegue" a los bordes */
      filter: drop-shadow(0 10px 26px rgba(0,0,0,0.35)); /* contraste suave sobre el hero */
      transition: var(--transition-slow);
    }

    .hero-media:hover img {
      transform: none;
    }

    /* ===== AJUSTE: mover el logo del HERO un poco a la derecha SOLO en desktop ===== */
    @media (min-width: 992px){
      header.hero .hero-media img{
        object-position: 100% center; /* antes: center */
      }
    }

    .badge-float {
      position: absolute;
      bottom: 15px;              /* un poco más cerca */
      left: 99px;
    
      display: inline-flex;      /* mejor alineación */
      align-items: center;
      gap: 6px;
    
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(6px);
    
      padding: 4px 10px;         /* 👈 más chico */
      font-size: 0.8rem;         /* 👈 texto más compacto */
      font-weight: 500;
    
      border-radius: 999px;      /* pill limpio */
      border: 1px solid rgba(0,0,0,0.05);
    
      box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* sombra más sutil */
    }
    /* ===== CARDS ===== */
    .card-glass {
      background: var(--surface);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-xl);
      padding: 32px;
      height: 100%;
      transition: var(--transition-base);
      box-shadow: var(--shadow-sm);
    }

    .card-glass:hover {
      transform: translateY(-8px);
      border-color: var(--brand-soft);
      box-shadow: var(--shadow-xl);
    }

    .card-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(145deg, var(--brand-soft), transparent);
      border: 1px solid rgba(35, 182, 201, 0.2);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--brand-dark);
      font-size: 1.5rem;
      transition: var(--transition-base);
    }

    .card-glass:hover .card-icon {
      background: linear-gradient(145deg, var(--brand), var(--brand-dark));
      color: white;
      border-color: transparent;
    }

    /* ===== SERVICIOS ===== */
    .service-box {
      background: var(--surface-solid);
      border-radius: var(--radius-xl);
      padding: 32px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-md);
      height: 100%;
      transition: var(--transition-base);
      position: relative;
      overflow: hidden;
    }

    .service-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--brand), transparent);
    }

    .service-box:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
      border-color: var(--brand);
    }

    .service-box h4 {
      font-weight: 800;
      margin-bottom: 16px;
    }

    .price-tag {
      display: inline-block;
      padding: 6px 16px;
      background: linear-gradient(145deg, var(--brand), var(--brand-dark));
      color: white;
      border-radius: var(--radius-full);
      font-weight: 700;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px var(--brand-glow);
    }

    .service-box ul {
      list-style: none;
      padding: 0;
      margin: 24px 0;
    }

    .service-box li {
      padding: 8px 0 8px 28px;
      position: relative;
      color: var(--text-muted);
    }

    .service-box li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--brand);
      font-weight: 700;
    }

    /* ===== GALERÍA ===== */
    .gal-gallery {
      padding-bottom: 80px;
    }

    .gal-gallery .carousel {
      max-width: 1000px;
      margin: 0 auto;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .gal-frame {
      aspect-ratio: 16/9;
      background: var(--bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
    }

    .gal-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      cursor: zoom-in;
      transition: var(--transition-base);
      border-radius: var(--radius-lg);
    }

    .gal-img:hover {
      transform: scale(1.02);
    }

    .gal-gallery .carousel-control-prev,
    .gal-gallery .carousel-control-next {
      width: 48px;
      height: 48px;
      background: rgba(0, 0, 0, 0.55) !important;
      backdrop-filter: blur(8px);
      border-radius: var(--radius-full);
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      transition: var(--transition-base);
      border: 1px solid rgba(255, 255, 255, 0.25);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

    .gal-gallery .carousel-control-prev-icon,
    .gal-gallery .carousel-control-next-icon{
      width: 22px;
      height: 22px;
      background-size: 22px 22px;
      opacity: 1;
      /* iconos bien visibles sobre fondo oscuro */
      filter: none;
    }


    .gal-gallery:hover .carousel-control-prev,
    .gal-gallery:hover .carousel-control-next {
      opacity: 1;
    }

    /* En desktop (con hover real), mantenemos el efecto "aparece al pasar el mouse".
       En mobile/touch, quedan SIEMPRE visibles. */
    @media (hover: hover) and (pointer: fine) {
      .gal-gallery .carousel-control-prev,
      .gal-gallery .carousel-control-next {
        opacity: 0;
      }
      .gal-gallery:hover .carousel-control-prev,
      .gal-gallery:hover .carousel-control-next {
        opacity: 1;
      }
    }


    .gal-gallery .carousel-control-prev { left: 20px; }
    .gal-gallery .carousel-control-next { right: 20px; }

    .gal-gallery .carousel-indicators button {
      width: 10px;
      height: 10px;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.5) !important;
      border: none;
      margin: 0 6px;
      transition: var(--transition-base);
    }

    .gal-gallery .carousel-indicators button.active {
      width: 24px;
      background: white !important;
    }

    /* ===== ACCORDION ===== */
    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: var(--border-light);
      --bs-accordion-btn-color: var(--text-primary);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .accordion-item {
      background: var(--surface);
      border: 1px solid var(--border-light);
      margin-bottom: 8px;
      border-radius: var(--radius-lg) !important;
      overflow: hidden;
    }

    .accordion-button {
      font-weight: 700;
      padding: 20px 24px;
      background: var(--surface);
    }

    .accordion-button:not(.collapsed) {
      background: linear-gradient(90deg, var(--brand-soft), transparent);
      color: var(--brand-dark);
    }

    .accordion-button:focus {
      box-shadow: 0 0 0 4px var(--brand-glow);
    }

    .accordion-body {
      padding: 20px 24px;
      background: var(--bg-alt);
      color: var(--text-muted);
    }

    /* ===== CONTACTO ===== */
    .contact-card {
      background: var(--surface-solid);
      border-radius: var(--radius-xl);
      padding: 32px;
      box-shadow: var(--shadow-lg);
    }

    .contact-line {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px dashed var(--border-light);
    }

    .contact-line:last-child {
      border-bottom: none;
    }

    .contact-line i {
      width: 48px;
      height: 48px;
      background: var(--brand-soft);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-dark);
      font-size: 1.25rem;
      transition: var(--transition-base);
    }

    .contact-line:hover i {
      background: var(--brand);
      color: white;
    }

    .contact-line h6 {
      font-weight: 700;
      margin-bottom: 4px;
    }

    .contact-line a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition-fast);
    }

    .contact-line a:hover {
      color: var(--brand-dark);
    }

    /* ===== FORMULARIOS ===== */
    .form-control, .form-select {
      background: var(--bg-alt);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 14px 18px;
      color: var(--text-primary);
      font-size: 1rem;
      transition: var(--transition-base);
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 4px var(--brand-glow);
      background: var(--surface-solid);
    }

    .form-label {
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 8px;
    }

    /* ===== FOOTER ===== */
    footer {
      /* ✅ Fondo sólido igual al accent (brand) */
      background: var(--brand);
      border-top: none;
      padding: 64px 0 32px;
      margin-top: 64px;
    }

    /* Tipografía y links en blanco (sin tocar .text-muted global) */
    footer .footer-title {
      font-weight: 800;
      font-size: 1.125rem;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.95);
    }

    footer .text-muted,
    footer .text-muted.small,
    footer p,
    footer small {
      color: rgba(255, 255, 255, 0.82) !important;
    }

    footer .footer-link {
      color: rgba(255, 255, 255, 0.88);
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      padding: 6px 0;
      transition: var(--transition-fast);
      position: relative;
    }

    footer .footer-link::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      width: 0;
      height: 2px;
      background: rgba(255, 255, 255, 0.92);
      transition: var(--transition-fast);
    }

    footer .footer-link:hover {
      color: #ffffff;
    }

    footer .footer-link:hover::after {
      width: 100%;
    }

    footer .copyright {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.9rem;
      padding-top: 32px;
      margin-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.25);
    }
/* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .navbar-nav .nav-link {
        padding: 12px 20px !important;
      }
      
      .hero {
        padding: 120px 0 60px;
      }

      section {
        padding: 72px 0;
      }
      .gal-gallery {
        padding-top: 72px;
        padding-bottom: 64px;
      }
      
      .hero-media {
        transform: none;
      }
      
      .service-box, .card-glass {
        padding: 24px;
      }
      
      .section-title {
        font-size: 2rem;
      }
    }

    /* ===== ANIMACIONES ===== */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .animate-float {
      animation: float 6s ease-in-out infinite;
    }

    .hover-lift {
      transition: var(--transition-base);
    }

    .hover-lift:hover {
      transform: translateY(-4px);
    }

/* ===== INLINE <style> BLOCK #2 ===== */
/* ===== VENTA: imágenes uniformes y prolijas ===== */
.sale-card .sale-media{
  width: 100%;
  aspect-ratio: 16 / 10;          /* marco uniforme */
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.sale-card .sale-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;             /* se ve ENTERA */
  object-position: center;
  padding: 10px;                   /* aire interno */
  transform: none !important;
}

@media (max-width: 768px){
  .sale-card .sale-media{
    aspect-ratio: 4 / 3;
  }
}

/* ===== INLINE <style> BLOCK #3 ===== */
.gal-lightbox-nav {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 10;
  }
  .gal-lightbox-nav:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
  }

/* ===== INLINE <style> BLOCK #4 ===== */
:root{
    /* WhatsApp oficiales */
    --wa:#25D366;
    --wa-dark:#128C7E;

    --light-bg:#ffffff;
    --light-bg-soft:#f6fbfc;
    --light-border:#d7e7ea;
    --dark-text:#0b1220;
    --muted-text:#5a6472;
  }

  .ig-float{
    position:fixed; right:18px; bottom:92px;
    z-index:9998;
    width:54px; height:54px; border-radius:50%;
    display:grid; place-items:center; color:#fff; text-decoration:none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:transform .25s, box-shadow .25s;
  }
  .ig-float:hover{ transform:translateY(-2px) scale(1.04); box-shadow:0 14px 36px rgba(0,0,0,.35); }

  .wa-float{
    position:fixed; right:18px; bottom:18px;
    z-index:9999; font-family:inherit;
  }

  /* ✅ Botón 100% clickeable */
  .wa-btn{
    width:60px; height:60px; border-radius:50%;
    display:grid; place-items:center;
    background:var(--wa);
    color:#fff;
    border:0;
    cursor:pointer;
    box-shadow:0 10px 28px rgba(0,0,0,.20);
    transition:transform .25s, box-shadow .25s, filter .25s;
    position:relative;
    z-index:10002;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .wa-btn svg{ color:#fff; pointer-events:none; }
  .wa-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 16px 40px rgba(0,0,0,.26);
    filter:saturate(1.05) brightness(1.02);
  }

  /* ✅ La tarjeta NO tapa el botón cuando está cerrada */
  .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 .25s, opacity .25s;
    z-index:10001;
    pointer-events:none; /* << CLAVE */
  }
  .wa-card[aria-modal="true"]{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto; /* << CLAVE */
  }

  .wa-head{
    display:flex; align-items:center; gap:12px;
    padding:14px 16px;
    background:linear-gradient(135deg, #ffffff, #f0fffa);
    border-bottom:1px solid var(--light-border);
  }
  .wa-avatar{
    width:40px; height:40px; border-radius:10px;
    background:#eafff6;
    display:grid; place-items:center;
    border:1px solid #c9f5e2;
    overflow:hidden;
  }
  .wa-title{ font-weight:850; font-size:1.02rem; }
  .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);
    font-size:.9rem;
  }
  .wa-bot{
    background:#fff;
    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:#fff;
    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:#f7fcfd;
    color:var(--dark-text);
    outline:none;
    min-height:44px;
    font-family:inherit;
    font-size:.9rem;
    transition:.2s;
  }
  .wa-compose textarea:focus{
    border-color:var(--wa);
    box-shadow:0 0 0 2px rgba(37,211,102,.18);
    background:#fff;
  }
  .wa-send{
    background:var(--wa-dark);
    color:#fff;
    border:0;
    border-radius:12px;
    padding:0 16px;
    font-weight:800;
    cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    transition:.2s;
  }
  .wa-send:hover{ filter:brightness(1.02); transform:scale(1.04); }

  @media (max-width:480px){
    .ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
    .wa-float{ right:12px; bottom:12px; }
    .wa-card{ width:calc(100vw - 24px); right:0; }
  }

