html {
  scroll-behavior: smooth;
}

body.betpro-theme {
  font-family: var(--bp-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  color: var(--bp-foreground);
  background-color: var(--bp-bg);
  background-image: radial-gradient(ellipse 100% 60% at 50% -10%, rgba(var(--bp-primary-rgb), 0.07) 0%, transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.bp-heading {
  font-family: var(--bp-font-heading);
  letter-spacing: -0.02em;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 600; }
h4 { font-weight: 500; }

.bp-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bp-page__main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.bp-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
}

.bp-orb--1 {
  top: -5%;
  left: -8%;
  width: 560px;
  height: 560px;
  background: rgba(var(--bp-primary-rgb), 0.12);
  animation: bp-float 6s ease-in-out infinite;
}

.bp-home .bp-orb--1 {
  width: 420px;
  height: 420px;
  background: rgba(var(--bp-primary-rgb), 0.06);
  filter: blur(100px);
}

.bp-orb--2 {
  top: 45%;
  right: -8%;
  width: 440px;
  height: 440px;
  background: rgba(var(--bp-accent-rgb), 0.06);
  filter: blur(120px);
  animation: bp-float 6s ease-in-out infinite 3s;
}

.bp-orb--3 {
  bottom: -8%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: rgba(var(--bp-primary-rgb), 0.08);
  filter: blur(130px);
  animation: bp-float 6s ease-in-out infinite 1.5s;
}

.bp-orb--page-tr {
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: rgba(var(--bp-primary-rgb), 0.1);
  filter: blur(120px);
  transform: translate(33%, -33%);
  z-index: 0;
}

.bp-orb--page-tl {
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: rgba(var(--bp-primary-rgb), 0.1);
  filter: blur(120px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.bp-orb--page-accent {
  background: rgba(var(--bp-accent-rgb), 0.1);
}

.bp-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.bp-section-subtitle {
  color: var(--bp-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.bp-body-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--bp-muted);
}

.bp-body-text p {
  margin-bottom: 1rem;
}

.bp-body-text p:last-child {
  margin-bottom: 0;
}

.bp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: rgba(var(--bp-primary-rgb), 0.08);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.18);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bp-primary);
  letter-spacing: 0.04em;
  text-transform: none;
}

.bp-kicker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bp-primary);
  animation: bp-blink 2s ease-in-out infinite;
}

.bp-card {
  background: rgba(15, 23, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--bp-radius-2xl);
  backdrop-filter: blur(12px);
}

.bp-card--solid {
  background: var(--bp-card);
}

.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--bp-radius);
  transition: all 0.25s ease;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.bp-btn--gold {
  background: var(--bp-accent);
  color: var(--bp-accent-dark);
  border-color: var(--bp-accent);
  box-shadow: 0 10px 25px rgba(var(--bp-accent-rgb), 0.2);
}

.bp-btn--gold:hover {
  background: #e6b800;
  color: var(--bp-accent-dark);
  box-shadow: 0 12px 30px rgba(var(--bp-accent-rgb), 0.28);
}

.bp-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.bp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--bp-foreground);
}

.bp-btn--ghost {
  background: transparent;
  border-color: var(--bp-border);
  color: var(--bp-foreground);
}

.bp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.bp-btn--primary {
  background: var(--bp-primary);
  color: #fff;
}

.bp-btn--primary:hover {
  background: #15803d;
  color: #fff;
}

.bp-btn--whatsapp {
  background: var(--bp-whatsapp);
  color: #fff;
}

.bp-btn--whatsapp:hover {
  background: var(--bp-whatsapp-hover);
  color: #fff;
}

.bp-btn--lg {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  min-height: 3rem;
}

.bp-btn--xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  min-height: 3.5rem;
  border-radius: 999px;
}

.bp-btn--pill {
  border-radius: 999px;
}

.bp-btn--block {
  width: 100%;
}

.bp-text-gradient-gold {
  background: linear-gradient(to right, var(--bp-accent), #fde047, rgba(250, 204, 21, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bp-text-gradient-primary {
  background: linear-gradient(to bottom right, var(--bp-primary), #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bp-text-gradient-accent {
  background: linear-gradient(to bottom right, var(--bp-accent), #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bp-text-muted {
  color: var(--bp-muted);
}

body.betpro-theme .small,
body.betpro-theme small {
  font-size: 0.9375rem;
}

.bp-section {
  padding: 6rem 0;
}

.bp-section--sm {
  padding: 3rem 0;
}

.bp-section--band {
  background: transparent;
  border: none;
}

.bp-page-hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.bp-page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.bp-page-hero__subtitle {
  font-size: 1.25rem;
  color: var(--bp-muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.bp-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bp-badge--primary {
  background: rgba(var(--bp-primary-rgb), 0.2);
  color: var(--bp-primary);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.3);
}

.bp-badge--accent {
  background: rgba(var(--bp-accent-rgb), 0.2);
  color: var(--bp-accent);
  border: 1px solid rgba(var(--bp-accent-rgb), 0.3);
}

.bp-form-control {
  background: var(--bp-bg) !important;
  border: 1px solid var(--bp-border) !important;
  color: var(--bp-foreground) !important;
  border-radius: var(--bp-radius) !important;
  padding: 0.75rem 1rem !important;
}

.bp-form-control:focus {
  border-color: var(--bp-primary) !important;
  box-shadow: 0 0 0 0.2rem rgba(var(--bp-primary-rgb), 0.25) !important;
}

.bp-form-label {
  color: var(--bp-foreground);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.bp-alert {
  max-width: 720px;
}

.bp-animate-in {
  animation: bp-fade-up 0.55s ease-out both;
}

.bp-animate-in-delay-1 { animation-delay: 0.1s; }
.bp-animate-in-delay-2 { animation-delay: 0.2s; }
.bp-animate-in-delay-3 { animation-delay: 0.3s; }

.bp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.bp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes bp-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes bp-border-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bp-cta-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes bp-wa-pop {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

@keyframes bp-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-bp-float { animation: bp-float 6s ease-in-out infinite; }
.animate-bp-blink { animation: bp-blink 2s ease-in-out infinite; }
.animate-bp-border-spin { animation: bp-border-spin 4s linear infinite; }
.animate-bp-cta-pulse { animation: bp-cta-pulse 3s ease-in-out infinite; }
.animate-bp-wa-pop { animation: bp-wa-pop 2s infinite; }

.hover-elevate {
  position: relative;
  z-index: 0;
}

.hover-elevate::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 999;
  transition: background-color 0.2s;
}

.hover-elevate:hover::after {
  background-color: var(--bp-elevate-1);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
