/* Globais e Variáveis */
:root {
   --primary-color: #00eaff; /* Ciano Tecnológico */
   --secondary-color: #4b4b4b;
   --text-color: #e0e0e0;
   --background-dark: #0a0a0c;
   --card-bg: #0c1a26; /* Novo Fundo Azul Escuro */
   --card-border: #1a324d; /* Nova Borda Azul Escuro */
   --glass-bg: rgba(0, 234, 255, 0.05);
   --glass-border: rgba(0, 234, 255, 0.2);
   --glow-effect: 0 0 10px #00eaff, 0 0 20px #00eaff;
   --neon-blue: #00eaff;
}

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

html {
   scroll-behavior: smooth;
}

body {
   font-family: 'Poppins', sans-serif;
   color: var(--text-color);
   line-height: 1.6;
   overflow-x: hidden;
   background: var(--background-dark);
}

.background-particles {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   background: radial-gradient(circle at 10% 10%, #0a0a0c, #1a1a20);
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1rem;
   position: relative;
   z-index: 10;
}

/* Animações e Efeitos */
@keyframes pulse-neon {
   0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 234, 255, 0.7); }
   70% { transform: scale(1.05); box-shadow: 0 0 10px 10px rgba(0, 234, 255, 0); }
   100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 234, 255, 0); }
}

@keyframes glow-text {
   0%, 100% { text-shadow: 0 0 5px var(--neon-blue); }
   50% { text-shadow: 0 0 15px var(--neon-blue), 0 0 25px var(--neon-blue); }
}

@keyframes mouse-scroll {
   0%   { transform: translateY(0); opacity: 1; }
   100% { transform: translateY(10px); opacity: 0; }
}

/* Hero Section */
.hero-section {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   position: relative;
   padding: 4rem 1rem;
}

.hero-content {
   max-width: 800px;
   z-index: 10;
}

.hero-title {
   font-family: 'Montserrat', sans-serif;
   font-size: 2rem;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 1rem;
   text-shadow: 0 0 5px rgba(0, 234, 255, 0.5);
}

@media (min-width: 768px) {
   .hero-title {
       font-size: 3rem;
   }
   .container {
       padding: 0 2rem;
   }
}

.hero-subtitle {
   font-size: 1rem;
   margin-bottom: 2rem;
}

strong {
   color: var(--primary-color);
}

.cta-button {
   display: inline-flex;
   align-items: center;
   padding: 0.8rem 2rem;
   background: transparent;
   color: var(--text-color);
   text-decoration: none;
   font-weight: 700;
   font-size: 1rem;
   border: 2px solid var(--neon-blue);
   border-radius: 50px;
   position: relative;
   overflow: hidden;
   transition: all 0.3s ease;
   box-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
}

.cta-button .cta-icon {
   font-size: 1.2rem;
   margin-right: 0.5rem;
   transition: transform 0.3s ease;
}

.cta-button:hover {
   background: var(--neon-blue);
   color: var(--background-dark);
   transform: scale(1.05);
   box-shadow: 0 0 20px rgba(0, 234, 255, 0.8);
}

.cta-button:hover .cta-icon {
   transform: rotate(30deg) scale(1.2);
}

.scroll-indicator {
   position: absolute;
   bottom: 2rem;
   left: 50%;
   transform: translateX(-50%);
   text-align: center;
   opacity: 0.7;
   transition: opacity 0.3s;
}

.scroll-indicator:hover {
   opacity: 1;
}

.mouse {
   width: 25px;
   height: 40px;
   border: 2px solid var(--text-color);
   border-radius: 50px;
   margin: 10px auto 0;
   position: relative;
}

.mouse:before {
   content: '';
   width: 6px;
   height: 6px;
   background: var(--text-color);
   border-radius: 50%;
   position: absolute;
   top: 5px;
   left: 50%;
   transform: translateX(-50%);
   animation: mouse-scroll 1.5s infinite;
}

/* Sections */
section {
   padding: 4rem 0;
   position: relative;
   z-index: 5;
}

.section-title {
   font-family: 'Montserrat', sans-serif;
   font-size: 1.8rem;
   text-align: center;
   margin-bottom: 3rem;
   position: relative;
   letter-spacing: 1px;
}

@media (min-width: 768px) {
   section {
       padding: 6rem 0;
   }
   .section-title {
       font-size: 2.5rem;
       margin-bottom: 4rem;
   }
}

.section-title::after {
   content: '';
   display: block;
   width: 60px;
   height: 3px;
   background: var(--primary-color);
   margin: 1rem auto 0;
   border-radius: 2px;
}

/* Video Section */
.video-section {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 2rem;
}

.video-container {
   position: relative;
   width: 100%;
   max-width: 800px;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 0 30px rgba(0, 234, 255, 0.2); /* Sombra Neon Azul */
}

.video-placeholder {
   width: 100%;
   height: 0;
   padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
   background: linear-gradient(45deg, #222226, #0a0a0c);
   position: relative;
   cursor: pointer;
}

.video-overlay {
   position: absolute;
   top: 50%; /* Centralizado */
   left: 50%; /* Centralizado */
   transform: translate(-50%, -50%); /* Centralizado */
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   background: rgba(0, 0, 0, 0.4);
   color: #fff;
   font-size: 1.2rem;
   font-weight: 600;
}

.play-button {
   position: absolute;
   z-index: 10;
   background: var(--primary-color);
   border: none;
   border-radius: 50%;
   width: 60px; /* Aumentei para ficar mais visível */
   height: 60px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   transition: transform 0.3s ease;
   top: 50%; /* Centralizado */
   left: 50%; /* Centralizado */
   transform: translate(-50%, -50%); /* Centralizado */
}

.play-button:hover {
   transform: scale(1.1) translate(-50%, -50%); /* Mantém o translate no hover */
}

.play-button svg {
   fill: var(--background-dark);
   width: 20px;
   height: 20px;
   transform: translateX(2px);
}

.video-text {
   max-width: 800px;
   text-align: center;
   font-style: italic;
   font-size: 1rem;
   position: relative;
   margin-top: 2rem;
}

.social-proof {
   display: flex;
   align-items: center;
   margin-top: 1rem;
   font-size: 0.9rem;
}

.proof-line {
   width: 25px;
   height: 2px;
   background: var(--primary-color);
   margin-right: 0.5rem;
}

/* Benefits Grid */
.benefits-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
}

.benefit-card {
   background: var(--card-bg);
   border: 1px solid var(--card-border);
   border-radius: 10px;
   padding: 1.5rem;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover {
   transform: translateY(-5px) scale(1.02);
   box-shadow: 0 10px 25px rgba(0, 234, 255, 0.1);
}

.benefit-icon {
   font-size: 2rem;
   color: var(--primary-color);
   margin-bottom: 0.8rem;
}

.benefit-icon svg {
   width: 2rem;
   height: 2rem;
   stroke: currentColor;
}

/* About Section */
.about-section {
   background: linear-gradient(90deg, #111115 0%, #0a0a0c 100%);
   border-radius: 15px;
   padding: 2rem;
}

.author-bio {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1.5rem;
   text-align: center;
}

.author-photo {
   width: 120px;
   height: 120px;
   border-radius: 50%;
   object-fit: cover;
   border: 3px solid var(--primary-color);
   box-shadow: 0 0 10px rgba(0, 234, 255, 0.3);
}

.author-text {
   max-width: 700px;
   font-size: 1rem;
}

/* Product & Course List */
.product-grid, .course-list {
   display: grid;
   grid-template-columns: 1fr;
   gap: 1rem;
}

@media (min-width: 600px) {
   .product-grid, .course-list {
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 1.5rem;
   }
}

.product-item, .course-item {
   background: var(--card-bg);
   border: 1px solid var(--card-border);
   border-radius: 10px;
   padding: 1rem;
   display: flex;
   align-items: center;
   gap: 0.8rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover, .course-item:hover {
   transform: translateX(5px);
   box-shadow: 0 5px 15px rgba(0, 234, 255, 0.1);
}

.product-icon, .course-item svg {
   font-size: 1.5rem;
   color: var(--primary-color);
}

/* Depoimentos com Imagens */
.testimonials-section {
   padding: 4rem 0;
}

.testimonials-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1rem;
}

@media (min-width: 768px) {
   .testimonials-grid {
       grid-template-columns: repeat(3, 1fr);
       gap: 2rem;
   }
}

.testimonial-img {
   width: 100%;
   height: auto;
   border-radius: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-img:hover {
   transform: scale(1.05);
   box-shadow: 0 10px 25px rgba(0, 234, 255, 0.1);
}

/* Learn Section */
.learn-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 1.5rem;
   text-align: center;
}

.learn-item {
   background: var(--card-bg);
   border-radius: 10px;
   padding: 1.5rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(0, 234, 255, 0.1);
}

.learn-icon {
   font-size: 2rem;
   color: var(--primary-color);
   margin-bottom: 0.8rem;
}

/* Offer Section */
.offer-section {
   background: linear-gradient(45deg, #111115 0%, #0a0a0c 100%);
   border-radius: 15px;
   padding: 2rem;
   display: flex;
   justify-content: center;
   align-items: center;
}

.offer-card {
   background: var(--card-bg);
   border: 2px solid var(--neon-blue);
   border-radius: 15px;
   padding: 2rem;
   text-align: center;
   max-width: 500px;
   box-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
   position: relative;
   overflow: hidden;
}

.offer-title {
   font-family: 'Montserrat', sans-serif;
   font-size: 1.5rem;
   color: var(--primary-color);
   margin-bottom: 1rem;
}

.pricing {
   margin: 1.5rem 0;
}

.price-old {
   text-decoration: line-through;
   color: #888;
   font-size: 1rem;
}

.price-current {
   font-family: 'Montserrat', sans-serif;
   font-size: 3rem;
   font-weight: 700;
   line-height: 1;
   color: var(--text-color);
   text-shadow: 0 0 5px rgba(0, 234, 255, 0.5);
}

.price-installments {
   font-size: 1rem;
   color: #aaa;
   margin-top: 0.5rem;
}

.bonus-list ul {
   list-style: none;
   text-align: left;
   margin-top: 1rem;
   font-size: 0.9rem;
}

.bonus-list li {
   display: flex;
   align-items: center;
   margin-bottom: 0.5rem;
}

.bonus-icon {
   color: var(--primary-color);
   margin-right: 0.8rem;
   font-size: 1.2rem;
}

.guarantee {
   margin-top: 1.5rem;
   border-top: 1px solid #2e2e33;
   padding-top: 1rem;
}

.cta-button-final {
   display: inline-flex;
   align-items: center;
   padding: 1rem 2rem;
   background: transparent;
   color: var(--text-color);
   text-decoration: none;
   font-weight: 700;
   font-size: 1.1rem;
   border: 2px solid var(--neon-blue);
   border-radius: 50px;
   position: relative;
   overflow: hidden;
   transition: all 0.3s ease;
   margin-top: 1.5rem;
   animation: pulse-neon 2s infinite;
}

.cta-button-final:hover {
   background: var(--neon-blue);
   color: var(--background-dark);
   transform: scale(1.05);
   box-shadow: 0 0 20px rgba(0, 234, 255, 0.8);
}

/* Footer */
.footer-cta {
   text-align: center;
   padding: 2rem 0;
   border-top: 1px solid #2e2e33;
}

.footer-title {
   font-family: 'Montserrat', sans-serif;
   font-size: 1.5rem;
   margin-bottom: 1rem;
   text-shadow: 0 0 5px rgba(0, 234, 255, 0.3);
}

.footer-text, .footer-question {
   font-size: 1rem;
   max-width: 600px;
   margin: 0 auto 1.5rem;
}

.credit {
   margin-top: 1.5rem;
   font-size: 0.7rem;
   color: #555;
}
