/* =========================================
   ESTILOS BASE
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: #000; color: #fff; overflow-x: hidden; }

.main-header { background-color: #000; padding: 20px; text-align: center; }
.logo { max-height: 50px; }

.hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.hero h1 { font-size: 3.5rem; }
.hero h1 span { color: #4cd137; font-weight: 700; }

/* LOGO COM BRILHO ULTRA EXTREMO */
.hero-logo-direita { 
    position: absolute; 
    right: 40px; 
    top: 32%; 
    width: 220px; 
    animation: glowPulseUltra 5s ease-in-out infinite;
    will-change: filter, transform;
}

/* BARRA LATERAL FIXA - ÍCONES SOCIAIS */
.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-sidebar a {
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-sidebar a:hover {
    background-color: #4cd137;
    color: #fff;
    transform: scale(1.1);
}

/* =========================================
   POR QUE EXISTIMOS
   ========================================= */
.about-modern {
    background-color: #0a0a0a;
    padding: 120px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 209, 55, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-content-card {
    position: relative;
    z-index: 2;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-icon { font-size: 2.5rem; color: #4cd137; margin-bottom: 20px; }
.about-modern h2 { font-size: 2.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.about-divider { width: 80px; height: 4px; background: #4cd137; margin: 0 auto 30px; border-radius: 2px; }
.about-modern p { font-size: 1.25rem; line-height: 1.8; color: #ccc; font-weight: 400; }
.highlight-green { color: #4cd137; }

/* =========================================
   COMO FUNCIONA
   ========================================= */
.how-it-works { 
    background-color: #1a832d; 
    background-image: radial-gradient(circle at center, #229a36 0%, #166e25 100%);
    padding: 100px 20px 60px 20px; 
    text-align: center; 
    position: relative;
}

.how-it-works h2 { font-size: 2.8rem; color: #fff; text-transform: uppercase; font-weight: 800; margin-bottom: 10px; }
.text-glow { text-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }
.subtitle-section { color: #e0e0e0; font-weight: 500; margin-bottom: 80px; }
.steps-flow-container { display: flex; justify-content: space-around; max-width: 1300px; margin: 0 auto; position: relative; }
.connecting-line { position: absolute; top: 65%; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); z-index: 1; }
.flow-step { flex: 1; z-index: 2; perspective: 1000px; }
.flow-description { color: #fff; font-weight: 700; font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 30px; min-height: 45px; opacity: 0.9; }
.icon-box { width: 130px; height: 130px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: all 0.3s ease; }
.icon-box i { font-size: 3.5rem; color: #fff; }
.flow-label { background: #000; color: #4cd137; padding: 10px 30px; border-radius: 12px; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; }
.flow-step:hover .icon-box { transform: scale(1.1) translateY(-10px); background: rgba(255, 255, 255, 0.2); border-color: #fff; }

/* =========================================
   CONEXÕES MENU
   ========================================= */
.connection-menu { background-color: #166e25; padding: 0 20px 100px 20px; display: flex; flex-direction: column; align-items: center; }
.buttons-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 1200px; }
.conn-btn { text-decoration: none; color: #fff; background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); padding: 18px 35px; border-radius: 15px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; transition: all 0.4s ease; text-align: center; min-width: 220px; }
.conn-btn:hover { background: #4cd137; color: #000; transform: translateY(-8px); border-color: #4cd137; }

.description-box { margin-top: 40px; max-width: 900px; background: rgba(0, 0, 0, 0.5); padding: 30px; border-radius: 20px; border: 1px solid rgba(76, 209, 55, 0.3); text-align: center; display: none; animation: fadeIn 0.5s ease forwards; }
.description-box p { font-size: 1.1rem; line-height: 1.6; color: #e0e0e0; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   CARROSSEL DE VÍDEOS
   ========================================= */
.video-section { background-color: #0a0a0a; padding: 80px 20px; text-align: center; }
.carousel-container { position: relative; display: flex; align-items: center; max-width: 1200px; margin: 0 auto; }
.video-carousel { display: flex; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; gap: 20px; padding: 20px 0; scrollbar-width: none; }
.video-carousel::-webkit-scrollbar { display: none; }
.video-card { min-width: 80%; scroll-snap-align: center; transition: transform 0.3s ease; }
.video-wrapper { width: 100%; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden; background: #000; border: 1px solid rgba(76, 209, 55, 0.3); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.video-wrapper iframe { width: 100%; height: 100%; }
.carousel-btn { background: rgba(76, 209, 55, 0.2); border: 1px solid #4cd137; color: #4cd137; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; position: absolute; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: 0.3s; backdrop-filter: blur(5px); }
.carousel-btn:hover { background: #4cd137; color: #000; box-shadow: 0 0 20px rgba(76, 209, 55, 0.6); }
.prev { left: -25px; } .next { right: -25px; }

/* =========================================
   SEÇÃO APP
   ========================================= */
.app-section { background-color: #0a0a0a; padding: 100px 20px; display: flex; justify-content: center; overflow: hidden; }
.app-content { max-width: 1200px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.app-text-card { flex: 1; background: rgba(255, 255, 255, 0.03); padding: 50px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); }
.app-text-card h2 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 15px; }
.highlight-text { background: linear-gradient(90deg, #4cd137, #229a36); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.app-subtitle { color: #999; font-size: 1.1rem; margin-bottom: 30px; }
.app-features { list-style: none; margin-bottom: 40px; }
.app-features li { font-size: 1rem; margin-bottom: 15px; display: flex; align-items: center; color: #ddd; }
.app-features li i { color: #4cd137; font-size: 1.2rem; margin-right: 15px; }
.store-container { display: flex; gap: 15px; }
.btn-store { background: #111; color: #fff; padding: 12px 25px; border-radius: 12px; text-decoration: none; font-weight: 600; border: 1px solid #333; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.btn-store:hover { background: #4cd137; color: #000; transform: translateY(-3px); }
.app-visual { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; }
.phone-img { max-width: 450px; z-index: 2; filter: drop-shadow(0 0 50px rgba(76, 209, 55, 0.2)); }
.glow-effect { position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(76, 209, 55, 0.15) 0%, transparent 70%); z-index: 1; }

/* =========================================
   SEÇÃO DE BENEFÍCIOS
   ========================================= */
.benefits-green { background: #050505; padding: 100px 20px; display: flex; justify-content: center; position: relative; overflow: hidden; }
.benefits-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(76, 209, 55, 0.08) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; }
.benefits-container { background: rgba(15, 15, 15, 0.6); backdrop-filter: blur(20px); border: 1px solid rgba(76, 209, 55, 0.2); padding: 60px; border-radius: 40px; max-width: 1000px; width: 100%; position: relative; z-index: 2; }
.benefits-container h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px; font-weight: 800; }
.benefits-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; list-style: none; }
.benefits-list li { display: flex; align-items: center; gap: 15px; background: rgba(255, 255, 255, 0.03); padding: 20px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s; }
.benefits-list li:hover { background: rgba(76, 209, 55, 0.05); transform: translateX(10px); }
.check-icon { width: 35px; height: 35px; background: #4cd137; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon i { color: #000; }

/* =========================================
   FOOTER
   ========================================= */
.main-footer { background: #000; padding: 50px 20px; text-align: center; border-top: 5px solid #4cd137; }
.social-links a { color: #fff; font-size: 1.5rem; margin: 0 10px; }
.copyright { margin-top: 20px; color: #999; font-size: 0.8rem; }

/* =========================================
   RESPONSIVIDADE E KEYFRAMES
   ========================================= */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-logo-direita { width: 150px; top: 10%; right: 20px; }
    .social-sidebar { left: 10px; }
    .social-sidebar a { width: 38px; height: 38px; font-size: 1.2rem; }
}

@keyframes glowPulseUltra {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(76, 209, 55, 0.4));
    }
    40%, 60% { 
        opacity: 1; 
        transform: scale(1.08); 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1))
                drop-shadow(0 0 40px rgba(76, 209, 55, 1))
                drop-shadow(0 0 80px rgba(76, 209, 55, 1))
                drop-shadow(0 0 150px rgba(76, 209, 55, 0.9))
                drop-shadow(0 0 250px rgba(76, 209, 55, 0.7))
                drop-shadow(0 0 350px rgba(76, 209, 55, 0.5))
                brightness(1.5) contrast(1.2);
    }
}
/* Ajuste na caixa do ícone para receber imagens */
.icon-box {
    overflow: hidden; /* Garante que a imagem fique dentro do círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Cria um respiro entre a borda do círculo e a imagem */
}

/* Estilização da imagem dentro do círculo */
.step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mantém a proporção da imagem sem cortar */
    transition: transform 0.3s ease;
}

/* Efeito de zoom na imagem quando passar o mouse no card */
.flow-step:hover .step-icon-img {
    transform: scale(1.1);
}