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

:root {
  --preto: #000000;
  --branco: #FFFFFF;
  --vermelho: #DC2626;
  --vermelho-escuro: #991B1B;
  --cinza: #1F1F1F;
  --cinza-claro: #2A2A2A;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--preto);
  color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header */
header {
  background: linear-gradient(135deg, var(--preto) 0%, var(--cinza) 100%);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--branco);
}

.logo-icon {
  position: relative;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--vermelho) 0%, var(--vermelho-escuro) 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 13px solid var(--branco);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--vermelho);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-nav a {
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.header-nav a:hover {
  opacity: 1;
  color: var(--vermelho);
}

.cta-header {
  background: var(--vermelho);
  color: var(--branco) !important;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--vermelho);
  opacity: 1 !important;
  transition: background 0.2s;
}

.cta-header:hover {
  background: var(--vermelho-escuro);
}

/* Hero */
.hero {
  background: var(--preto);
  position: relative;
  overflow: hidden;
  padding: 50px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(220, 38, 38, 0.2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid var(--vermelho);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vermelho);
  margin-bottom: 25px;
}

.hero-badge img {
  flex-shrink: 0;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--vermelho);
}

.hero-description {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 35px;
}

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

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vermelho);
  display: block;
}

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

/* Directory Section */
.directory-section {
  padding: 80px 0;
  background: var(--cinza);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Featured Card #1 */
.featured-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #1F1F1F 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 2px solid var(--vermelho);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.featured-card:hover {
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
  transform: translateY(-3px);
}

.featured-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.featured-right {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-right img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 10px 30px rgba(220, 38, 38, 0.3));
  transition: transform 0.4s;
}

.featured-card:hover .featured-right img {
  transform: scale(1.05);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vermelho);
  color: var(--branco);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}

.featured-badge-number {
  background: var(--branco);
  color: var(--vermelho);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.featured-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  border: 2px solid rgba(220, 38, 38, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.featured-name {
  font-size: 1.8rem;
  color: var(--branco);
  line-height: 1.2;
}

.featured-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.featured-stars {
  color: #FBBF24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.featured-rating-value {
  font-weight: 700;
  font-size: 1rem;
}

.featured-rating-count {
  opacity: 0.6;
  font-size: 0.85rem;
}

.featured-description {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

.featured-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.featured-tag {
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(220, 38, 38, 0.15);
  color: var(--vermelho);
  font-weight: 600;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vermelho);
  color: var(--branco);
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  width: fit-content;
  transition: background 0.2s;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.featured-card:hover .featured-cta {
  background: var(--vermelho-escuro);
}

.rating-count {
  opacity: 0.6;
  font-size: 0.85rem;
}

/* Rank badge */
.platform-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  color: var(--vermelho);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.platform-card {
  background: var(--preto);
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.platform-card:hover {
  border-color: var(--vermelho);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
}

.platform-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cinza);
}

.platform-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.platform-card:hover .platform-card-image img {
  transform: scale(1.05);
}

.platform-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.platform-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-card-header h3 {
  font-size: 1.3rem;
  color: var(--branco);
}

.platform-card-description {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.platform-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.platform-tag {
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(220, 38, 38, 0.12);
  color: var(--vermelho);
  font-weight: 600;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.platform-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.platform-rating-stars {
  color: var(--vermelho);
  letter-spacing: 1px;
}

.visit-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vermelho);
  color: var(--branco);
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--vermelho);
  transition: background 0.2s;
}

.visit-button:hover {
  background: var(--vermelho-escuro);
}

.visit-button-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 7px solid var(--branco);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Benefits */
.benefits-section {
  padding: 80px 0;
}

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

.benefit-card {
  background: var(--cinza);
  padding: 35px 25px;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  border-color: var(--vermelho);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vermelho);
  border-radius: 5px;
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: var(--vermelho);
  font-size: 1.3rem;
}

.benefit-card p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* How it works */
.how-section {
  padding: 80px 0;
  background: var(--cinza);
}

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

.step-card {
  background: var(--preto);
  padding: 40px 30px;
  border-radius: 5px;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.16);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  border-color: var(--vermelho);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--vermelho) 0%, var(--vermelho-escuro) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  color: var(--vermelho);
  font-size: 1.3rem;
}

.step-card p {
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Video */
.video-section {
  padding: 80px 0;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-title {
  font-size: 1.8rem;
  color: var(--vermelho);
  margin-bottom: 30px;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
  border: 3px solid var(--vermelho);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--vermelho-escuro) 0%, var(--preto) 100%);
}

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--vermelho);
  color: var(--branco);
  padding: 18px 40px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.15rem;
  border: 2px solid var(--vermelho);
  transition: background 0.2s;
}

.cta-button:hover {
  background: var(--branco);
  color: var(--vermelho);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--cinza);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  background: var(--preto);
  padding: 40px 30px;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  border-color: var(--vermelho);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.stat-number-large {
  font-size: 3rem;
  font-weight: 700;
  color: var(--vermelho);
  margin-bottom: 15px;
  line-height: 1;
}

.stat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.stat-card p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Reviews */
.reviews-section {
  padding: 80px 0;
}

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

.review-card {
  background: var(--cinza);
  padding: 30px;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: var(--vermelho);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.review-stars {
  color: var(--vermelho);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.review-author {
  font-size: 1rem;
  color: var(--vermelho);
  font-weight: 600;
}

/* FAQ */
.faq-section {
  padding: 80px 0;
  background: var(--cinza);
}

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

.faq-item {
  background: var(--preto);
  margin-bottom: 15px;
  border-radius: 5px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--vermelho);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  color: var(--branco);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(220, 38, 38, 0.1);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 2rem;
  color: var(--vermelho);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  opacity: 0.9;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--vermelho);
  text-decoration: underline;
}

/* Footer */
footer {
  background: var(--preto);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-brand h3 span {
  color: var(--vermelho);
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--vermelho);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.7;
  font-size: 0.95rem;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--vermelho);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.6;
  font-size: 0.85rem;
}

/* Legal pages */
.legal-page {
  padding: 60px 0;
  min-height: 70vh;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--vermelho);
}

.legal-content {
  max-width: 800px;
  line-height: 1.8;
  opacity: 0.9;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--vermelho);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-right img {
    max-width: 380px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .section-title {
    text-align: left;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .header-nav {
    display: none;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-right {
    display: none;
  }

  .featured-left {
    padding: 28px;
  }

  .cta-content {
    text-align: left;
  }

  .video-container {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 30px 0 50px;
  }

  .hero-right img {
    max-width: 300px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

  .hero-stats {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .section-title {
    text-align: left;
  }

  .featured-name {
    font-size: 1.3rem;
  }

  .featured-left {
    padding: 22px;
    gap: 14px;
  }

  .featured-icon {
    width: 56px;
    height: 56px;
  }

  .footer-bottom {
    text-align: left;
  }
}
