.elementor-8234 .elementor-element.elementor-element-3f75b5c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8234 .elementor-element.elementor-element-3f75b5c.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-8234 .elementor-element.elementor-element-1dc6be8 > .elementor-widget-container{margin:5px 0px -18px 0px;}.elementor-8234 .elementor-element.elementor-element-1dc6be8.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-8234 .elementor-element.elementor-element-1dc6be8{z-index:999;}.elementor-8234 .elementor-element.elementor-element-1dc6be8 img{opacity:0.57;}.elementor-8234 .elementor-element.elementor-element-f881c55 > .elementor-widget-container{margin:-237px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-8234 .elementor-element.elementor-element-f881c55{z-index:9;text-align:center;}.elementor-8234 .elementor-element.elementor-element-f881c55 img{width:100%;opacity:0.1;}.elementor-8234 .elementor-element.elementor-element-547d36f{width:100%;max-width:100%;z-index:0;}.elementor-8234 .elementor-element.elementor-element-547d36f > .elementor-widget-container{background-color:#000000;margin:1px 1px 1px 1px;padding:0px 0px 0px 0px;}.elementor-8234 .elementor-element.elementor-element-547d36f.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-8234 .elementor-element.elementor-element-1dc6be8{width:100%;max-width:100%;z-index:99;text-align:center;}.elementor-8234 .elementor-element.elementor-element-1dc6be8 > .elementor-widget-container{margin:0px 0px -2px 0px;padding:0px 0px 0px 0px;}.elementor-8234 .elementor-element.elementor-element-1dc6be8.elementor-element{--align-self:center;}.elementor-8234 .elementor-element.elementor-element-1dc6be8 img{width:34%;}.elementor-8234 .elementor-element.elementor-element-f881c55 > .elementor-widget-container{margin:-114px 0px 0px 0px;}.elementor-8234 .elementor-element.elementor-element-547d36f > .elementor-widget-container{margin:-158px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-8234 .elementor-element.elementor-element-547d36f{z-index:0;}}@media(min-width:768px){.elementor-8234 .elementor-element.elementor-element-3f75b5c{--width:98.784%;}}/* Start custom CSS for image, class: .elementor-element-f881c55 *//* Estilo base para a imagem com fade */
.image-fade-container {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.image-fade-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

/* Efeito de hover na imagem */
.image-fade-container:hover img {
  transform: scale(1.05);
}

/* Fade no topo da imagem */
.image-fade-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

/* Fade na base da imagem */
.image-fade-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 0 0 20px 20px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-547d36f */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  animation: bodyFadeIn 0.8s ease-out forwards;
}

/* ============================================
   ANIMAÇÕES GLOBAIS
   ============================================ */

/* Animação de fade-in para o body */
@keyframes bodyFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Animação fadeInUp - aparece de baixo para cima */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação com zoom e fade para o hero */
@keyframes heroScaleFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animação glow pulsante */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
  }
}

/* Animação flutuante */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animação de fade para seções */
@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SCROLLBAR PERSONALIZADA
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #00ff88, #00c853);
  border-radius: 4px;
}

/* ============================================
   GRADIENTE NO TOPO DA PÁGINA
   ============================================ */

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, 
    rgba(10, 10, 10, 1) 0%,
    rgba(10, 10, 10, 0.95) 30%,
    rgba(10, 10, 10, 0.8) 60%,
    transparent 100%);
  pointer-events: none;
  z-index: 10;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   HERO SECTION - COM FADE NO INÍCIO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(500deg, #0a0a0a 0%, #1a1a2e 100%);
  overflow: hidden;
  animation: heroScaleFade 1s ease-out forwards;
}

.hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,255,136,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s linear infinite;
  opacity:0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  opacity: 100;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

/* Elementos do hero com fade sequencial */
.badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #00ff88;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero p {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.btn-primary {
  background: linear-gradient(45deg, #00ff88, #00c853);
  color: #0a0a0a;
  animation: glowPulse 2s infinite;
  opacity: 0;
  animation: glowPulse 2s infinite, fadeInUp 0.8s ease-out 0.6s forwards;
}

.btn-primary:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.monthly-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 83, 0.1));
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #00ff88;
  margin-top: 15px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.monthly-badge i {
  font-size: 1rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00ff88;
}

.stat-label {
  font-size: 0.95rem;
  color: #888;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 48px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid #00ff88;
  color: #00ff88;
}

.btn-outline:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   SEÇÕES - COM FADE ENTRE ELAS
   ============================================ */

.section {
  padding: 100px 0;
  position: relative;
}

/* Efeito de fade entre seções - gradiente suave */
.section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.03));
  pointer-events: none;
  z-index: 1;
}

.section:first-of-type::before {
  display: none;
}

/* Efeito de fade nas bordas das seções escuras */
.section-dark {
  background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
  position: relative;
}

.section-dark::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, transparent, rgba(0, 255, 136, 0.03));
  pointer-events: none;
  z-index: 1;
}

.section-dark:last-of-type::after {
  display: none;
}

/* Efeito de fade quando a seção entra na viewport */
.section-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 60px;
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CARDS GRID
   ============================================ */

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.card-icon {
  font-size: 3.5rem;
  color: #00ff88;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.card p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Grid Diferencial - 3 colunas */
.grid-diferencial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

/* ============================================
   VÍDEO
   ============================================ */

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 83, 0.05));
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  background: #000;
}

.video-wrapper:hover {
  border-color: #00ff88;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
  transform: scale(1.02);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  text-align: center;
  margin-top: 20px;
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.video-caption i {
  color: #00ff88;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00ff88, #00c853);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.85rem;
  color: #00ff88;
}

/* ============================================
   CONTADOR
   ============================================ */

.countdown-container {
  text-align: center;
  margin: 40px 0;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.countdown-item {
  background: rgba(0, 0, 0, 0.8);
  padding: 25px;
  border-radius: 15px;
  min-width: 120px;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.countdown-number {
  font-size: 3rem;
  font-weight: 800;
  color: #00ff88;
  font-family: monospace;
}

.countdown-label {
  font-size: 0.9rem;
  color: #888;
  margin-top: 8px;
}

/* ============================================
   PREÇO
   ============================================ */

.price-box {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 83, 0.1));
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  border: 2px solid rgba(0, 255, 136, 0.3);
  max-width: 550px;
  margin: 0 auto;
}

.old-price {
  font-size: 1.8rem;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.current-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 10px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #050505;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h4 {
  color: #00ff88;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section p {
  color: #888;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
  font-size: 0.9rem;
}

/* Botão centralizado */
.btn-center {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   ANIMAÇÃO DE ENTRADA PARA ELEMENTOS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MEDIA QUERIES - DESKTOP
   ============================================ */

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
    padding: 0 60px;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 3.2rem;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .container {
    padding: 0 30px;
  }
  
  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .card h3 {
    font-size: 1.2rem;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
}

/* ============================================
   MEDIA QUERIES - TABLET
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-diferencial {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .countdown-item {
    min-width: 100px;
    padding: 20px;
  }
  
  .countdown-number {
    font-size: 2.5rem;
  }
}

/* ============================================
   MEDIA QUERIES - MOBILE
   ============================================ */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .grid-diferencial {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .countdown-item {
    min-width: 70px;
    padding: 15px;
  }
  
  .countdown-number {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .stats {
    gap: 25px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .video-container {
    padding: 10px;
  }
  
  .price-box {
    padding: 30px 20px;
  }
  
  .current-price {
    font-size: 2.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 1rem;
    white-space: normal;
  }
  
  .monthly-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }
  
  /* Ajuste dos fades no mobile */
  .section::before,
  .section-dark::after {
    height: 50px;
    top: -25px;
  }
  
  .section-dark::after {
    bottom: -25px;
  }
}/* End custom CSS */