body {
  background: #0a0e27 url('/images/wqwecsxce3r32ecdsef432.png') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}

/* Layout principal em grid: 2 colunas + linhas auto */
.main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;     /* duas colunas lado a lado */
  gap: 32px;
  max-width: 1100px;
  margin: 96px auto 40px;
  align-items: start;
}

/* Bloco da direita (imagem) */
.options {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 290px;
    background: linear-gradient(120deg, #4075d8 0%, #247681 100%);
    border-radius: 22px;
    box-shadow: 1px 1px 4px rgba(56, 198, 217, 0.815), 0 2px 8px rgba(79, 141, 255, 0.829);
    overflow: hidden;
    position: relative;
    color: #fff;
    border-right: 2px solid #38c6d9;
    border-bottom: 2px solid #38c6d9;
}

.hero h1 { 
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
    padding: 0 30px;
  }
}

.hero p  { 
  font-size: 1.2rem; 
  margin-bottom: 0;
  text-align: center; 
  padding: 0 20px;
}

.options::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.options img {
    width: 100%;
    max-width: 540px;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(56, 198, 217, 0.13);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
}

.options img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 12px 48px rgba(56, 198, 217, 0.22), 0 4px 16px rgba(79,140,255,0.16);
}



/* Cards de produtos (prévias menores, centralizadas) */
.fixed-cards {
  grid-column: 1 / -1;
  display: grid;
  /* cards entre 220–260px, não esticam a 100% */
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  justify-content: center;        /* centraliza o conjunto */
  gap: 16px;
  max-width: 1100px;
  margin: 24px auto 0;
}

.card {
  background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #38c6d9;
  border-bottom: 5px solid #38c6d9;
  border-right: 5px solid #38c6d9;
  box-shadow: 0 0 20px rgba(56, 198, 217, 0.2), inset 0 0 20px rgba(79, 140, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  animation: cyberpunk-glow 3s ease-in-out infinite;
}

@keyframes cyberpunk-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(42, 209, 231, 0.61), 
                0 0 40px rgba(79, 141, 255, 0.699),
                inset 0 0 20px rgba(79, 141, 255, 0.678);
  }
  50% {
    box-shadow: 0 0 30px rgba(50, 238, 222, 0.637), 
                0 0 60px rgba(38, 108, 240, 0.801),
                inset 0 0 30px rgba(79, 141, 255, 0.726);
  }
}

.card:hover {
  border-color: #4f8cff;
  box-shadow: 0 0 30px rgba(79, 140, 255, 0.4), inset 0 0 20px rgba(56, 198, 217, 0.1);
}

.card__image {
  width: calc(100% - 20px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 10px auto;
  border-radius: 8px;
  border: 2px solid #a0aec0;
  box-shadow: 0 0 15px rgba(160, 174, 192, 0.3), inset 0 0 20px rgba(79, 140, 255, 0.08);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1a2847 0%, #2d3e5f 100%);
}

.card__image:hover {
  box-shadow: 0 0 25px rgba(56, 198, 217, 0.6), 0 0 40px rgba(79, 140, 255, 0.3);
  border-color: #38c6d9;
}

.card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(180deg, rgba(79, 140, 255, 0.05) 0%, transparent 100%);
}

.card__title {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  color: #38c6d9;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(56, 198, 217, 0.3);
}

.card__desc {
  margin: 0;
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.card__action {
  margin-top: 8px;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #4f8cff 0%, #38c6d9 100%);
  color: #0f172a;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(79, 140, 255, 0.3);
  transition: all 0.3s ease;
}

.card__action:hover {
  box-shadow: 0 0 25px rgba(79, 140, 255, 0.6);
  transform: translateY(-2px);
}

/* Barra de contato - centrada e compacta */
.contact-cta {
  max-width: 1100px;
  margin: 40px auto 10px;
  padding: 24px 20px;
  background: linear-gradient(135deg, #38c6d9 0%, #4f8cff 100%);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(56, 198, 217, 0.2), 0 0 20px rgba(79, 140, 255, 0.15);
  border: 2px solid rgba(56, 198, 217, 0.3);
  text-align: center;
}

.container {
  padding: 0 20px 10px 0;
}

/* Conteúdo central com mesma largura máxima do site */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Tipografia e botão */
.contact-cta h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}
.contact-cta p {
  margin: 0 0 16px;
  font-size: 1rem;
  opacity: 0.95;
}
.contact-cta a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Mobile ajustes */
@media (max-width: 900px) {
  .main-container {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 80px auto 24px;
    padding: 0 6px;
  }
  .options img { max-width: 100%; }

  .fixed-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }

  .desktop-only {
    display: none;
  }


  .contact-cta h2 { font-size: 1.5rem; }
}

.terms-footer {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(26, 31, 58, 0.95) 100%);
  color: #fff;
  padding: 40px 20px 24px;
  text-align: center;
  border-top: 2px solid #38c6d9;
  box-shadow: 0 -4px 20px rgba(56, 198, 217, 0.1);
}

.terms-footer .terms-links {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.terms-footer .terms-links a {
  color: #38c6d9;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.terms-footer .terms-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4f8cff, #38c6d9);
  transition: width 0.3s ease;
}

.terms-footer .terms-links a:hover {
  color: #4f8cff;
}

.terms-footer .terms-links a:hover::after {
  width: 100%;
}

.terms-footer .copyright {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.7;
  color: #a0aec0;
}

@media (max-width: 768px) {
  .terms-footer {
    padding: 32px 16px 20px;
  }
  
  .terms-footer .terms-links {
    gap: 16px;
  }
}