/* =========================================================
   SLOTIO LANDING - estilos especificos (colores Intnobyte)
   ========================================================= */

.slotio-section { position: relative; overflow: hidden; }
.slotio-alt-bg { background: var(--bg1); }

.slotio-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--theme);
  border-radius: 100px;
  color: var(--theme);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(96, 253, 252, 0.15);
}

.slotio-heading {
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
}

.slotio-sub {
  color: var(--pra-clr);
  font-size: 18px;
  line-height: 1.6;
}

.slotio-grad-text {
  background: linear-gradient(135deg, #17c9c2, var(--theme));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.slotio-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, #17c9c2, var(--theme));
  color: #051415;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.35s ease;
  box-shadow: 0 0 22px rgba(96, 253, 252, 0.25);
  white-space: nowrap;
}
.slotio-btn-solid:hover {
  color: #051415;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(96, 253, 252, 0.55);
}
.slotio-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid var(--border1);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.35s ease;
  white-space: nowrap;
}
.slotio-btn-outline:hover {
  border-color: var(--theme);
  color: var(--theme);
  box-shadow: 0 0 20px rgba(96, 253, 252, 0.25);
}

/* ===== HERO ===== */
.slotio-hero {
  padding-top: 220px;
  padding-bottom: 120px;
  background:
    radial-gradient(700px 400px at 15% 10%, rgba(96,253,252,0.10), transparent 60%),
    radial-gradient(600px 500px at 90% 30%, rgba(23,201,194,0.12), transparent 60%),
    var(--bg2);
}
.slotio-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 48px;
}
.slotio-stat h3 {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}
.slotio-stat span {
  color: var(--pra-clr);
  font-size: 14px;
}

/* Chat mockup */
.slotio-chat {
  background: var(--bg1);
  border: 1px solid var(--border1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(96, 253, 252, 0.12);
  max-width: 420px;
  margin-left: auto;
}
.slotio-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border1);
}
.slotio-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #17c9c2, var(--theme));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #051415;
  font-weight: 700;
}
.slotio-chat-head strong { color: var(--white); font-size: 15px; display:block; }
.slotio-chat-head small { color: #3ee6a8; font-size: 12px; }
.slotio-chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.slotio-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 85%;
}
.slotio-bubble-out {
  background: linear-gradient(135deg, #17c9c2, var(--theme));
  color: #051415;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 600;
}
.slotio-bubble-in {
  background: var(--bg2);
  border: 1px solid var(--border1);
  color: var(--dd-clr);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

/* ===== TICKER ===== */
.slotio-ticker-wrap {
  background: var(--bg1);
  border-top: 1px solid var(--border1);
  border-bottom: 1px solid var(--border1);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.slotio-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  animation: slotioMarquee 28s linear infinite;
}
.slotio-ticker-track span {
  color: var(--pra-clr);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.slotio-ticker-track span b { color: var(--theme); font-weight: 600; }
.slotio-ticker-track span::after { content: "\2022"; color: var(--theme); margin-left: 14px; }
@keyframes slotioMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PROBLEM CARDS ===== */
.slotio-problem-card {
  background: var(--bg1);
  border: 1px solid var(--border1);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  transition: all 0.35s ease;
}
.slotio-problem-card:hover {
  border-color: var(--theme);
  box-shadow: 0 0 26px rgba(96, 253, 252, 0.18);
  transform: translateY(-4px);
}
.slotio-problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(96, 253, 252, 0.1);
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.slotio-problem-card h4 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.slotio-problem-card p { color: var(--pra-clr); font-size: 15px; margin: 0; }

.slotio-noweb-banner {
  background: var(--bg1);
  border: 1px solid var(--theme);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 0 30px rgba(96, 253, 252, 0.1);
}
.slotio-noweb-banner h4 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.slotio-noweb-banner p { color: var(--pra-clr); margin: 0; max-width: 560px; }

/* ===== STEPS ===== */
.slotio-steps { display: flex; justify-content: space-between; gap: 20px; position: relative; margin: 60px 0 50px; }
.slotio-steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border1);
  z-index: 0;
}
.slotio-step { position: relative; z-index: 1; flex: 1; text-align: center; padding: 0 16px; }
.slotio-step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg1);
  border: 1px solid var(--border1);
  color: var(--theme);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  transition: all 0.35s ease;
}
.slotio-step:hover .slotio-step-num {
  background: linear-gradient(135deg, #17c9c2, var(--theme));
  color: #051415;
  box-shadow: 0 0 24px rgba(96, 253, 252, 0.45);
}
.slotio-step h4 { color: var(--white); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.slotio-step p { color: var(--pra-clr); font-size: 15px; max-width: 280px; margin: 0 auto; }

/* ===== FEATURES ===== */
.slotio-feature-card {
  background: var(--bg2);
  border: 1px solid var(--border1);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: all 0.35s ease;
}
.slotio-feature-card:hover {
  border-color: var(--theme);
  box-shadow: 0 0 26px rgba(96, 253, 252, 0.18);
}
.slotio-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(96, 253, 252, 0.1);
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 20px;
}
.slotio-feature-card h4 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.slotio-feature-card p { color: var(--pra-clr); font-size: 14px; margin: 0; line-height: 1.6; }
.slotio-features-swiper { padding-bottom: 55px; }
.slotio-features-swiper .swiper-pagination-bullet { background: var(--border1); opacity: 1; }
.slotio-features-swiper .swiper-pagination-bullet-active { background: var(--theme); }
.slotio-feat-nav {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slotio-feat-nav:hover { border-color: var(--theme); color: var(--theme); box-shadow: 0 0 18px rgba(96,253,252,0.3); }

/* ===== TESTIMONIALS ===== */
.slotio-testi-card {
  background: var(--bg1);
  border: 1px solid var(--border1);
  border-radius: 20px;
  padding: 44px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.slotio-testi-card p {
  color: var(--white);
  font-size: 21px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 22px;
}
.slotio-testi-card .slotio-testi-name { color: var(--theme); font-weight: 700; }
.slotio-testi-card .slotio-testi-loc { color: var(--pra-clr); font-size: 14px; }
.slotio-stars { color: var(--theme); font-size: 15px; margin-bottom: 18px; }

/* ===== PRICING ===== */
.slotio-price-card {
  background: var(--bg1);
  border: 1px solid var(--border1);
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}
.slotio-price-card:hover { transform: translateY(-6px); }
.slotio-price-card.is-popular {
  background: var(--bg2);
  border: 1px solid var(--theme);
  box-shadow: 0 0 40px rgba(96, 253, 252, 0.25);
}
.slotio-price-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: linear-gradient(135deg, #17c9c2, var(--theme));
  color: #051415;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.slotio-price-plan { color: var(--pra-clr); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.slotio-price-amount { color: var(--white); font-size: 42px; font-weight: 800; }
.slotio-price-amount span { color: var(--pra-clr); font-size: 15px; font-weight: 500; }
.slotio-price-desc { color: var(--pra-clr); font-size: 14px; margin: 14px 0 26px; }
.slotio-price-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 14px; }
.slotio-price-list li { color: var(--dd-clr); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.slotio-price-list li i { color: var(--theme); }

/* ===== FAQ (reutiliza .accordion-single) ===== */
.slotio-faq .accordion-single { padding-top: 26px; padding-bottom: 26px; }
.slotio-faq .header-area { cursor: pointer; }
.slotio-faq .faq-q { color: var(--white); font-size: 17px; font-weight: 600; }
.slotio-faq .content-area { display: none; padding-top: 16px; }
.slotio-faq .content-area p { color: var(--pra-clr); font-size: 15px; margin: 0; max-width: 90%; }

/* ===== FINAL CTA ===== */
.slotio-final-cta {
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(96,253,252,0.14), transparent 65%),
    var(--bg1);
  text-align: center;
  border-radius: 28px;
}
.slotio-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(255, 99, 99, 0.08);
  border: 1px solid rgba(255, 99, 99, 0.35);
  color: #ff9d9d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}

/* ===== CONTACT STRIP ===== */
.slotio-contact-strip {
  background: var(--bg1);
  border: 1px solid var(--border1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.slotio-contact-strip h4 { color: var(--white); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.slotio-contact-strip p { color: var(--pra-clr); margin: 0; }
.slotio-contact-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 991px) {
  .slotio-hero { padding-top: 170px; }
  .slotio-steps { flex-direction: column; gap: 40px; }
  .slotio-steps::before { display: none; }
  .slotio-chat { margin: 40px auto 0; }
}
