    html { scroll-behavior: smooth; }
    body { font-family: Inter, ui-sans-serif, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
    [x-cloak] { display: none !important; }
    .text-gradient {
      background: linear-gradient(135deg, #ffc933 0%, #ff6a00 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-glow {
      background-color: #f3f4f6;
      background-image:
        radial-gradient(ellipse 70% 55% at 75% 20%, rgba(255,106,0,0.12), transparent 65%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255,201,51,0.08), transparent 60%),
        radial-gradient(circle, rgba(156, 163, 175, 0.45) 1px, transparent 1px);
      background-size: auto, auto, 14px 14px;
    }
    .social-proof-band {
      background: linear-gradient(135deg, #ff6a00 0%, #ffc933 55%, #ff8533 100%);
      padding-top: 0.375rem;
      padding-bottom: 0.375rem;
    }
    @media (min-width: 640px) {
      .social-proof-band {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
      }
    }
    .social-proof-band__title {
      margin-bottom: 0.25rem;
      line-height: 1.1;
    }
    .social-marquee-logo {
      height: 2.375rem;
      width: auto;
      max-width: 8rem;
      object-fit: contain;
      opacity: 1;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
    }
    .social-marquee-logo--highlight {
      height: 2.75rem;
      max-width: 9.5rem;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
    }
    .social-marquee-logo--wide {
      max-width: 11rem;
    }
    .social-marquee-logo--top {
      height: 2.5rem;
      max-width: 9.5rem;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
    }
    .social-marquee-logo--xl {
      height: 4.25rem;
      max-width: 14rem;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
    }
    @media (min-width: 640px) {
      .social-marquee-logo {
        height: 2.75rem;
        max-width: 9.5rem;
      }
      .social-marquee-logo--highlight {
        height: 3.125rem;
        max-width: 11rem;
      }
      .social-marquee-logo--wide {
        max-width: 13rem;
      }
      .social-marquee-logo--top {
        height: 2.875rem;
        max-width: 10.5rem;
      }
      .social-marquee-logo--xl {
        height: 5rem;
        max-width: 17rem;
      }
    }
    .marquee-track {
      display: flex;
      width: max-content;
      align-items: center;
      animation: marquee 32s linear infinite;
      will-change: transform;
    }
    .marquee-set {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      gap: 3.5rem;
      padding-right: 3.5rem;
    }
    @media (min-width: 640px) {
      .marquee-set { gap: 4rem; padding-right: 4rem; }
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-100% / var(--marquee-copies, 4))); }
    }
    .feature-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(17,24,39,0.1); }
    .testimonial-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      border-radius: 1rem;
      border: 1px solid #e8eaed;
      background: #fff;
      padding: 1.25rem;
      box-shadow: 0 8px 24px rgba(17,24,39,0.05);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(17,24,39,0.08);
    }
    .testimonial-avatar {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }
    .testimonial-stars { color: #fbbf24; letter-spacing: 0.05em; }
    .testimonial-quote {
      flex: 1;
      margin-top: 0.875rem;
      font-size: 0.875rem;
      line-height: 1.55;
      color: #374151;
    }
    .testimonial-google {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 1rem;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #9ca3af;
    }
    .testimonial-google-icon {
      width: 0.875rem;
      height: 0.875rem;
      flex-shrink: 0;
    }
    .testimonial-carousel-viewport {
      overflow: hidden;
      padding: 0.25rem 0;
    }
    .testimonial-carousel-track {
      display: flex;
      align-items: stretch;
      transition: transform 0.55s ease;
      will-change: transform;
    }
    .testimonial-carousel-item {
      flex: 0 0 var(--item-width, 100%);
      padding: 0 0.5rem;
      box-sizing: border-box;
    }
    .testimonial-carousel-slide {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      flex: 0 0 100%;
      min-width: 0;
      padding: 0 0.25rem;
      box-sizing: border-box;
    }
    @media (min-width: 1024px) {
      .testimonial-carousel-slide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    .testimonial-carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }
    .testimonial-carousel-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 9999px;
      border: 1px solid #e8eaed;
      background: #fff;
      color: #374151;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .testimonial-carousel-btn:hover {
      border-color: #ff6a00;
      color: #ff6a00;
      background: #fff4eb;
    }
    .testimonial-carousel-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 9999px;
      background: #d1d5db;
      transition: width 0.2s, background 0.2s;
    }
    .testimonial-carousel-dot.is-active {
      width: 1.25rem;
      background: #ff6a00;
    }
    .step-num { font-size: 3.5rem; font-weight: 900; line-height: 1; color: rgba(255,106,0,0.15); }
    .area-tab.active { background: #111827; color: #fff; }
    .hero-channels {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 1.5rem 0;
    }
    .hero-channels::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 22rem;
      height: 22rem;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(255,106,0,0.09) 0%, rgba(255,201,51,0.05) 40%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-channels-grid {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.875rem;
    }
    @media (min-width: 640px) {
      .hero-channels-grid { gap: 1.125rem; }
    }
    .channel-col {
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
    }
    @media (min-width: 640px) {
      .channel-col { gap: 1.125rem; }
    }
    .channel-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 6rem;
      min-height: 6.5rem;
      padding: 1rem 0.625rem;
      border-radius: 1.125rem;
      background: #fff;
      border: 1px solid rgba(232,234,237,0.9);
      box-shadow: 0 10px 28px rgba(17,24,39,0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      animation: channel-float 6s ease-in-out infinite;
    }
    @media (min-width: 640px) {
      .channel-card {
        width: 7.25rem;
        min-height: 7.25rem;
        padding: 1.125rem 0.75rem;
      }
    }
    .channel-card:hover {
      animation-play-state: paused;
      transform: translateY(-6px) scale(1.04);
      box-shadow: 0 18px 40px rgba(17,24,39,0.14);
    }
    .channel-card--whatsapp  { animation-delay: 0s; }
    .channel-card--messenger { animation-delay: 1.6s; }
    .channel-card--webchat   { animation-delay: 0.8s; }
    .channel-card--google    { animation-delay: 2.4s; }
    .channel-card--meli      { animation-delay: 1.2s; }
    .channel-card--instagram { animation-delay: 0.4s; }
    .channel-card--telegram  { animation-delay: 2s; }
    @keyframes channel-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-9px); }
    }
    .channel-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 0.875rem;
      color: #fff;
      flex-shrink: 0;
    }
    .channel-icon svg,
    .channel-icon img {
      width: 1.5rem;
      height: 1.5rem;
      object-fit: contain;
      display: block;
    }
    .channel-label {
      font-size: 0.75rem;
      font-weight: 700;
      line-height: 1.25;
      text-align: center;
      color: #374151;
    }
    .channel-soon {
      font-size: 0.5625rem;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.03em;
      text-align: center;
      color: #9ca3af;
      margin-top: -0.125rem;
    }
    @media (min-width: 640px) {
      .channel-label { font-size: 0.8125rem; }
      .channel-soon { font-size: 0.625rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      .channel-card { animation: none; }
    }
    .oba-bot-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 28rem;
      margin-inline: auto;
      padding: 3.5rem 0.5rem;
    }
    @media (min-width: 640px) {
      .oba-bot-visual {
        max-width: 32rem;
        padding: 4rem 1rem;
      }
    }
    @media (min-width: 1024px) {
      .oba-bot-visual {
        max-width: 36rem;
        padding: 3rem 2rem;
      }
    }
    .oba-bot-visual__phone {
      position: relative;
      z-index: 2;
    }
    .oba-bot-tag {
      position: absolute;
      z-index: 3;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      max-width: 9.5rem;
      padding: 0.625rem 0.75rem;
      border-radius: 0.875rem;
      border: 1px solid rgba(232, 234, 237, 0.95);
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 12px 32px rgba(17, 24, 39, 0.1);
      backdrop-filter: blur(6px);
      animation: oba-tag-float 5.5s ease-in-out infinite;
    }
    .oba-bot-tag i {
      flex-shrink: 0;
      margin-top: 0.1rem;
    }
    .oba-bot-tag span {
      font-size: 0.6875rem;
      font-weight: 600;
      line-height: 1.35;
      color: #374151;
    }
    @media (min-width: 640px) {
      .oba-bot-tag {
        max-width: 11rem;
        padding: 0.75rem 0.875rem;
      }
      .oba-bot-tag span { font-size: 0.75rem; }
    }
    .oba-bot-tag--1 { top: 0; left: 0; animation-delay: 0s; }
    .oba-bot-tag--2 { top: 6%; right: -2%; animation-delay: 1.2s; }
    .oba-bot-tag--3 { bottom: 8%; left: -4%; max-width: 12rem; animation-delay: 2.4s; }
    .oba-bot-tag--4 { bottom: 0; right: 0; max-width: 11.5rem; animation-delay: 0.6s; }
    @media (min-width: 640px) {
      .oba-bot-tag--1 { top: 2%; left: 2%; }
      .oba-bot-tag--2 { top: 8%; right: 0; }
      .oba-bot-tag--3 { bottom: 10%; left: 0; max-width: 13rem; }
      .oba-bot-tag--4 { bottom: 2%; right: 2%; max-width: 12.5rem; }
    }
    @keyframes oba-tag-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .oba-bot-tag { animation: none; }
    }
