* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e3a8a;
  --secondary-color: #2563eb;
  --accent-color: #16a34a;
  --warning-color: #ea580c;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-light-gray: #9ca3af;
  --border-light: #e5e7eb;
  --white: #ffffff;
  --bg-light: #f9fafb;
  --bg-lighter: #f3f4f6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: none;
}

.logo {
  display: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Adicionando blur na imagem para melhorar legibilidade do texto */
  filter: blur(4px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Aumentando opacidade do overlay de 0.5 para 0.65 para melhor contraste */
  background: rgba(30, 58, 138, 0.65);
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 1;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  margin-bottom: 48px;
}

.cta-button {
  background-color: var(--warning-color);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.5);
}

.cta-button:active {
  transform: translateY(0);
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefit-item {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.benefit-icon {
  font-size: 20px;
}

.benefit-item p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 20px;
    min-height: 500px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  /* Aumentando o blur em mobile para melhor legibilidade */
  .hero-background-image {
    filter: blur(6px);
  }
}

/* PRODUTOS SECTION */
.produtos {
  padding: 60px 20px;
  background-color: var(--bg-light);
}

.produtos h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
}

.product-card.featured {
  border: 2px solid var(--secondary-color);
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(22, 163, 74, 0.02) 100%);
}

@media (max-width: 768px) {
  .product-card.featured {
    transform: scale(1);
  }
}

.product-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.product-tag {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-tag-featured {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.product-description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

.product-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

.feature:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.feature.bonus {
  background-color: rgba(22, 163, 74, 0.15);
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-top: 8px;
  color: var(--primary-color);
}

.bonus-list {
  margin-top: 12px;
  padding: 12px;
  background-color: rgba(22, 163, 74, 0.1);
  border-radius: 6px;
  border-left: 3px solid var(--accent-color);
}

.bonus-item {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.4;
}

.bonus-item:last-child {
  margin-bottom: 0;
}

.bonus-number {
  font-weight: 600;
  color: var(--accent-color);
  flex-shrink: 0;
  min-width: 20px;
}

.product-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.price-original {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 14px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--warning-color);
}

.buy-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  width: 100%;
}

.buy-button:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.buy-button:active {
  transform: translateY(0);
}

.buy-button.featured-btn {
  background-color: var(--accent-color);
  font-size: 17px;
  padding: 16px 24px;
}

.buy-button.featured-btn:hover {
  background-color: #15803d;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .price {
    font-size: 28px;
  }
}

/* DEPOIMENTOS SECTION */
.depoimentos {
  padding: 60px 20px;
  background-color: var(--white);
}

.depoimentos h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background-color: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-stars {
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial p {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-size: 14px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 12px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* SEGURANÇA SECTION */
.seguranca {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.seguranca h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-color);
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.badge {
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.badge:hover {
  transform: translateY(-4px);
}

.badge-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.badge h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.badge p {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .security-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: var(--white);
  margin: 20px auto;
  padding: 32px 24px;
  border-radius: 12px;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  animation: slideUp 0.3s;
}

@keyframes slideUp {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.modal-close:hover {
  background-color: var(--bg-light);
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.checkout-summary {
  background-color: var(--bg-light);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.summary-item:last-child {
  margin-bottom: 0;
}

.summary-label {
  color: var(--text-light);
}

.summary-value {
  font-weight: 600;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.payment-methods {
  margin-bottom: 24px;
}

.payment-methods h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.payment-option {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
}

.payment-option input[type="radio"] {
  margin-right: 10px;
  cursor: pointer;
}

.payment-option label {
  cursor: pointer;
  font-size: 14px;
  margin: 0;
}

.security-info {
  background-color: rgba(255, 107, 157, 0.1);
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--primary-blue);
}

.buy-button-modal {
  width: 100%;
  background-color: var(--secondary-pink);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-bottom: 12px;
}

.buy-button-modal:hover {
  background-color: #ff8c5a;
  transform: translateY(-2px);
}

.buy-button-modal:active {
  transform: translateY(0);
}

.modal-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 48px 20px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  font-size: 13px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .header .container {
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 14px;
  }

  .cta-button {
    padding: 12px 32px;
    font-size: 14px;
  }

  .produtos h2,
  .depoimentos h2,
  .seguranca h2 {
    font-size: 24px;
  }

  .product-card {
    padding: 24px 16px;
  }

  .price {
    font-size: 24px;
  }

  .modal-content {
    margin: 10px;
    padding: 24px 16px;
  }
}

/* Estilos da tabela de comparação e popup */
.comparison-table {
  margin-bottom: 24px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-col {
  padding: 16px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dark);
  border-right: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.comparison-col:last-child {
  border-right: none;
}

.comparison-col.header {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.comparison-col.winner {
  background-color: rgba(22, 163, 74, 0.1);
  font-weight: 500;
}

.comparison-row.price-row .comparison-col.winner {
  background-color: rgba(22, 163, 74, 0.2);
  font-size: 18px;
}

.comparison-row.savings .comparison-col.winner {
  background-color: var(--accent-color);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.popup-cta {
  text-align: center;
}

.premium-button {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.premium-button:hover {
  background-color: #15803d;
  transform: translateY(-2px);
}

.basic-button {
  width: 100%;
  background-color: var(--bg-lighter);
  color: var(--text-dark);
  border: 2px solid var(--border-light);
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.basic-button:hover {
  background-color: var(--bg-light);
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-col {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 12px;
    min-height: 40px;
  }

  .comparison-col.header {
    display: none;
  }

  .comparison-col::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--primary-color);
  }
}

/* Estilos do novo modal mobile-friendly */
.upgrade-offer {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 24px;
}

.offer-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.offer-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.offer-text {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

.offer-benefits {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
}

.benefit-item-modal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}

.benefit-item-modal:last-child {
  border-bottom: none;
}

.check-icon {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: bold;
  flex-shrink: 0;
}

.price-comparison-modal {
  background-color: var(--white);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid var(--border-light);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
}

.price-item:first-child {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.price-item .label {
  font-weight: 600;
  color: var(--text-dark);
}

.price-item .value {
  font-weight: 700;
  color: var(--text-light);
  font-size: 16px;
}

.price-item .value.highlight {
  color: var(--accent-color);
  font-size: 18px;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-upgrade {
  width: 100%;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-upgrade:hover {
  background-color: #15803d;
  transform: translateY(-2px);
}

.btn-upgrade:active {
  transform: translateY(0);
}

.btn-cancel {
  width: 100%;
  background-color: var(--bg-lighter);
  color: var(--text-dark);
  border: 2px solid var(--border-light);
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-cancel:hover {
  background-color: var(--bg-light);
  border-color: var(--primary-color);
}

@media (max-width: 480px) {
  .upgrade-offer {
    padding: 20px 16px;
  }

  .offer-title {
    font-size: 18px;
  }

  .offer-text {
    font-size: 14px;
  }

  .offer-benefits {
    padding: 16px;
  }

  .benefit-item-modal {
    padding: 10px 0;
    font-size: 13px;
  }

  .btn-upgrade,
  .btn-cancel {
    padding: 14px;
    font-size: 14px;
  }
}
