.hero-section {
  background: linear-gradient(145deg, #0a0a0a 0%, #1a0033 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--maxivo-purple);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(188, 19, 254, 0.5);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-highlight {
  color: var(--maxivo-purple);
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(188, 19, 254, 0.3);
  z-index: -1;
  border-radius: 5px;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--maxivo-purple);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-primary, .cta-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary {
  background: var(--maxivo-purple);
  color: white;
  box-shadow: 0 5px 15px rgba(188, 19, 254, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(188, 19, 254, 0.6);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--maxivo-purple);
}

.cta-secondary:hover {
  background: rgba(188, 19, 254, 0.1);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  animation: float 6s ease-in-out infinite;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--maxivo-purple) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  z-index: -1;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.hero-wave svg {
  width: 100%;
  height: 100px;
}

.hero-wave path {
  fill: var(--maxivo-dark);
}

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

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-stats, .hero-cta {
    justify-content: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-image {
    margin-top: 3rem;
  }
}
.devices-section {
  background: linear-gradient(to bottom, #0f0f0f 0%, #1a1a1a 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.devices-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: rgba(188, 19, 254, 0.2);
  color: var(--maxivo-purple);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid var(--maxivo-purple);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff 0%, var(--maxivo-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.devices-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 4rem 0;
}

.devices-image-wrapper {
  flex: 1;
  position: relative;
}

.devices-image {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.devices-badge {
  position: absolute;
  bottom: -15px;
  left: 50px;
  background: var(--maxivo-purple);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(188, 19, 254, 0.3);
  z-index: 3;
  transform: rotate(-5deg);
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--maxivo-purple) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 1;
}

.devices-features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(188, 19, 254, 0.1);
  border-color: var(--maxivo-purple);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.cta-button {
  grid-column: span 2;
  background: var(--maxivo-purple);
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(188, 19, 254, 0.3);
}

.brands-section {
  margin-top: 4rem;
  text-align: center;
}

.brands-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.brands-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-logo {
  height: 30px;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(2);
}

.brand-logo:hover {
  opacity: 1;
  filter: none;
}

@media (max-width: 992px) {
  .devices-content {
    flex-direction: column;
  }
  
  .devices-features {
    width: 100%;
  }
  
  .devices-image {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .devices-features {
    grid-template-columns: 1fr;
  }
  
  .cta-button {
    grid-column: span 1;
  }
  
  .section-title {
    font-size: 2rem;
  }
}
.pricing-section {
  background: linear-gradient(to bottom, #0f0f0f 0%, #1a1a1a 100%);
  padding: 6rem 0 5rem;
  position: relative;
  color: white;
}

.pricing-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-badge {
  display: inline-block;
  background: rgba(188, 19, 254, 0.2);
  color: var(--maxivo-purple);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid var(--maxivo-purple);
  font-size: 0.9rem;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff 0%, var(--maxivo-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 59, 48, 0.2);
  color: #ff3b30;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  gap: 0.5rem;
  margin-top: 1rem;
}

.countdown-icon {
  font-size: 1.1rem;
}

.countdown-text {
  font-size: 0.9rem;
}

.countdown-time {
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  perspective: 1000px;
}

.pricing-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.pricing-card:hover .pricing-card-inner {
  transform: translateY(-10px);
  background: rgba(188, 19, 254, 0.05);
  border-color: var(--maxivo-purple);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--maxivo-purple);
}

.pricing-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.feature-item.highlight {
  background: rgba(188, 19, 254, 0.1);
  border: 1px solid var(--maxivo-purple);
  transform: scale(1.02);
}

.feature-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--maxivo-purple);
}

.feature-text {
  flex: 1;
}

.feature-devices {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.feature-price {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--maxivo-purple);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pricing-button:hover {
  background: #9c27b0;
  box-shadow: 0 5px 15px rgba(188, 19, 254, 0.4);
  transform: translateY(-2px);
}

.payment-methods {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
}

.payment-title {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--maxivo-purple);
}

.payment-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.payment-logo {
  background: white;
  padding: 0.8rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-logo img {
  height: 25px;
  width: auto;
  filter: grayscale(100%) contrast(0.5);
  transition: all 0.3s ease;
}

.payment-logo:hover img {
  filter: none;
}

.security-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-badge img {
  height: 40px;
  width: auto;
}

.security-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.security-info i {
  color: var(--maxivo-purple);
  font-size: 1.2rem;
}

.payment-more {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--maxivo-purple);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.payment-more:hover {
  color: white;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    max-width: 350px;
    margin: 0 auto;
  }
}
.maxivo-modal .modal-content {
  background: #121212;
  color: white;
  border: 1px solid var(--maxivo-purple);
  border-radius: 15px;
  overflow: hidden;
}

.maxivo-modal .modal-header {
  border-bottom: 1px solid rgba(188, 19, 254, 0.3);
  background: rgba(20, 20, 20, 0.9);
}

.maxivo-modal .modal-title {
  font-weight: 700;
  color: var(--maxivo-purple);
}

.maxivo-modal .btn-close {
  filter: invert(1);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-method-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.payment-method-card:hover {
  background: rgba(188, 19, 254, 0.1);
  border-color: var(--maxivo-purple);
  transform: translateY(-3px);
}

.payment-method-card.highlight {
  background: rgba(188, 19, 254, 0.1);
  border: 1px solid var(--maxivo-purple);
}

.payment-icon {
  width: 40px;
  height: 40px;
  background: rgba(188, 19, 254, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--maxivo-purple);
}

.payment-icon img {
  width: 24px;
  height: auto;
}

.payment-info h6 {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.payment-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.payment-badge.visa {
  background: #1a1f71;
  color: white;
}

.payment-badge.mastercard {
  background: #eb001b;
  color: white;
}

.payment-badge.amex {
  background: #016fd0;
  color: white;
}

.payment-badge.bitcoin {
  background: #f7931a;
  color: white;
}

.payment-badge.usdt {
  background: #26a17b;
  color: white;
}

.payment-recommended {
  font-size: 0.7rem;
  background: var(--maxivo-purple);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.payment-international {
  font-size: 0.7rem;
  background: #0070ba;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.payment-time {
  font-size: 0.7rem;
  opacity: 0.8;
}

.payment-locations {
  font-size: 0.7rem;
  opacity: 0.8;
}

.payment-security {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(188, 19, 254, 0.2);
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.security-item:last-child {
  margin-bottom: 0;
}

.security-item i {
  color: var(--maxivo-purple);
}

.maxivo-modal .modal-footer {
  border-top: 1px solid rgba(188, 19, 254, 0.3);
  background: rgba(20, 20, 20, 0.9);
}

.maxivo-modal .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

.maxivo-modal .btn-primary {
  background: var(--maxivo-purple);
  border: none;
  font-weight: 600;
}

.maxivo-modal .btn-primary:hover {
  background: #9c27b0;
}

@media (max-width: 576px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  
  .maxivo-modal .modal-footer {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .maxivo-modal .btn {
    width: 100%;
  }
}
.family-section {
  background: #0a0a0a;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.family-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(188, 19, 254, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-neon {
  color: var(--maxivo-purple);
  text-shadow: 0 0 10px rgba(188, 19, 254, 0.7);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

.family-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.movie-row {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
}

.movie-card {
  flex: 1;
  min-width: 0;
  transition: transform 0.3s ease;
}

.movie-card.empty-card {
  visibility: hidden;
}

.movie-card:hover {
  transform: scale(1.05);
}

.movie-poster-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  aspect-ratio: 2/3;
}

.movie-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .movie-poster {
  transform: scale(1.1);
}

.movie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .movie-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: var(--maxivo-purple);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.7);
}

.play-button:hover {
  transform: scale(1.1);
  background: #9c27b0;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--maxivo-purple);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-control:hover {
  background: var(--maxivo-purple);
}

.carousel-control.prev {
  left: 0;
}

.carousel-control.next {
  right: 0;
}

.family-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.category-tag {
  background: rgba(188, 19, 254, 0.2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--maxivo-purple);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.category-tag:hover {
  background: var(--maxivo-purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(188, 19, 254, 0.3);
}

@media (max-width: 992px) {
  .movie-row {
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .movie-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
  
  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .movie-card {
    flex: 0 0 100%;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .family-categories {
    gap: 0.5rem;
  }
  
  .category-tag {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}
.faq-section {
  background: linear-gradient(to bottom, #0f0f0f 0%, #1a1a1a 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./images/pattern.png') center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-neon {
  color: var(--maxivo-purple);
  text-shadow: 0 0 10px rgba(188, 19, 254, 0.7);
}

.section-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(188, 19, 254, 0.2);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 1.5rem;
}

.faq-list {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.faq-list li {
  margin-bottom: 0.5rem;
}

.support-options {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.support-button {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

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

.support-button.whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.support-button.email {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.support-button.email:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.response-time {
  font-size: 0.9rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.note-box {
  background: rgba(188, 19, 254, 0.1);
  border-left: 3px solid var(--maxivo-purple);
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  border-radius: 0 5px 5px 0;
}

.note-box i {
  color: var(--maxivo-purple);
}

.device-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.device-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.device-option.recommended {
  border: 1px solid var(--maxivo-purple);
  box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
}

.device-option:hover {
  transform: translateY(-5px);
  background: rgba(188, 19, 254, 0.1);
}

.option-header {
  margin-bottom: 1rem;
  position: relative;
}

.option-header i {
  font-size: 2rem;
  color: var(--maxivo-purple);
  margin-bottom: 0.5rem;
}

.recommended-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--maxivo-purple);
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}

.price {
  font-weight: 700;
  color: var(--maxivo-purple);
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.view-plans-button {
  display: inline-block;
  margin-top: 1rem;
  color: var(--maxivo-purple);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-plans-button:hover {
  text-decoration: underline;
  color: white;
}

.payment-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.info-card i {
  font-size: 2rem;
  color: var(--maxivo-purple);
  margin-bottom: 1rem;
}

.info-card h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.requirements {
  margin: 1.5rem 0;
}

.requirement-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.requirement-item i {
  font-size: 1.5rem;
  color: var(--maxivo-purple);
  margin-top: 0.3rem;
}

.device-compatibility {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.compatibility-card {
  text-align: center;
}

.compatibility-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.compatibility-card h5 {
  margin-bottom: 0.3rem;
}

.compatibility-card p {
  font-size: 0.8rem;
  opacity: 0.8;
}

.warning-box {
  background: rgba(255, 59, 48, 0.1);
  border-left: 3px solid #ff3b30;
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  border-radius: 0 5px 5px 0;
}

.warning-box i {
  color: #ff3b30;
}

.more-questions {
  text-align: center;
  margin-top: 3rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--maxivo-purple);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(188, 19, 254, 0.3);
}

.contact-button:hover {
  background: #9c27b0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(188, 19, 254, 0.4);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .device-options {
    grid-template-columns: 1fr;
  }
  
  .payment-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
  }
  
  .support-options {
    flex-direction: column;
  }
  
  .support-button {
    justify-content: center;
  }
}