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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* GRID BACKGROUND */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* MAIN CONTENT */
.main-content {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-product {
  width: 100%;
  padding: 12px 20px;
  font-size: 13px;
  margin-top: auto;
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

/* HERO SECTION */
.hero {
  padding: 100px 20px 80px;
  text-align: center;
}

.hero-content {
  animation: slideUp 0.8s ease-out;
}

.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 900;
  margin: 0;
  letter-spacing: -1px;
  animation: glowPulse 3s ease-in-out infinite;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ffffff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowText 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  animation: floatIn 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: floatIn 1s ease-out 0.4s both;
}

/* SECTION STYLES */
.section-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  animation: glowPulse 3s ease-in-out infinite;
}

.section-title .highlight {
  background: linear-gradient(135deg, #ffffff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowText 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.section-subtitle {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 60px;
  text-align: center;
  animation: floatIn 1s ease-out 0.2s both;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.01);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.testimonial-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.testimonial-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.testimonial-info p {
  font-size: 12px;
  color: #9ca3af;
}

.stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.6;
}

/* PRODUCTS */
.products {
  padding: 80px 20px;
}

.tabs-wrapper {
  margin-bottom: 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  min-width: min-content;
}

.tab-btn {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  animation: floatIn 0.6s ease-out;
}

.tab-btn:hover {
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
  gap: 30px;
  justify-content: center;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: contents;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: floatCard 3s ease-in-out infinite;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(156, 163, 175, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: glowMove 4s ease-in-out infinite;
}

.product-icon {
  font-size: 4rem;
  opacity: 0.8;
  width: 80px;
  height: 80px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  animation: badgePulse 2s ease-in-out infinite;
}

.product-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px 20px 0;
  text-align: center;
  flex: 1;
  animation: floatIn 0.8s ease-out;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  padding: 15px 20px;
  animation: pricePulse 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* FAQ */
.faq {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.01);
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #ffffff;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;
}

/* CTA SECTION */
.cta {
  padding: 100px 20px;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: glowPulse 3s ease-in-out infinite;
}

.cta-title .highlight {
  background: linear-gradient(135deg, #ffffff, #9ca3af);
  -webkit-background-clip: text;
  background-clip: text;
  animation: glowText 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  animation: floatIn 1s ease-out 0.2s both;
}

.cta-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #9ca3af;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #e0e7ff;
  transition: all 0.3s ease;
  animation: floatCard 3s ease-in-out infinite;
}

.badge-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.badge-item svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

/* FOOTER */
.footer {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.footer h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 2px;
  animation: glowPulse 3s ease-in-out infinite;
}

.footer p {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 20px;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #e0e7ff;
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 20px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.instagram-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.5s ease;
}

.instagram-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.instagram-btn:hover::before {
  left: 100%;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#modalTitle {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
  animation: glowPulse 3s ease-in-out infinite;
}

.modal-subtitle {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 14px;
}

.plans-list {
  margin-bottom: 25px;
}

.plan-option {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.plan-option:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.plan-option.selected {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.plan-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #9ca3af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.plan-option.selected .plan-radio {
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.plan-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  opacity: 0;
}

.plan-option.selected .plan-radio::after {
  opacity: 1;
}

.plan-info {
  flex: 1;
}

.plan-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}

.plan-duration {
  font-size: 12px;
  color: #9ca3af;
}

.plan-price {
  font-weight: 900;
  font-size: 16px;
  color: #ffffff;
  text-align: right;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* ANIMATIONS */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  50% {
    opacity: 0.95;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

@keyframes glowText {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.2));
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes glowMove {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  }
}

@keyframes pricePulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 50px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .tabs {
    justify-content: flex-start;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cta-badges {
    flex-direction: column;
    gap: 15px;
  }

  .modal {
    padding: 30px;
  }

  .faq-question {
    font-size: 14px;
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 12px;
  }

  .modal {
    padding: 20px;
  }

  #modalTitle {
    font-size: 1.25rem;
  }

  .product-icon {
    font-size: 3rem;
  }
}


/* Container: removemos qualquer barreira para a imagem */
.product-image {
    width: 100%;
    height: 240px; /* Ajuste essa altura para o tamanho que desejar do topo */
    display: block; /* Mudamos de flex para block para facilitar o preenchimento */
    position: relative;
    overflow: hidden;
    padding: 0 !important; /* ISSO É O MAIS IMPORTANTE: tira o espaço das bordas */
    margin: 0;
}

/* Imagem: forçamos ela a esticar e cobrir tudo */
.product-icon {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover; /* Faz a imagem cobrir todo o espaço sem sobrar nada */
    position: absolute;
    top: 0;
    left: 0;
}

/* Garante que o selo fique por cima da imagem */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

:root {
  --primary-color: #919191;
  --primary-hover: #929292;
  --secondary-bg: rgba(255, 255, 255, 0.1);
  --secondary-border: #e2e8f0;
  --text-main: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center; /* Ajuste conforme necessário */
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px; /* Bordas arredondadas dão um ar mais moderno */
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* Botão Principal (Destaque) */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Botão Secundário (Sutil) */
.btn-secondary {
  background-color: transparent;
  color: var(--secondary-border);
  border: 2px solid var(--secondary-border);
}

.btn-secondary:hover {
  background-color: var(--secondary-border);
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Ajuste nos SVGs para não ficarem desalinhados */
.btn svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px); /* Sutil animação na seta */
}