:root {
  --primary: #F5A623;
  --primary_2: #FFA726;
  --secondary: #0B1324;
  --bg: #F7F8FA;
  --text_dark: #111827;
  --text_light: #6B7280;
  --accent: #FFD700;
  --radius: 12px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --max_width: 1200px;
  --carousel_gap: 24px;
  --carousel_speed: 40s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', 'Manrope', sans-serif;
  background-color: var(--bg);
  color: var(--text_dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
}

.header__nav-list {
  display: flex;
  gap: 32px;
}

.header__nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text_dark);
  transition: color 0.2s;
  text-transform: lowercase;
}

.header__nav-link:hover {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
}

.header__cta {
  white-space: nowrap;
}

.header__toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text_dark);
}

.header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.header__mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background-color: white;
  z-index: 1000;
  padding: 40px 24px;
  overflow-y: auto;
  transition: right 0.4s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

.header__mobile-menu.is-active {
  right: 0;
}

.header__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text_dark);
}

.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.header__mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text_dark);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.header__mobile-nav-link:hover {
  color: var(--primary);
}

.main {
  overflow: hidden;
}

.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #17233A 100%);
  color: white;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}

.hero__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.badge--primary {
  background: linear-gradient(90deg, var(--primary), var(--primary_2));
  color: white;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight {
  color: var(--primary);
}

.hero__text {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__trust-item strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__trust-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.hero__media {
  margin-top: 60px;
}

.hero__player {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero__player-screen {
  background: #000;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  gap: 8px;
}

.button--primary {
  background: linear-gradient(90deg, var(--primary), var(--primary_2));
  color: white;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

.button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(245, 166, 35, 0.4);
}

.button--secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.button--block {
  width: 100%;
}

.button--whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.button--whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
}

.carousel {
  background: var(--secondary);
  padding: 40px 0;
  margin: 0;
}

.carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

.carousel__track {
  display: flex;
  gap: var(--carousel_gap);
  width: max-content;
  animation: scroll var(--carousel_speed) linear infinite;
}

.carousel__item {
  flex: 0 0 auto;
}

.carousel__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.carousel--logos .carousel__img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: linear-gradient(145deg, #2a2f4a, #1f2438);
  padding: 20px;
}

.carousel--devices .carousel__img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background-color: white;
  padding: 10px;
}

.carousel--sport .carousel__img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background-color: white;
  border: 1px solid #e5e7eb;
}

.carousel--wtsp .carousel__img {
  aspect-ratio: 473 / 1024;
  object-fit: cover;
  background-color: white;
  border: 1px solid #e5e7eb;
}

@media (hover: hover) and (pointer: fine) {
  .carousel__viewport:hover .carousel__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track {
    animation: none;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.devices {
  background-color: white;
  text-align: center;
}

.devices__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 20px;
}

.devices__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text_dark);
}

.devices__description {
  font-size: 1.125rem;
  color: var(--text_light);
  max-width: 700px;
  margin: 0 auto 48px;
}

.sport--dark {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a2b4d 100%);
  color: white;
}

.sport__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.sport__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.sport__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 48px;
}

.pricing {
  background-color: white;
}

.pricing__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.pricing__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text_dark);
}

.pricing__description {
  font-size: 1.125rem;
  color: var(--text_light);
  max-width: 700px;
  margin: 0 auto 60px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
  text-align: left;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card--popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card--popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
}

.pricing-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text_dark);
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 32px;
}

.pricing-card__features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-card__feature {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  color: var(--text_dark);
  position: relative;
  padding-left: 28px;
}

.pricing-card__feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.pricing-card__feature--disabled {
  color: var(--text_light);
  text-decoration: line-through;
}

.pricing-card__feature--disabled::before {
  content: '✗';
  color: var(--text_light);
}

.multiscreen__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text_dark);
}

.multiscreen__description {
  font-size: 1.125rem;
  color: var(--text_light);
  max-width: 900px;
  margin: 0 auto 60px;
}

.multiscreen__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.multiscreen-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.multiscreen-card:hover {
  transform: translateY(-5px);
}

.multiscreen-card--contact {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px dashed #cbd5e1;
}

.multiscreen-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text_dark);
}

.multiscreen-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.multiscreen-card__features {
  margin-bottom: 32px;
  text-align: left;
}

.multiscreen-card__feature {
  padding: 8px 0;
  border-bottom: 1px solid #f1f1f1;
  color: var(--text_dark);
  position: relative;
  padding-left: 24px;
}

.multiscreen-card__feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.multiscreen-card__text {
  color: var(--text_light);
  margin-bottom: 32px;
  flex-grow: 1;
}

.whatsapp {
  background-color: white;
}

.whatsapp__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.whatsapp__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text_dark);
}

.whatsapp__description {
  font-size: 1.125rem;
  color: var(--text_light);
  max-width: 700px;
  margin: 0 auto 48px;
}

.reviews {
  background-color: var(--bg);
}

.reviews__container {
  max-width: var(--max_width);
  margin:0 auto 48px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card__stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.review-card__text {
  color: var(--text_dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-card__author {
  font-weight: 600;
  color: var(--primary);
}

.footer {
  background: var(--secondary);
  color: white;
}

.footer__top {
  padding: 60px 0;
}

.footer__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer__column--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer__column-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--primary);
}

.footer__column--contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header__nav,
  .header__cta {
    display: none;
  }
  .header__toggle {
    display: block;
  }
  .header__container {
    padding: 0 16px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__actions .button {
    width: 100%;
    max-width: 300px;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing-card--popular {
    transform: scale(1);
  }
  .pricing-card--popular:hover {
    transform: translateY(-10px);
  }
  .multiscreen__grid {
    grid-template-columns: 1fr;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__column--contact {
    align-items: stretch;
  }
  .footer__column--contact .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  section {
    padding: 40px 0;
  }
  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .hero__trust {
    gap: 24px;
  }
  .carousel__viewport {
    padding: 10px 0;
  }
  .carousel__img {
    border-radius: calc(var(--radius) - 4px);
  }
}
 /* css done */