/* MIXED CSS PACK */
/* Template: nutriviandas-asa.com/index.html */
/* Template mtime: 2025-12-12 20:44:36 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #138f8f;
      --primary-light: #1ab5b5;
      --primary-dark: #0d6a6a;
      --bg: #ffffff;
      --text: #000000;
      --text-light: #333333;
      --text-muted: #666666;
      --shadow-sm: 0 2px 8px rgba(19, 143, 143, 0.1);
      --shadow-md: 0 4px 16px rgba(19, 143, 143, 0.15);
      --shadow-lg: 0 8px 32px rgba(19, 143, 143, 0.2);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Navbar */
    .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-sm);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      box-shadow: var(--shadow-md);
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--primary) !important;
      transition: transform 0.3s ease;
    }

    .navbar-brand:hover {
      transform: scale(1.05);
    }

    .nav-link {
      color: var(--text) !important;
      font-weight: 500;
      margin: 0 0.5rem;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover {
      color: var(--primary) !important;
    }

    .nav-link:hover::after {
      width: 80%;
    }

    /* Hero Section */
    #inicio {
      min-height: 90vh;
      display: flex;
      align-items: center;
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

    #inicio::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(19, 143, 143, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 20s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(-50px, 50px) rotate(5deg);
      }
    }

    .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .hero-content h1 span {
      color: var(--primary);
      display: block;
    }

    .hero-content p {
      font-size: 1.25rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .btn-primary-custom {
      background: var(--primary);
      color: white;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }

    .btn-primary-custom::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-primary-custom:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-primary-custom:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .hero-image {
      position: relative;
      animation: fadeInRight 1s ease;
    }

    .hero-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s ease;
    }

    .hero-image img:hover {
      transform: scale(1.02);
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Section Titles */
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 3rem;
    }

    /* Cards */
    .card-custom {
      background: white;
      border: 1px solid rgba(19, 143, 143, 0.1);
      border-radius: 16px;
      padding: 2rem;
      height: 100%;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-sm);
    }

    .card-custom:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }

    .card-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: transform 0.3s ease;
    }

    .card-custom:hover .card-icon {
      transform: rotate(5deg) scale(1.1);
    }

    .card-icon i {
      font-size: 2rem;
      color: white;
    }

    .card-custom h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 1rem;
    }

    .card-custom p {
      color: var(--text-muted);
      font-size: 1rem;
    }

    /* Gallery Carousel */
    .gallery-section {
      background: #f8f9fa;
      padding: 5rem 0;
    }

    .gallery-carousel .carousel-item {
      height: auto;    /* el alto viene de la imagen */
    }
    
    .gallery-carousel .carousel-item img {
      display: block;
      width: auto;         /* respeta proporción */
      max-width: 100%;     /* no se sale del contenedor */
      height: auto;        /* alto según contenido */
      max-height: 600px;   /* límite en desktop, ajustable */
      object-fit: contain; /* no recorta, se ve entera */
      border-radius: 16px;
      cursor: pointer;
      transition: transform 0.3s ease;
      margin: 0 auto;      /* centrada */
    }
    @media (max-width: 768px) {
      .gallery-carousel .carousel-item img {
        max-height: 400px;  /* o el valor que te quede cómodo */
      }
    }


    .gallery-carousel .carousel-item img:hover {
      transform: scale(1.02);
    }

    .gallery-carousel .carousel-control-prev,
    .gallery-carousel .carousel-control-next {
      width: 60px;
      height: 60px;
      background: rgba(19, 143, 143, 0.8);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
      transition: all 0.3s ease;
    }

    .gallery-carousel:hover .carousel-control-prev,
    .gallery-carousel:hover .carousel-control-next {
      opacity: 1;
    }

    .gallery-carousel .carousel-control-prev {
      left: 2rem;
    }

    .gallery-carousel .carousel-control-next {
      right: 2rem;
    }

    .gallery-carousel .carousel-control-prev:hover,
    .gallery-carousel .carousel-control-next:hover {
      background: var(--primary);
    }

    .gallery-carousel .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--primary);
      opacity: 0.5;
      transition: all 0.3s ease;
    }

    .gallery-carousel .carousel-indicators button.active {
      opacity: 1;
      transform: scale(1.3);
    }

    /* FAQs */
    .faq-item {
      background: white;
      border: 1px solid rgba(19, 143, 143, 0.1);
      border-radius: 12px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      box-shadow: var(--shadow-md);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--text);
      user-select: none;
    }

    .faq-question i {
      color: var(--primary);
      transition: transform 0.3s ease;
    }

    .faq-question.active i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: var(--text-muted);
      padding: 0 1.5rem;
    }

    .faq-answer.active {
      max-height: 500px;
      padding: 0 1.5rem 1.5rem;
    }

    /* Contact Form */
    .form-control-custom {
      border: 2px solid rgba(19, 143, 143, 0.1);
      border-radius: 12px;
      padding: 0.875rem 1.25rem;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
    }

    .form-control-custom:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(19, 143, 143, 0.1);
      outline: none;
    }

    .form-label {
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #0d6a6a 0%, #138f8f 100%);
      color: white;
      padding: 4rem 0 2rem;
    }

    footer h5 {
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    footer a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: white;
    }

    .social-links a {
      display: inline-block;
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.5rem;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: white;
      color: var(--primary) !important;
      transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .gallery-carousel .carousel-item {
        height: 400px;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
/* ESTILOS PRO - ANIMACIONES EN LOOP CONSTANTE */
    
    /* Contenedor principal del logo PRO */
    .logo-container-pro {
      position: relative;
      display: inline-block;
      width: 100%;
      height: 400px;
      perspective: 1000px;
      overflow: visible;
    }
    
    /* Wrapper del logo para efectos 3D */
    .logo-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      z-index: 10;
      animation: flotar3D 8s ease-in-out infinite;
    }
    
    /* Logo principal con múltiples animaciones simultáneas */
    .logo-pro {
      animation: 
        brilloExtremo 4s linear infinite,
        respiracionProfunda 3s ease-in-out infinite,
        rotacionSutil 15s linear infinite,
        distorsionCristal 6s ease-in-out infinite;
      filter: 
        drop-shadow(0 0 20px rgba(144, 238, 144, 0.5))
        drop-shadow(0 0 40px rgba(50, 205, 50, 0.3))
        contrast(1.1)
        saturate(1.2);
      transform-origin: center;
      border: 3px solid transparent;
      border-image: linear-gradient(45deg, #90EE90, #32CD32, #228B22, #90EE90) 1;
      border-image-slice: 1;
      position: relative;
      z-index: 20;
      width: 100%;
      height: auto;
      border-radius: 20px;
      background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(240, 255, 240, 0.98) 100%);
      padding: 15px;
      box-shadow: 
        inset 0 0 50px rgba(144, 238, 144, 0.3),
        0 0 80px rgba(50, 205, 50, 0.4);
    }
    
    /* === ANIMACIONES PRINCIPALES DEL LOGO === */
    
    /* Flotación 3D compleja */
    @keyframes flotar3D {
      0%, 100% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) scale(1);
      }
      25% {
        transform: translate(-50%, -53%) rotateX(5deg) rotateY(5deg) scale(1.02);
      }
      50% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(10deg) scale(1);
      }
      75% {
        transform: translate(-50%, -47%) rotateX(-5deg) rotateY(5deg) scale(1.02);
      }
    }
    
    /* Brillos extremos y cambiantes */
    @keyframes brilloExtremo {
      0%, 100% {
        filter: 
          drop-shadow(0 0 20px rgba(144, 238, 144, 0.5))
          drop-shadow(0 0 40px rgba(50, 205, 50, 0.3))
          brightness(1)
          hue-rotate(0deg);
        box-shadow: 
          inset 0 0 50px rgba(144, 238, 144, 0.3),
          0 0 80px rgba(50, 205, 50, 0.4),
          0 0 120px rgba(34, 139, 34, 0.2);
      }
      33% {
        filter: 
          drop-shadow(0 0 25px rgba(50, 205, 50, 0.7))
          drop-shadow(0 0 50px rgba(144, 238, 144, 0.4))
          brightness(1.1)
          hue-rotate(30deg);
        box-shadow: 
          inset 0 0 60px rgba(50, 205, 50, 0.4),
          0 0 100px rgba(144, 238, 144, 0.5),
          0 0 150px rgba(50, 205, 50, 0.3);
      }
      66% {
        filter: 
          drop-shadow(0 0 30px rgba(34, 139, 34, 0.6))
          drop-shadow(0 0 60px rgba(50, 205, 50, 0.5))
          brightness(1.05)
          hue-rotate(-30deg);
        box-shadow: 
          inset 0 0 70px rgba(34, 139, 34, 0.3),
          0 0 120px rgba(50, 205, 50, 0.6),
          0 0 180px rgba(144, 238, 144, 0.4);
      }
    }
    
    /* Respiración profunda y energética */
    @keyframes respiracionProfunda {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.08);
      }
    }
    
    /* Rotación sutil en 3D */
    @keyframes rotacionSutil {
      0% {
        transform: rotateY(0deg);
      }
      100% {
        transform: rotateY(360deg);
      }
    }
    
    /* Efecto de distorsión tipo cristal */
    @keyframes distorsionCristal {
      0%, 100% {
        border-radius: 20px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
      }
      50% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
      }
    }
    
    /* === EFECTOS DE PARTÍCULAS ENERGÉTICAS === */
    
    .particulas-energia {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(144, 238, 144, 1) 2px, transparent 3px),
        radial-gradient(circle at 80% 70%, rgba(50, 205, 50, 0.8) 2px, transparent 3px),
        radial-gradient(circle at 40% 80%, rgba(34, 139, 34, 0.9) 2px, transparent 3px),
        radial-gradient(circle at 60% 20%, rgba(152, 251, 152, 0.7) 2px, transparent 3px),
        radial-gradient(circle at 30% 50%, rgba(0, 255, 127, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 70% 40%, rgba(60, 179, 113, 0.8) 2px, transparent 3px);
      background-size: 300px 300px;
      animation: particulasViajeras 15s linear infinite;
      z-index: 1;
      opacity: 0.7;
    }
    
    .particulas-energia-2 {
      animation: particulasViajeras 20s linear infinite reverse;
      opacity: 0.5;
      background-size: 400px 400px;
      mix-blend-mode: screen;
    }
    
    @keyframes particulasViajeras {
      0% {
        background-position: 0% 0%, 100px 100px, 200px 200px, 300px 300px, 400px 400px, 500px 500px;
      }
      100% {
        background-position: 300px 300px, 400px 400px, 500px 500px, 600px 600px, 700px 700px, 800px 800px;
      }
    }
    
    /* === ANILLOS CONCÉNTRICOS EN EXPANSIÓN === */
    
    .anillo {
      position: absolute;
      top: 50%;
      left: 50%;
      border: 2px solid rgba(144, 238, 144, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
    }
    
    .anillo-1 {
      width: 120%;
      height: 120%;
      animation: expandirAnillo 3s ease-out infinite;
      border-color: rgba(50, 205, 50, 0.4);
    }
    
    .anillo-2 {
      width: 140%;
      height: 140%;
      animation: expandirAnillo 4s ease-out infinite 0.5s;
      border-color: rgba(34, 139, 34, 0.3);
    }
    
    .anillo-3 {
      width: 160%;
      height: 160%;
      animation: expandirAnillo 5s ease-out infinite 1s;
      border-color: rgba(144, 238, 144, 0.2);
    }
    
    @keyframes expandirAnillo {
      0% {
        width: 100%;
        height: 100%;
        opacity: 1;
        border-width: 2px;
      }
      100% {
        width: 180%;
        height: 180%;
        opacity: 0;
        border-width: 0;
      }
    }
    
    /* === PULSO EXTERIOR DE ENERGÍA === */
    
    .pulso-exterior {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(144, 238, 144, 0.1) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      z-index: 2;
      animation: pulsoEnergia 6s ease-in-out infinite;
    }
    
    @keyframes pulsoEnergia {
      0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
      }
      50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
      }
    }
    
    /* === EFECTO DE VIBRACIÓN SUTIL === */
    
    .logo-pro::after {
      content: '';
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(144, 238, 144, 0.1) 50%, 
        transparent 70%);
      z-index: -1;
      border-radius: 25px;
      animation: scanline 2s linear infinite;
    }
    
    @keyframes scanline {
      0% {
        background-position: -200px 0;
      }
      100% {
        background-position: 200px 0;
      }
    }
    
    /* === RESPONSIVE === */
    
    @media (max-width: 992px) {
      .logo-container-pro {
        height: 300px;
      }
      
      .logo-wrapper {
        width: 90%;
      }
      
      .col-lg-6:last-child {
        padding-left: 15px;
        padding-top: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .logo-container-pro {
        height: 250px;
      }
      
      .logo-pro {
        padding: 10px;
      }
      
      .anillo-1, .anillo-2, .anillo-3 {
        display: none; /* Ocultar anillos en móvil para mejor performance */
      }
    }
    
    /* Optimización de rendimiento */
    .logo-container-pro * {
      will-change: transform, opacity, filter;
    }

/* ===== INLINE <style> BLOCK #3 ===== */
:root{
      /* Color principal del sitio (podés ajustarlo al de la web) */
      --brand:#5cab7a;          /* verde saludable */
      --brand-dark:#4a9469;
      --brand-darker:#3a7554;
  
      /* WhatsApp modo CLARO usando la paleta del sitio */
      --wa:var(--brand);
      --wa-dark:var(--brand-dark);
      --wa-darker:var(--brand-darker);
  
      --light-bg:#ffffff;
      --light-bg-soft:#f6f8f7;
      --light-border:#dde4df;
      --dark-text:#1c1f1d;
      --muted-text:#6c756f;
  
      --ig:#E4405F;
      --ig-dark:#C13584;
    }
  
    /* IG button (arriba del WA) */
    .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);
    }
  
    /* WhatsApp flotante */
    .wa-float{
      position:fixed; right:18px; bottom:18px;
      z-index:9999; font-family:inherit;
    }
  
    .wa-btn{
      background:#ffffff;
      color:var(--brand);
      border:2px solid var(--brand);
      width:60px; height:60px; border-radius:50%;
      display:grid; place-items:center;
      box-shadow:0 8px 24px rgba(0,0,0,.18);
      cursor:pointer; transition:transform .3s, box-shadow .3s, background .3s, color .3s, border-color .3s;
      position:relative; overflow:hidden;
      z-index:9999;
    }
    .wa-btn svg{
      color:var(--brand);
    }
    .wa-btn::after{
      content:"";
      position:absolute; inset:0;
      background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.7), rgba(255,255,255,0) 70%);
      opacity:0; transition:opacity .3s;
    }
    .wa-btn:hover{
      background:var(--brand);
      border-color:var(--brand-dark);
      color:#fff;
      transform:translateY(-3px) scale(1.05);
      box-shadow:0 14px 36px rgba(0,0,0,.28);
    }
    .wa-btn:hover svg{
      color:#fff;
    }
    .wa-btn:hover::after{
      opacity:0.2;
    }
  
    .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:#e1f1e7;
      display:grid; place-items:center;
      border:1px solid #c9e4d3;
      overflow:hidden;
    }
    .wa-title{
      font-weight:700;
      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(--brand);
    }
    .wa-close{
      margin-left:auto;
      background:transparent;
      color:var(--muted-text);
      border:0;
      font-size:24px;
      cursor:pointer;
      opacity:.7;
      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(--brand);
      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(--brand);
      box-shadow:0 0 0 2px rgba(92,171,122,.15);
      background:#ffffff;
    }
    .wa-send{
      background:var(--brand);
      color:#ffffff;
      border:0;
      border-radius:12px;
      padding:0 16px;
      font-weight:600;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:.2s;
    }
    .wa-send:hover{
      background:var(--brand-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){
      .ig-float{ right:12px; bottom:86px; width:52px; height:52px; }
      .wa-float{ right:12px; bottom:12px; }
      .wa-card{ width:calc(100vw - 24px); right:0; }
    }

