/* MIXED CSS PACK */
/* Template: academiadylmor.com.ar/index.html */
/* Template mtime: 2025-11-10 17:36:17 */

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

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --brand: #111827;
      --accent: #1C49B6;
      --accent-light: #1C49B6;
      --accent-dark: #001a39;
      --muted: #6b7280;
      --muted-light: #9ca3af;
      --bg: #ffffff;
      --soft: #f8fafc;
      --soft-dark: #f1f5f9;
      --radius: 16px;
      --radius-lg: 24px;
      --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
    }

    html, body { width:100%; overflow-x:hidden; }

    body {
      background: var(--bg);
      color: var(--brand);
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.2;
    }

    /* Navbar */
    .navbar {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      transition: var(--transition);
      padding: 1rem 0;
    }

    .navbar.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.5rem;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-link {
      font-weight: 500;
      position: relative;
      padding: 0.5rem 1rem !important;
      transition: var(--transition);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
      transition: var(--transition);
      transform: translateX(-50%);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 80%;
    }

    .btn-accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: #fff;
      border: 0;
      border-radius: var(--radius);
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      transition: var(--transition);
      box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.3);
    }

    .btn-accent:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.4);
      color: #fff;
    }

    .btn-outline-dark {
      border-radius: var(--radius);
      font-weight: 500;
      padding: 0.75rem 1.5rem;
      transition: var(--transition);
    }

    .btn-outline-dark:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .text-accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Hero Section */
    #inicio {
      padding: clamp(80px, 10vw, 160px) 0;
      position: relative;
      overflow: hidden;
    }

    #inicio::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
      z-index: -1;
    }

    .hero-badge {
      display: inline-flex;
      gap: 0.5rem;
      align-items: center;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.1));
      color: var(--accent-dark);
      font-weight: 600;
      font-size: 0.9rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(124, 58, 237, 0.2);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
      70% { box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
      100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
    }

    .hero-title {
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      line-height: 1.1;
      font-weight: 800;
      margin: 1.5rem 0 1rem;
    }

    .hero-sub {
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 600px;
    }

    .hero-img-wrap {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1.5rem;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-img-wrap::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(transparent, rgba(124, 58, 237, 0.1), transparent 30%);
      animation: rotate 10s linear infinite;
      z-index: 0;
    }

    @keyframes rotate {
      100% { transform: rotate(360deg); }
    }

    .hero-img {
      width: 100%;
      height: clamp(280px, 36vw, 560px);
      object-fit: contain;
      border-radius: 12px;
      background: linear-gradient(180deg, #fafafa, #f2f2f2);
      position: relative;
      z-index: 1;
    }

    .badge-soft {
      background: rgba(229, 231, 235, 0.8);
      color: var(--brand);
      border-radius: 999px;
      padding: 0.5rem 1rem;
      font-weight: 600;
      font-size: 0.85rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      transition: var(--transition);
    }

    .badge-soft:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    /* Secciones */
    .section {
      padding: clamp(80px, 10vw, 120px) 0;
      position: relative;
    }

    .section-alt {
      background: var(--soft);
      position: relative;
    }

    .section-alt::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c3aed' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      z-index: 0;
    }

    .section-alt > .container {
      position: relative;
      z-index: 1;
    }

    .section-title {
      font-weight: 800;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 1rem;
    }

    .section-sub {
      color: var(--muted);
      font-size: 1.1rem;
      max-width: 600px;
    }

    .card-modern {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: clamp(1.5rem, 2.5vw, 2rem);
      height: 100%;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }

    .card-modern::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--accent-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .card-modern:hover::before {
      transform: scaleX(1);
    }

    .card-modern:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    /* Por qué elegirnos */
    .why-card .icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.1));
      color: var(--accent-dark);
      font-size: 24px;
      transition: var(--transition);
    }

    .why-card:hover .icon {
      transform: scale(1.1) rotate(5deg);
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: white;
    }

    /* FAQs */
    .accordion-button {
      font-weight: 600;
      padding: 1.25rem 1.5rem;
      border-radius: var(--radius) !important;
      box-shadow: none;
      transition: var(--transition);
    }

    .accordion-button:not(.collapsed) {
      color: var(--accent-dark);
      background: rgba(124, 58, 237, 0.05);
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    }

    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237c3aed' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
      transition: var(--transition);
    }

    .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
    }

    .accordion-body {
      padding: 1.5rem;
      color: var(--muted);
    }

    /* Contacto */
    .contact-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1rem;
      border-radius: var(--radius);
      transition: var(--transition);
    }

    .contact-item:hover {
      background: rgba(124, 58, 237, 0.05);
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.1));
      color: var(--accent-dark);
      font-size: 20px;
      transition: var(--transition);
    }

    .contact-item:hover .contact-icon {
      transform: scale(1.1);
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: white;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: #cbd5e1;
      padding: 3rem 0 1.5rem;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a78bfa' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      z-index: 0;
    }

    footer > .container {
      position: relative;
      z-index: 1;
    }

    footer a {
      color: #e9d5ff;
      text-decoration: none;
      transition: var(--transition);
    }

    footer a:hover {
      color: white;
      text-decoration: none;
    }

    /* Formulario */
    .form-control {
      border-radius: var(--radius);
      padding: 0.75rem 1rem;
      border: 1px solid #e5e7eb;
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }

    /* Utilidades */
    .shadow-soft {
      box-shadow: var(--shadow);
    }

    /* Animaciones de entrada */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
      }
      
      .section {
        padding: clamp(60px, 8vw, 80px) 0;
      }
      
      .ticker-item {
        width: 300px;
      }
      
      .ticker-btn {
        width: 40px;
        height: 40px;
      }
    }
  
    /* === Fix: Toggler icon visible and no horizontal scroll from navbar === */
    .navbar-toggler { border: none; outline: none; }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    /* Avoid transforms causing overflow on mobile */
    img, video, svg { max-width: 100%; height: auto; }
    .container, .container-fluid { overflow-x: clip; }

  
    /* Prevent carousel controls from causing horizontal overflow */
    .carousel { overflow: hidden; }
    .carousel-control-prev, .carousel-control-next { contain: layout paint; }

/* ===== INLINE <style> BLOCK #2 ===== */
/* --- Solo afecta a esta sección --- */
    #quienes .list-item{
      display:grid; grid-template-columns: 32px 1fr; gap:.75rem; align-items:start;
    }
    #quienes .icon{
      width:32px; height:32px; border-radius:50%;
      display:grid; place-items:center;
      background: rgba(0,0,0,.06);
      flex:0 0 32px;
    }
    #quienes .icon svg{ width:18px; height:18px; }
    #quienes .media-wrap{
      border-radius:1rem; background:#fff; padding:.75rem;
      box-shadow:0 10px 30px rgba(0,0,0,.08);
    }
    #quienes .media{
      width:100%; height:auto; object-fit:contain; display:block;
      border-radius:.75rem;
    }
    @media (min-width: 992px){
      #quienes .media{ max-height:520px; }
    }

/* ===== 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 ===== */
.site-footer{
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color:#cbd5e1; position:relative; overflow:hidden;
      padding: 3rem 0 1rem;
    }
    .site-footer::before{
      content:""; position:absolute; inset:0;
      background: radial-gradient(600px 200px at 10% 0%, rgba(124,58,237,.10) 0, transparent 60%),
                  radial-gradient(600px 200px at 90% 100%, rgba(30,64,175,.10) 0, transparent 60%);
      pointer-events:none;
    }
    .site-footer .brand{
      display:flex; align-items:center; gap:.75rem; font-weight:800; letter-spacing:.3px;
      color:#fff; text-decoration:none;
    }
    .site-footer .brand img{ height:40px; border-radius:8px }
    .site-footer .lead{
      color:#94a3b8; margin: .25rem 0 0; font-size:.95rem;
    }
    .site-footer .footer-card{
      background: rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      border-radius:16px; padding:1rem 1.25rem;
    }
    .site-footer h6{
      color:#ffffff; font-size:.9rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:.75rem
    }
    .site-footer a{
      color:#e9d5ff; text-decoration:none; transition:color .2s, transform .2s;
    }
    .site-footer a:hover{ color:#fff; transform: translateY(-1px); }
    .site-footer .footer-links a{
      display:flex; align-items:center; gap:.5rem; padding:.35rem 0;
      color:#cbd5e1;
    }
    .site-footer .footer-links i{ opacity:.75 }
    .site-footer .contact-item{
      display:flex; gap:.75rem; align-items:flex-start; padding:.35rem 0; color:#cbd5e1;
    }
    .site-footer .contact-item i{
      width:28px; height:28px; display:grid; place-items:center;
      border-radius:8px; background:rgba(255,255,255,.06);
    }
    .site-footer .social a{
      width:40px; height:40px; display:inline-grid; place-items:center;
      border-radius:999px; background:rgba(255,255,255,.08); margin-right:.25rem;
    }
    .site-footer .social a:hover{ background:rgba(255,255,255,.18) }
    .site-footer .cta{
      display:flex; gap:.75rem; align-items:center; flex-wrap:wrap;
    }
    .site-footer .btn-wa{
      display:inline-flex; align-items:center; gap:.5rem;
      background: linear-gradient(135deg, #25D366, #128C7E); color:#fff;
      border:0; border-radius:14px; padding:.65rem 1rem; font-weight:600;
      box-shadow:0 10px 20px -8px rgba(37,211,102,.45);
    }
    .site-footer .btn-wa:hover{ filter:brightness(1.05) }
    .site-footer .bottom{
      border-top:1px solid rgba(255,255,255,.08); margin-top:1.5rem; padding-top:1rem;
      color:#9aa7b9; font-size:.9rem;
    }
    .site-footer .mini-nav a{ color:#9aa7b9; margin-left:1rem }
    .site-footer .mini-nav a:hover{ color:#fff }
    .site-footer .to-top{
      position: fixed; right:16px; bottom:16px; z-index:50;
      width:44px; height:44px; border:0; border-radius:999px;
      background: rgba(255,255,255,.12); color:#fff;
      display:none; align-items:center; justify-content:center;
      backdrop-filter: blur(6px);
    }
    .site-footer .to-top.show{ display:flex }
    @media (max-width: 767.98px){
      .site-footer{ padding-top:2.25rem }
      .site-footer .cta{ justify-content:flex-start }
    }

/* ===== INLINE <style> BLOCK #5 ===== */
:root{
    --wa:#25D366; --wa-dark:#128C7E; --wa-darker:#075E54;
    --dark-bg:#0b0f18; --darker-bg:#0a1324;
    --light-text:#ffffff; --muted-text:rgba(255,255,255,.7);
  }

  /* 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 */
  .wa-float{ position:fixed; right:18px; bottom:18px; z-index:9999; font-family:inherit; }
  .wa-btn{
    background:linear-gradient(135deg,var(--wa),var(--wa-dark));
    color:#fff; border:0; width:60px; height:60px; border-radius:50%;
    display:grid; place-items:center; box-shadow:0 10px 30px rgba(0,0,0,.25);
    cursor:pointer; transition:transform .3s, box-shadow .3s, background .3s; position:relative; overflow:hidden;
    z-index:9999;
  }
  .wa-btn::after{ content:""; position:absolute; inset:0;
    background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
    opacity:0; transition:opacity .3s;
  }
  .wa-btn:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 14px 36px rgba(0,0,0,.35); }
  .wa-btn:hover::after{ opacity:1; }

  .wa-card{
    position:absolute; right:0; bottom:74px; width:min(360px,92vw);
    background:var(--dark-bg); color:var(--light-text); border-radius:18px; overflow:hidden;
    box-shadow:0 18px 60px rgba(0,0,0,.5); border:1px solid rgba(255,255,255,.08);
    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;
    background:linear-gradient(180deg,#0d162c,var(--darker-bg)); border-bottom:1px solid rgba(255,255,255,.06);
  }
  .wa-avatar{ width:40px; height:40px; border-radius:8px; background:#0e1a33;
    display:grid; place-items:center; border:1px solid rgba(255,255,255,.08); overflow:hidden; }
  .wa-title{ font-weight:700; font-size:1.05rem; }
  .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:#fff; 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(255,255,255,.1); }

  .wa-body{ padding:12px 14px; max-height:40vh; overflow:auto; background:var(--dark-bg);
    display:flex; flex-direction:column; gap:8px; }
  .wa-bubble{ max-width:88%; padding:10px 12px; border-radius:14px; line-height:1.35; box-shadow:0 4px 14px rgba(0,0,0,.25); animation:fadeIn .25s ease; }
  @keyframes fadeIn{ from{opacity:0; transform:translateY(5px)} to{opacity:1; transform:none} }
  .wa-bot{ background:#0c1428; border:1px solid rgba(255,255,255,.06); align-self:flex-start; border-bottom-left-radius:4px; }
  .wa-user{ background:var(--wa-darker); align-self:flex-end; border-bottom-right-radius:4px; }

  .wa-compose{ display:grid; grid-template-columns:1fr auto; gap:8px; padding:10px; background:var(--dark-bg); border-top:1px solid rgba(255,255,255,.08); }
  .wa-compose textarea{
    resize:none; border-radius:12px; padding:10px 12px; border:1px solid rgba(255,255,255,.12);
    background:#0a1324; color:var(--light-text); outline:none; min-height:44px; font-family:inherit; transition:.2s;
  }
  .wa-compose textarea:focus{ border-color:var(--wa); box-shadow:0 0 0 2px rgba(37,211,102,.15); }
  .wa-send{ background:var(--wa); color:#0b1220; border:0; border-radius:12px; padding:0 16px; font-weight:700; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:.2s; }
  .wa-send:hover{ background:var(--wa-dark); transform:scale(1.05); }

  /* Scrollbar */
  .wa-body::-webkit-scrollbar{ width:6px; }
  .wa-body::-webkit-scrollbar-track{ background:rgba(255,255,255,.05); border-radius:3px; }
  .wa-body::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.2); border-radius:3px; }
  .wa-body::-webkit-scrollbar-thumb:hover{ background:rgba(255,255,255,.3); }

  /* Responsive */
  @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; }
  }

