:root {
  --primary: #F5A623;
  --primary_2: #FFA726;
  --secondary: #0B1324;
  --bg: #F7F8FA;
  --text_dark: #111827;
  --text_light: #6B7280;
  --accent: #F5A623;
  --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: 80px 0;
}

@media (max-width: 1024px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

.container,
.header__container,
.hero__container,
.content-section__container,
.footer__container,
.terms__container,
.legal-hero__container,
.legal-intro__container,
.legal-contact__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container--narrow,
.hero__container--narrow {
  max-width: 800px;
}

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

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: 80px;
}

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

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

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

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

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

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

.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 ease, visibility 0.3s ease;
}

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

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background-color: white;
  z-index: 1000;
  padding: 40px 24px;
  overflow-y: auto;
  transition: right 0.3s 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.1rem;
  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);
}

@media (max-width: 768px) {
  .header__nav,
  .header__actions .header__cta {
    display: none;
  }
  .header__toggle {
    display: block;
  }
  .header__mobile-menu .button--block {
    margin-top: 20px;
  }
}

.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #17233A 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.hero--legal {
  padding: 80px 0;
}

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

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

.hero__title--legal {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

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

.hero__text--legal {
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

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

.content-section--intro {
  background-color: white;
}

.content-section--disclaimer {
  background-color: var(--bg);
}

.content-section--contact {
  background-color: white;
  text-align: center;
}

.content-section__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text_dark);
  margin-bottom: 24px;
}

.content-section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--secondary);
}

.content-section__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text_light);
  margin-bottom: 20px;
}

.content-section__text--small {
  font-size: 0.9375rem;
  color: #9CA3AF;
  margin-top: 32px;
}

.disclaimer-section {
  margin-bottom: 48px;
}

.disclaimer-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--secondary);
}

.disclaimer-section__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text_light);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
}

.contact-info__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background-color: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text_dark);
  transition: all 0.2s ease;
}

.contact-info__link:hover {
  background-color: #eaeef2;
  transform: translateY(-2px);
}

.contact-info__link--email {
  color: #D44638;
}

.contact-info__link--whatsapp {
  color: #25D366;
}

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

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

.button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 166, 35, 0.2);
}

.button--whatsapp {
  background-color: #25D366;
  color: white;
}

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

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

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

.footer__top {
  padding: 60px 0;
}

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

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 8px;
}

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

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

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

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

.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;
}

@media (max-width: 1024px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__column--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__column--brand {
    grid-column: auto;
  }
}

.carousel,
.gallery {
  background-color: var(--secondary);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin: 40px 0;
}

.carousel__viewport,
.gallery__track {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.carousel__viewport::-webkit-scrollbar,
.gallery__track::-webkit-scrollbar {
  display: none;
}

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

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

.carousel:hover .carousel__track,
.gallery:hover .gallery__track {
  animation-play-state: paused;
}

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

.carousel__item,
.gallery__item {
  flex: 0 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.carousel__img,
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel--devices .carousel__img,
.gallery[class*="devices"] .gallery__img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.carousel--logos .carousel__img,
.gallery[class*="logos"] .gallery__img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 20px;
  background: linear-gradient(145deg, #2a2f4a, #1e2238);
}

.carousel--sport .carousel__img,
.gallery[class*="sport"] .gallery__img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(11, 19, 36, 0.1);
}

.carousel--wtsp .carousel__img,
.gallery[class*="wtsp"] .gallery__img {
  aspect-ratio: 473 / 1024;
  object-fit: cover;
  border: 1px solid rgba(11, 19, 36, 0.1);
}

@media (max-width: 640px) {
  .carousel,
  .gallery {
    padding: 20px;
    margin: 30px 0;
  }
  .carousel__track,
  .gallery__track {
    gap: 16px;
  }
}

/* css done */