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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  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;
  cursor: pointer;
  background: transparent;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section {
  padding: 80px 0;
}

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

@media (max-width: 768px) {
  section {
    padding: 48px 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 24px;
  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;
}

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

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

.header__cta {
  font-weight: 600;
}

.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: 320px;
  height: 100%;
  background-color: white;
  z-index: 1000;
  padding: 40px 24px;
  overflow-y: auto;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.header__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  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: 12px 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: 100px 0;
}

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

.hero__container--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 600px;
}

.hero__badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

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

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

.hero__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

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

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text_light);
  margin: 0;
}

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

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

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

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.guide-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.guide-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.guide-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card__label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.guide-card__content {
  padding: 24px;
}

.guide-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.guide-card__description {
  color: var(--text_light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: background 0.3s;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.benefit-card__icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.benefit-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.benefit-card__description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
}

.steps-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.step-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.step-card__description {
  color: var(--text_light);
  font-size: 0.95rem;
  margin: 0;
}

.cta-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-block__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 20px;
}

.cta-block__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.cta-block__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item__question {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 24px;
  margin: 0;
  cursor: pointer;
  position: relative;
  padding-right: 56px;
}

.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item__question:hover::after {
  transform: translateY(-50%) scale(1.1);
}

.faq-item__answer {
  padding: 0 24px 24px;
  color: var(--text_light);
  display: none;
}

.faq-item__question:focus + .faq-item__answer,
.faq-item__question:active + .faq-item__answer {
  display: block;
}

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

.footer__top {
  padding: 64px 0;
}

.footer__container {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: 0 24px;
  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.75);
  font-size: 0.95rem;
  margin: 0;
}

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

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

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

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

.footer__bottom {
  padding: 32px 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;
  margin: 0;
}

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

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

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
}

.button--secondary {
  background: transparent;
  color: white;
  border-color: 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--small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.button--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.button--outline:hover {
  background: var(--primary);
  color: white;
}

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

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

.button--whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.carousel,
.gallery {
  background: 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;
}

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

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

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

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

.carousel__item,
.gallery__item {
  flex: 0 0 auto;
}

.carousel__img,
.gallery__img {
  border-radius: calc(var(--radius) - 4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel--devices .carousel__img,
.gallery--devices .gallery__img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background-color: white;
}

.carousel--logos .carousel__img,
.gallery--logos .gallery__img {
  aspect-ratio: 16 /@media (max-width: 768px) {
  .header__nav,
  .header__actions .header__cta {
    display: none;
  }
  .header__toggle {
    display: block;
  }
}

@media (max-width: 1024px) {
  .guides-grid,
  .benefits-grid,
  .steps-overview {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .guides-grid,
  .benefits-grid,
  .steps-overview,
  .footer__container {
    grid-template-columns: 1fr;
  }
  .hero__container--two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__actions,
  .cta-block__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    width: 100%;
    justify-content: center;
  }
  .carousel,
  .gallery {
    padding: 16px;
  }
  --carousel_gap: 16px;
}

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

.carousel__track,
.gallery__track {
  animation: scroll var(--carousel_speed) linear infinite;
}

.carousel__item,
.gallery__item {
  flex: 0 0 auto;
  width: 200px;
}

.carousel--devices .carousel__img,
.gallery--devices .gallery__img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.carousel--logos .carousel__img,
.gallery--logos .gallery__img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: white;
  padding: 12px;
  border-radius: calc(var(--radius) - 4px);
}

.carousel--sport .carousel__img,
.gallery--sport .gallery__img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.carousel--wtsp .carousel__img,
.gallery--wtsp .gallery__img {
  aspect-ratio: 473 / 1024;
  object-fit: cover;
}

.header__nav-item,
.header__mobile-nav-item,
.footer__link-item {
  display: block;
}

.faq-item__question:focus + .faq-item__answer,
.faq-item__question:active + .faq-item__answer,
.faq-item.active .faq-item__answer {
  display: block;
}

.faq-item.active .faq-item__question::after {
  content: '−';
  transform: translateY(-50%) scale(1.1);
}

.footer__column--links,
.footer__column--contact {
  margin-top: 24px;
}

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

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