/* ============ BASE STYLES ============ */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* Cores temáticas */
:root {
  --roxo-escuro: #373252;
  --roxo-claro: #7168A4;
  --roxo-claro-hover: #9c94d4;
  --vermelho: #ff4d4d;
  --branco: #ffffff;
  --cinza-claro: #f5f5f5;
  --cinza-texto: #666;
	--hw-yellow: #ffd700;
}

/* ============ HEADER STYLES ============ */
.hotwheels-header {
  background: linear-gradient(to bottom, #3A2A58, #593664) !important;
  __background-image: url('../image/bgNuvem_1.png') !important;
  height: 70px;
  padding: 0 20px;
  line-height: 70px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.hotwheels-header nav {
  background-color: transparent;
  box-shadow: none;
}

.hotwheels-header .brand-logo {
  padding: 10px 0;
}

.hotwheels-header .logo-img {
  height: 50px;
  transition: all 0.3s ease;
}

.hotwheels-header .logo-img:hover {
  transform: scale(1.05);
}

.hotwheels-header ul a {
  color: var(--branco);
  font-weight: 600;
  transition: all 0.3s ease;
}

.hotwheels-header ul a:hover {
  color: var(--roxo-claro-hover);
}

/* Botões do cabeçalho */
.hotwheels-header .btn-login {
  background-color: transparent;
  border: 2px solid var(--branco);
  border-radius: 50px;
  margin-left: 10px;
  color: var(--branco);
  transition: all 0.3s ease;
}

.hotwheels-header .btn-login:hover {
  background-color: var(--roxo-escuro) !important;
}

.hotwheels-header .btn-assinar {
  background-color: var(--vermelho);
  border-radius: 50px;
  margin-top: 12px;
  color: var(--branco);
  transition: all 0.3s ease;
}

.hotwheels-header .btn-assinar:hover {
  background-color: #e60000 !important;
	color: var(--branco);
}

/* Menu mobile */
.sidenav {
  background-color: var(--roxo-escuro);
}

.sidenav li > a {
  color: var(--branco);
}

.sidenav .btn {
  width: 90%;
  margin: 10px auto 10px 10px;
  display: block;
  border-radius: 50px;
}

/* ============ HERO SECTION ============ */
.hero-section {
  __background-color: var(--roxo-escuro);
  background-image: url('../image/bg3.png') !important;
  background-repeat: repeat;
	color: var(--branco);
  padding: 120px 0 80px;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../image/hotwheels-pattern.png');
  opacity: 0.1;
  z-index: 0;
}

.hero-title {
  font-family: 'Racing Sans One', cursive;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
}

/* Botões principais */
.btn-hero {
  font-weight: 600;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  text-transform: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  color: var(--branco);
}

.btn-free {
  background-color: var(--roxo-claro) !important;
  color: white;
	border-radius: 50px !important;
}

.btn-free:hover {
  background-color: var(--roxo-escuro) !important;
  transform: translateY(-3px);
}

.btn-plans {
  background-color: var(--roxo-claro) !important;
  color: white;
	border-radius: 50px !important;
}

.btn-plans:hover {
  background-color: var(--roxo-escuro) !important;
  transform: translateY(-3px);
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border: 5px solid var(--branco);
}

.hero-image {
  display: block;
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: scale(1.03);
}

.counter-container {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  position: relative;
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-family: 'Racing Sans One', cursive;
  font-size: 2.2rem;
  color: var(--hw-yellow);
  display: block;
  line-height: 1;
}

.counter-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============ SECTION COMMON STYLES ============ */
.section-title {
  font-family: 'Racing Sans One', cursive;
  color: var(--roxo-escuro);
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--roxo-escuro);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--cinza-texto);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ HOW IT WORKS SECTION ============ */
.how-it-works-section {
  padding: 80px 0;
  background-color: #f9f5ff;
}

.steps-container {
  margin-top: 40px;
}

.step-card {
  background: var(--branco);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #e0d6ff;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(55, 50, 82, 0.1);
  border-color: var(--roxo-escuro);
}

.step-number {
  font-family: 'Racing Sans One', cursive;
  font-size: 5rem;
  color: rgba(55, 50, 82, 0.1);
  position: absolute;
  top: -20px;
  right: 10px;
  line-height: 1;
  z-index: 0;
}

.step-icon {
  font-size: 3rem;
  color: var(--roxo-escuro);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-icon i {
  background-color: var(--branco);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(55, 50, 82, 0.1);
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--roxo-escuro);
  position: relative;
  z-index: 1;
}

.step-description {
  color: var(--cinza-texto);
  position: relative;
  z-index: 1;
}

/* ============ FEATURES SECTION ============ */
.features-section {
  padding: 80px 0;
  background-image: url('../image/bg.jpg') !important;
  background-repeat: repeat;
}

.features-grid {
  margin-top: 30px;
}

.feature-card {
  background: var(--branco);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--roxo-escuro);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--roxo-escuro);
  margin-bottom: 20px;
}

.feature-icon i {
  background-color: var(--branco);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--roxo-escuro);
}

.feature-description {
  color: var(--cinza-texto);
}

.community-callout {
  background-color: var(--roxo-escuro);
  color: var(--branco);
  padding: 30px;
  border-radius: 15px;
  margin-top: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.community-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../image/hotwheels-pattern.png');
  opacity: 0.1;
  z-index: 0;
}

.community-text {
  font-family: 'Racing Sans One', cursive;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
  margin: 0;
}
/* ============ DEPOIMENTOS SECTION ============ */
.depoimentos-section {
  padding: 80px 0;
  background-color: #f9f5ff;
}

.depoimento-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.depoimento-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.depoimento-texto {
  flex-grow: 1;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.depoimento-texto::before {
  content: """"";
  position: absolute;
  left: 0;
  top: 0;
  color: #7168A4;
  font-size: 3rem;
  font-family: serif;
  line-height: 1;
}

.depoimento-texto p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  position: relative;
  z-index: 1;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.depoimento-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7168A4;
  margin-right: 15px;
}

.depoimento-info h4 {
  color: #373252;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.depoimento-info p {
  color: #7168A4;
  margin: 0;
  font-size: 0.9rem;
}

/* Efeito hover sutil */
.depoimento-card:hover {
  transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 992px) {
  .depoimento-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .depoimento-texto {
    padding-left: 15px;
  }
  
  .depoimento-avatar {
    width: 50px;
    height: 50px;
  }
}
/* ============ PLANS SECTION ============ */
.plans-section {
  padding: 80px 0;
  background-image: url('../image/bg.jpg') !important;
  background-repeat: repeat;
}

.plano-box {
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 15px;
  background-color: var(--branco);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.plano-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: var(--vermelho);
}

.plan-name {
  color: var(--vermelho);
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2rem;
  color: var(--roxo-escuro);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.plan-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.plan-features li:last-child {
  border-bottom: none;
}

/* Botões de planos */
.btn-assinar {
  background-color: var(--roxo-claro);
  width: 100%;
  margin-bottom: 15px;
  border-radius: 50px;
  color: var(--branco);
  transition: all 0.3s ease;
}

.btn-assinar:hover {
  background-color: var(--roxo-escuro) !important;
}

.btn-login {
  background-color: var(--roxo-escuro);
  width: 100%;
  border-radius: 50px;
  color: var(--branco);
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #2a2842 !important;
}

.plan-comparison {
  margin-top: 50px;
}

.plan-comparison table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.plan-comparison thead {
  background-color: var(--roxo-escuro);
  color: var(--branco);
}

.plan-comparison tbody tr:nth-child(odd) {
  background-color: white; /* Linhas ímpares brancas */
}

.plan-comparison tbody tr:nth-child(even) {
  background-color: #f9f5ff; /* Linhas pares roxo bem claro */
}

.plan-comparison td {
  padding: 15px;
}

.plan-comparison td:first-child {
  font-weight: 600;
}

/* ============ FAQ SECTION ============ */
.faq-section {
  padding: 80px 0;
    background-image: url('../image/bg.jpg') !important;
  background-repeat: repeat;
  display: flex;
  justify-content: center;
}

.faq-container {
  width: 100%;
  max-width: 800px; /* Largura ideal para leitura */
  padding: 0 20px;
}

.collapsible {
  width: 100%;
  background: white;
  border: none;
  box-shadow: none;
  margin: 0;
}

.collapsible-header {
  background: white;
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid #e0d6ff; /* Linha divisória sutil */
  color: #373252;
  font-weight: 600;
}

.collapsible-header i {
  color: #7168A4;
  margin-right: 10px;
}

.collapsible-body {
  padding: 15px 0;
  border: none;
  background: white;
  color: #555;
}

/* ============ FOOTER ============ */
.page-footer {
  background-color: var(--roxo-escuro) !important;
  color: var(--branco);
  padding-top: 50px;
}

.footer-title {
  font-family: 'Racing Sans One', cursive;
  color: var(--roxo-claro);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-about {
  opacity: 0.8;
  margin-bottom: 20px;
}

.page-footer ul {
  margin-top: 0;
}

.page-footer ul li {
  margin-bottom: 10px;
}

.page-footer a {
  color: var(--branco);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.page-footer a:hover {
  color: var(--roxo-claro-hover);
  font-weight: 600;
  opacity: 1;
  padding-left: 5px;
}

.footer-copyright {
  background-color: rgba(0,0,0,0.3);
  padding: 20px 0;
}

/* ============ RESPONSIVE STYLES ============ */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-container {
    margin-top: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .counter-container {
    justify-content: center;
  }
  
  .step-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-hero {
    width: 100%;
  }
  
  .counter-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .community-text {
    font-size: 1.4rem;
  }
}

/* ============ BOTÕES DE ASSINATURA ============ */
#checkout-button {
  background-color: #7168A4 !important; /* Roxo claro */
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: none;
}

#checkout-button:hover {
  background-color: #373252 !important; /* Roxo escuro no hover */
  transform: translateY(-2px);
}

.btn-login {
  background-color: #373252 !important; /* Roxo escuro */
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: none;
}

.btn-login:hover {
  background-color: #2a2842 !important; /* Roxo mais escuro no hover */
  transform: translateY(-2px);
}