    /* General Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-green: #00ff88;
      --dark-green: #00cc6a;
      --neon-green: #00ff88;
      --dark-bg: #0a0a0a;
      --card-bg: #111111;
      --border-gray: #1a1a1a;
      --text-primary: #ffffff;
      --text-secondary: #a0a0a0;
      --gradient-primary: linear-gradient(135deg, #00ff88, #00cc6a);
      --gradient-dark: linear-gradient(135deg, #0a0a0a, #111111);
      --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, rgba(0, 255, 136, 0.1) 100%);
      --neon-shadow: 0 0 10px var(--neon-green), 0 0 20px rgba(0, 255, 136, 0.3);
    }

    body {
      font-family: 'Inter', 'Roboto', sans-serif;
      color: var(--text-primary);
      background: radial-gradient(ellipse at 60% 40%, rgba(0,255,136,0.18) 0%, rgba(10,10,10,0.95) 60%),
                  radial-gradient(ellipse at 30% 70%, rgba(0,255,136,0.10) 0%, rgba(10,10,10,0.98) 70%),
                  linear-gradient(135deg, #0a0a0a 60%, #00ff88 100%, #0a0a0a 100%);
      background-color: #0a0a0a;
      background-blend-mode: lighten, lighten, normal;
      overflow-x: hidden;
      line-height: 1.6;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }

    a {
      text-decoration: none;
      color: var(--primary-green);
      transition: all 0.3s ease;
    }

    a:hover {
      color: var(--neon-green);
      text-shadow: 0 0 10px var(--neon-green);
    }

    h1, h2, h3 {
      font-weight: 700;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* Header */
    header {
      background: #0a0a0a;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-gray);
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    header nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header nav .logo h1 {
      color: var(--primary-green);
      font-size: 1.8rem;
      text-shadow: 0 0 20px var(--primary-green);
    }

    header nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    header nav ul li a {
      font-size: 1rem;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
    }

    header nav ul li a:hover {
      background-color: rgba(0, 255, 136, 0.1);
      box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }

    /* Responsive Menu */
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--primary-green);
    }

    @media (max-width: 768px) {
      header nav ul {
        display: none;
        flex-direction: column;
        background: var(--card-bg);
        border: 1px solid var(--border-gray);
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      }

      header nav ul.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

    /* Hero Section */
    .hero {
      background: var(--gradient-dark);
      color: var(--text-primary);
      text-align: center;
      padding: 150px 20px;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
      position: relative;
      z-index: 1;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      color: var(--text-secondary);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }

    .hero button {
      background: var(--gradient-primary);
      border: none;
      padding: 16px 32px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      border-radius: 12px;
      color: var(--dark-bg);
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
      position: relative;
      z-index: 1;
    }

    .hero button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
    }

    @media (max-width: 768px) {
      .hero {
        padding: 100px 20px;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
      }
    }

    /* Services and Products Sections */
    .services {
      padding: 100px 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(0,255,136,0.18) 0%, rgba(10,10,10,0.95) 60%),
                  radial-gradient(ellipse at 30% 70%, rgba(0,255,136,0.10) 0%, rgba(10,10,10,0.98) 70%),
                  linear-gradient(135deg, #0a0a0a 60%, #00ff88 100%, #0a0a0a 100%);
      background-color: #0a0a0a;
      background-blend-mode: lighten, lighten, normal;
    }

    .services:nth-of-type(odd) {
      background: var(--gradient-dark);
    }

    .services h2 {
      text-align: center;
      margin-bottom: 60px;
      font-size: 2.8rem;
      color: var(--text-primary);
      position: relative;
    }

    .services h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .card {
      background: var(--card-bg);
      border: 1px solid var(--border-gray);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .card:hover::before {
      opacity: 1;
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: var(--primary-green);
      box-shadow: var(--neon-shadow);
    }

    .card i {
      font-size: 3rem;
      color: var(--primary-green);
      margin-bottom: 24px;
      transition: all 0.3s ease;
    }

    .card:hover i {
      transform: scale(1.1);
      text-shadow: 0 0 20px var(--primary-green);
    }

    .card h3 {
      font-size: 1.4rem;
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .card p {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .card .demo-button {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: var(--gradient-primary);
      color: var(--dark-bg);
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .card .demo-button:hover {
      transform: translateY(-2px);
      box-shadow: var(--neon-shadow);
    }

    @media (max-width: 768px) {
      .services h2 {
        font-size: 2.2rem;
      }

      .cards {
        grid-template-columns: 1fr;
      }

      .card {
        padding: 30px 20px;
      }

      .card i {
        font-size: 2.5rem;
      }
    }

    /* Process Section */
    .process {
      padding: 100px 0;
      background: var(--gradient-dark);
    }

    .process h2 {
      text-align: center;
      margin-bottom: 60px;
      font-size: 2.8rem;
      color: var(--text-primary);
      position: relative;
    }

    .process h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .step {
      background: var(--card-bg);
      border: 1px solid var(--border-gray);
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
    }

    .step::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .step:hover::before {
      opacity: 1;
    }

    .step:hover {
      transform: translateY(-8px);
      border-color: var(--primary-green);
      box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    }

    .step h3 {
      font-size: 1.4rem;
      margin-bottom: 16px;
      color: var(--primary-green);
    }

    .step p {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .process h2 {
        font-size: 2.2rem;
      }

      .step {
        padding: 30px 20px;
      }
    }

    /* FAQ Section */
    .faq {
      padding: 100px 0;
      background: radial-gradient(ellipse at 60% 40%, rgba(0,255,136,0.18) 0%, rgba(10,10,10,0.95) 60%),
                  radial-gradient(ellipse at 30% 70%, rgba(0,255,136,0.10) 0%, rgba(10,10,10,0.98) 70%),
                  linear-gradient(135deg, #0a0a0a 60%, #00ff88 100%, #0a0a0a 100%);
      background-color: #0a0a0a;
      background-blend-mode: lighten, lighten, normal;
    }

    .faq h2 {
      text-align: center;
      margin-bottom: 60px;
      font-size: 2.8rem;
      color: var(--text-primary);
      position: relative;
    }

    .faq h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    .faq-item {
      background: var(--card-bg);
      border: 1px solid var(--border-gray);
      border-radius: 16px;
      padding: 30px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: var(--primary-green);
      box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
    }

    .faq-item h4 {
      color: var(--primary-green);
      margin-bottom: 12px;
      font-size: 1.2rem;
    }

    .faq-item p {
      color: var(--text-secondary);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .faq h2 {
        font-size: 2.2rem;
      }

      .faq-item {
        padding: 20px;
      }
    }

    /* CTA Section */
    .cta {
      background: var(--gradient-dark);
      color: var(--text-primary);
      text-align: center;
      padding: 100px 20px;
      position: relative;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta h2 {
      margin-bottom: 40px;
      font-size: 2.5rem;
      position: relative;
      z-index: 1;
    }

    .cta button {
      background: var(--gradient-primary);
      border: none;
      padding: 16px 32px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      border-radius: 12px;
      color: var(--dark-bg);
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
      position: relative;
      z-index: 1;
    }

    .cta button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
    }

    @media (max-width: 768px) {
      .cta h2 {
        font-size: 2rem;
      }
    }

    /* Footer */
    footer {
      background: #0a0a0a;
      border-top: 1px solid var(--border-gray);
      color: var(--text-primary);
      text-align: center;
      padding: 40px 0;
    }

    footer .container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    footer .footer-links a {
      color: var(--text-secondary);
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    footer .footer-links a:hover {
      color: var(--primary-green);
    }

    footer .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    footer .social-links a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-secondary);
      transition: all 0.3s ease;
    }

    footer .social-links a:hover {
      color: var(--primary-green);
      text-shadow: 0 0 10px var(--primary-green);
    }

    footer .social-links i {
      font-size: 1.2rem;
    }

    footer .copyright {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      footer .footer-links,
      footer .social-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        text-align: center;
      }
      footer .footer-links a,
      footer .social-links a {
        justify-content: center;
        align-items: center;
        display: flex;
        gap: 8px;
        font-size: 1.1rem;
      }
      footer .copyright {
        text-align: center;
        margin-top: 16px;
      }
    }

    /* Para el contenido de la política */
    .privacy-container {
      max-width: 800px;
      margin: 40px auto;
      padding: 40px;
      background: var(--card-bg);
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-gray);
    }

    .privacy-container h1 {
      text-align: center;
      margin-bottom: 40px;
      color: var(--primary-green);
      font-size: 2.5rem;
      text-shadow: var(--neon-shadow);
    }

    .policy-section {
      margin-bottom: 40px;
      padding: 20px;
      background: rgba(17, 17, 17, 0.5);
      border-radius: 12px;
      border: 1px solid var(--border-gray);
      transition: all 0.3s ease;
    }

    .policy-section:hover {
      border-color: var(--primary-green);
      box-shadow: var(--neon-shadow);
    }

    .policy-section h2 {
      color: var(--primary-green);
      margin-bottom: 20px;
      font-size: 1.5rem;
      text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }

    .policy-section p {
      color: var(--text-secondary);
      line-height: 1.8;
      text-align: justify;
      margin-bottom: 15px;
    }

    .policy-section ul li {
      margin-bottom: 14px;
      line-height: 1.7;
    }

    .policy-section p {
      margin-bottom: 18px;
    }

    @media (max-width: 768px) {
      .privacy-container {
        padding: 50px 20px;
      }
      .policy-section ul li {
        margin-bottom: 18px;
        line-height: 1.9;
      }
      .policy-section p {
        margin-bottom: 22px;
      }
    }

    /*--------------------------------------------------------------
    # Sección de Tabs (IA Generativa)
    --------------------------------------------------------------*/

    .tabsnew {
      margin: 40px 0;
    }

    .cmp-tabs {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .cmp-tabs__tablist {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      padding: 0;
      margin: 0;
      border-bottom: 2px solid var(--border-gray);
    }

    .cmp-tabs__tablist li {
      position: relative;
    }

    .cmp-tabs__tablist a {
      display: block;
      padding: 16px 24px;
      font-size: 1.1rem;
      color: var(--text-secondary);
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 8px 8px 0 0;
      background: transparent;
    }

    .cmp-tabs__tablist a:hover,
    .cmp-tabs__tablist .active a {
      color: var(--primary-green);
      background-color: var(--card-bg);
      border-bottom: 2px solid var(--primary-green);
      box-shadow: none;
    }

    .cmp-tabs__tabpanel--active,
    .tab-pane {
      background: var(--card-bg);
      border: 1px solid var(--border-gray);
      border-radius: 12px;
      padding: 30px;
      color: var(--text-secondary);
      animation: fadeIn 0.5s ease-in-out;
    }

    /* Columnas responsivas dentro de tabs */
    .parsys_column.pwccol2-longform {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .pwccol2-longform-c0,
    .pwccol2-longform-c1 {
      flex: 1 1 45%;
      min-width: 300px;
    }

    .text-component h4 {
      color: var(--primary-green);
      margin-bottom: 20px;
      font-size: 1.4rem;
    }

    .text-component p {
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .text-component ul {
      padding-left: 20px;
      list-style: disc;
    }

    .text-component ul li {
      margin-bottom: 8px;
      color: var(--text-secondary);
    }

    .asset-sharing-component img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
      transition: transform 0.3s ease;
    }

    .asset-sharing-component img:hover {
      transform: scale(1.02);
    }

    /*--------------------------------------------------------------
    # Animaciones
    --------------------------------------------------------------*/
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /*--------------------------------------------------------------
    # Responsive
    --------------------------------------------------------------*/
    @media (max-width: 768px) {
      .parsys_column.pwccol2-longform {
        flex-direction: column;
      }

      .pwccol2-longform-c0,
      .pwccol2-longform-c1 {
        flex: 1 1 100%;
      }

      .cmp-tabs__tablist a {
        font-size: 1rem;
        padding: 12px 16px;
      }

      .text-component h4 {
        font-size: 1.2rem;
      }

      .text-component p {
        font-size: 0.95rem;
      }
    }

    /*--------------------------------------------------------------
    # Tabs - Visibilidad por defecto
    --------------------------------------------------------------*/

    .tab-content > .tab-pane {
      display: none;
    }

    .tab-content > .tab-pane.active {
      display: block;
    }

    .section-title {
      text-align: center;
      font-size: 2.8rem;
      color: var(--text-primary);
      margin-bottom: 60px;
      position: relative;
      font-family: 'Inter', 'Roboto', sans-serif;
      font-weight: 700;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    .cards-align {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: stretch;
    }
    .cards-align .card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      min-width: 280px;
      flex: 1 1 300px;
      max-width: 350px;
    }
    .cards-align .card h3 {
      margin-top: 16px;
      margin-bottom: 16px;
      font-size: 1.4rem;
      text-align: center;
    }
    .cards-align .card p {
      flex: 1;
      margin-bottom: 24px;
      text-align: center;
    }
    .cards-align .demo-button {
      margin-top: auto;
    }

    main {
      background: radial-gradient(ellipse at 60% 40%, rgba(0,255,136,0.18) 0%, rgba(10,10,10,0.95) 60%),
                  radial-gradient(ellipse at 30% 70%, rgba(0,255,136,0.10) 0%, rgba(10,10,10,0.98) 70%),
                  linear-gradient(135deg, #0a0a0a 60%, #00ff88 100%, #0a0a0a 100%);
      background-color: #0a0a0a;
      background-blend-mode: lighten, lighten, normal;
    }

    .privacy-container, .policy-section, .privacy-container h1, .policy-section h2, .policy-section p, .policy-section ul, .policy-section li {
      font-family: 'Inter', 'Roboto', sans-serif !important;
      color: var(--text-primary) !important;
    }

    Chat Widget Styles

    :root {
      --primary-green: #00ff88;
      --dark-green: #00cc6a;
      --neon-green: #00ff88;
      --dark-bg: #0a0a0a;
      --card-bg: #111111;
      --border-gray: #1a1a1a;
      --text-primary: #ffffff;
      --text-secondary: #a0a0a0;
      --gradient-primary: linear-gradient(135deg, #00ff88, #00cc6a);
      --gradient-dark: linear-gradient(135deg, #0a0a0a, #111111);
      --neon-shadow: 0 0 10px var(--neon-green), 0 0 20px rgba(0, 255, 136, 0.3);
    }

    .chat-widget {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      font-family: 'Inter', sans-serif;
    }

    .chat-toggle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gradient-primary);
      border: none;
      cursor: pointer;
      box-shadow: var(--neon-shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .chat-toggle:hover {
      transform: scale(1.1);
      box-shadow: 0 0 20px var(--neon-green), 0 0 40px rgba(0, 255, 136, 0.4);
    }

    .chat-toggle svg {
      width: 28px;
      height: 28px;
      fill: var(--dark-bg);
    }

    .chat-window {
      position: absolute;
      bottom: 90px;
      right: 0;
      width: 370px;
      height: 600px;
      background: var(--card-bg);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--neon-shadow);
      display: none;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid var(--border-gray);
      backdrop-filter: blur(10px);
    }

    .chat-window.active {
      display: flex;
      animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .chat-header {
      background: var(--dark-bg);
      color: var(--text-primary);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border-gray);
    }

    .chat-header h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: var(--primary-green);
      text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }

    .chat-header .status {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
    }

    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
      background: var(--dark-bg);
    }

    .message {
      margin-bottom: 22px; /* Más separación entre burbujas */
      display: flex;
      align-items: flex-end;
      animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(5px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .message.user {
      justify-content: flex-end;
    }

    .message-content {
      max-width: 85%;
      padding: 16px 20px; /* Más padding para burbuja */
      border-radius: 20px;
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 0; /* Elimina margen entre <p> internos, si los hay */
      box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    }

    .message-content p {
      margin: 0;
    }

    .message.bot .message-content {
      background: var(--card-bg);
      color: var(--text-primary);
      border: 1px solid var(--border-gray);
      border-bottom-left-radius: 5px;
    }

    .message.user .message-content {
      background: var(--gradient-primary);
      color: var(--dark-bg);
      border-bottom-right-radius: 5px;
      font-weight: 500;
    }
    
    .quick-suggestions {
      padding: 0 20px 20px 20px;
      background: var(--dark-bg);
      display: flex;
      flex-direction: column;
      gap: 8px;
      border-top: 1px solid var(--border-gray);
    }

    .quick-suggestions button {
      background-color: var(--card-bg);
      border: 1px solid var(--border-gray);
      color: var(--text-secondary);
      padding: 10px 15px;
      border-radius: 18px;
      cursor: pointer;
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
      width: 100%;
    }

    .quick-suggestions button:hover {
      background-color: var(--card-bg);
      border-color: var(--primary-green);
      color: var(--primary-green);
      transform: translateY(-1px);
      box-shadow: var(--neon-shadow);
    }

    .typing-indicator {
      display: none;
      padding: 0 20px 10px 20px;
      font-size: 14px;
      color: var(--primary-green);
      font-style: italic;
      background: var(--dark-bg);
      text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }

    .typing-indicator.active {
      display: block;
    }

    .chat-input {
      border-top: 1px solid var(--border-gray);
      padding: 12px 20px;
      background: var(--dark-bg);
    }

    .input-group {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .input-group input {
      flex: 1;
      padding: 12px 18px;
      border: 1px solid var(--border-gray);
      border-radius: 24px;
      outline: none;
      font-size: 15px;
      font-family: 'Inter', sans-serif;
      background: var(--card-bg);
      color: var(--text-primary);
      transition: all 0.3s ease;
    }

    .input-group input:focus {
      border-color: var(--primary-green);
      box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    }

    .input-group input::placeholder {
      color: var(--text-secondary);
    }

    .send-button {
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      background: var(--gradient-primary);
      color: var(--dark-bg);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: var(--neon-shadow);
    }
    
    .send-button svg {
      width: 20px;
      height: 20px;
    }

    .send-button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px var(--neon-green), 0 0 40px rgba(0, 255, 136, 0.4);
    }

    .send-button:disabled {
      background: var(--border-gray);
      box-shadow: none;
      cursor: not-allowed;
      transform: none;
    }
    
    .chat-footer {
      padding: 10px;
      text-align: center;
      font-size: 12px;
      color: var(--primary-green);
      background: var(--dark-bg);
      border-top: 1px solid var(--border-gray);
      text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }

    /* Scrollbar personalizado */
    .chat-messages::-webkit-scrollbar {
      width: 8px;
    }

    .chat-messages::-webkit-scrollbar-track {
      background: var(--dark-bg);
    }

    .chat-messages::-webkit-scrollbar-thumb {
      background: var(--border-gray);
      border-radius: 4px;
    }

    .chat-messages::-webkit-scrollbar-thumb:hover {
      background: var(--primary-green);
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      .chat-window {
        width: 90vw;
        max-width: 370px;
        height: 80vh;
        max-height: 600px;
        bottom: 80px;
        right: 5vw;
        border-radius: 16px;
        border: 1px solid var(--border-gray);
      }

      .chat-widget {
        bottom: 20px;
        right: 20px;
      }

      .chat-toggle {
        width: 50px;
        height: 50px;
      }

      .chat-toggle svg {
        width: 24px;
        height: 24px;
      }

      .message-content {
        max-width: 90%;
        font-size: 14px;
        padding: 10px 14px;
      }

      .quick-suggestions button {
        font-size: 12px;
        padding: 8px 12px;
      }

      .input-group input {
        font-size: 14px;
        padding: 10px 16px;
      }

      .send-button {
        width: 40px;
        height: 40px;
      }

      .send-button svg {
        width: 18px;
        height: 18px;
      }
    }

    @media (max-width: 480px) {
      .chat-window {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 340px;
        max-width: 98vw;
        height: 420px;
        max-height: 80vh;
        border-radius: 14px;
        z-index: 9999;
      }
      .chat-header h3 {
        font-size: 15px;
      }
      .chat-header .status {
        font-size: 11px;
      }
      .chat-messages {
        padding: 10px 8px;
      }
      .message-content {
        max-width: 85%;
        font-size: 13px;
        padding: 8px 10px;
      }
      .quick-suggestions button {
        font-size: 11px;
        padding: 6px 8px;
        margin-bottom: 4px;
      }
      .input-group input {
        font-size: 13px;
        padding: 8px 10px;
      }
      .send-button {
        width: 34px;
        height: 34px;
      }
      .send-button svg {
        width: 15px;
        height: 15px;
      }
      .typing-indicator {
        font-size: 11px;
        padding: 6px 10px;
      }
      .chat-footer {
        font-size: 10px;
        padding: 6px 0;
      }
    }
    @media (max-width: 370px) {
      .chat-window {
        width: 98vw;
        min-width: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }
    }
  