/* ========================================
   VARIÁVEIS E RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e1f845;
    --primary-dark: #b8c92e;
    --primary-light: #f0fc8a;
    --dark: #0a120f;
    --dark-light: #1a241f;
    --gray: #2a342f;
    --text: #ffffff;
    --text-secondary: #a0a8a5;
    --error: #f44336;
    --success: #4CAF50;
    --warning: #FF9800;
}

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

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

/* ========================================
   NAVEGAÇÃO PRINCIPAL
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 18, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(225, 248, 69, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nomeapp {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Links sociais e divisores - escondidos no desktop */
.nav-menu .menu-divider,
.nav-menu .menu-social {
    display: none;
}

/* Botão hambúrguer */
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    background: none;
    border: none;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
    color: var(--primary);
}

/* ========================================
   OVERLAY DO MENU MOBILE
   ======================================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   MENU MOBILE - LINKS SOCIAIS
   ======================================== */
.menu-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray), transparent);
    margin: 1rem auto;
}

.menu-social {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0.5rem;
}

.menu-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-social-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.menu-social-link.playstore i {
    color: var(--primary);
}

.menu-social-link.github i {
    color: #ffffff;
}

.menu-social-link.linkedin i {
    color: #0077b5;
}

.menu-social-link.instagram i {
    color: #e4405f;
}

.menu-social-link:hover {
    transform: translateX(5px);
    background: rgba(225, 248, 69, 0.1);
    border-color: rgba(225, 248, 69, 0.3);
}

.menu-social-link span {
    flex: 1;
}

/* ========================================
   RESPONSIVO - MOBILE (até 768px)
   ======================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 80px 1.5rem 2rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(225, 248, 69, 0.2);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(225, 248, 69, 0.1);
        color: var(--primary);
    }
    
    .nav-menu .nav-link.active {
        background: rgba(225, 248, 69, 0.15);
        color: var(--primary);
    }
    
    .nav-menu .nav-link.active::after {
        display: none;
    }
    
    .nav-menu .menu-divider,
    .nav-menu .menu-social {
        display: flex;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 0 5%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 240px;
    }
    
    .benefits-content {
        flex-direction: column;
    }
    
    .about-grid {
        flex-direction: column;
    }
    
    .inspiration-box {
        flex-direction: column;
        padding: 1.2rem;
    }
    
    .inspiration-box i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-slide {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .carousel-image img {
        max-width: 200px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .section-spacer {
        height: 40px;
    }
    
    .privacy-card {
        padding: 1.5rem;
    }
}

/* ========================================
   RESPONSIVO - TABLET (769px - 1024px)
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 0 5%;
        gap: 2rem;
    }
    
    .phone-mockup {
        width: 260px;
    }
}

/* ========================================
   RESPONSIVO - TELAS GRANDES (acima 1440px)
   ======================================== */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* ========================================
   SEÇÃO HERO
   ======================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 248, 69, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(225, 248, 69, 0.3);
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-highlight {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--gray);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.phone-mockup {
    width: 280px;
    height: auto;
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 40px;
}

/* ========================================
   FEATURES (CARACTERÍSTICAS)
   ======================================== */
.features {
    padding: 80px 0;
    background: var(--dark-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--dark);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid var(--gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(225, 248, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   BENEFÍCIOS
   ======================================== */
.benefits {
    padding: 80px 0;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

.benefit-item h4 {
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.benefits-image {
    flex: 1;
}

.stats-card {
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--gray);
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
}

.stats-card-header i {
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-desc {
    color: var(--text-secondary);
}

/* ========================================
   COMO FUNCIONA (PASSOS)
   ======================================== */
.steps-section {
    padding: 80px 0;
}

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

.step-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--gray);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    margin: 1.5rem 0;
}

.step-icon i {
    font-size: 3rem;
    color: var(--primary);
}

/* ========================================
   CARROSSEL
   ======================================== */
.carousel-section {
    padding: 60px 0;
    background: var(--dark-light);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--dark);
    border-radius: 24px;
}

.carousel-image {
    flex: 1;
    text-align: center;
}

.carousel-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-caption {
    flex: 1;
    padding: 1rem;
}

.step-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.carousel-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.carousel-caption p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tip-box {
    background: rgba(225, 248, 69, 0.1);
    border-left: 3px solid var(--primary);
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.tip-box i {
    color: var(--primary);
    font-size: 1.2rem;
}

.tip-box span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-btn i {
    color: var(--dark);
    font-size: 1.2rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots .dot.active {
    width: 25px;
    background: var(--primary);
    border-radius: 5px;
}

/* ========================================
   QUEM SOMOS
   ======================================== */
.about-section {
    padding: 60px 0;
}

.about-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-values {
    flex: 1;
    background: var(--dark-light);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--gray);
}

.about-values h3 {
    margin-bottom: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.inspiration-box {
    background: linear-gradient(135deg, rgba(225, 248, 69, 0.1) 0%, rgba(225, 248, 69, 0.05) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    transition: transform 0.3s;
}

.inspiration-box:hover {
    transform: translateX(5px);
}

.inspiration-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.inspiration-box h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.inspiration-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.inspiration-box p:last-child {
    margin-bottom: 0;
}

.inspiration-box strong {
    color: var(--primary);
}

/* ========================================
   DESENVOLVEDOR
   ======================================== */
.developer {
    padding: 60px 0;
}

.developer-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    color: var(--dark);
}

.developer-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.developer-card h3 {
    margin-bottom: 1rem;
}

.developer-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--dark);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* ========================================
   CTA (CHAMADA PARA AÇÃO)
   ======================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ========================================
   POLÍTICA DE PRIVACIDADE
   ======================================== */
.privacy-content {
    padding: 60px 0;
}

.privacy-card {
    background: var(--dark-light);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--gray);
}

.privacy-card h2 {
    color: var(--primary);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.privacy-card h2:first-child {
    margin-top: 0;
}

.privacy-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray);
    text-align: center;
}

.privacy-footer i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ========================================
   RODAPÉ (FOOTER)
   ======================================== */
.footer {
    background: var(--dark-light);
    padding: 60px 0 30px;
    border-top: 1px solid var(--gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 5px;
}

.footer-brand span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 250px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ========================================
   ESPAÇO ENTRE SEÇÕES
   ======================================== */
.section-spacer {
    height: 60px;
    background: transparent;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .hero-image {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card, .step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover, .step-card:hover {
    transform: translateY(-5px);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   HERO COM EFEITO DE SCROLL
   ======================================== */
.hero-scroll {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    padding: 120px 0 200px;
}

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

.hero-scroll-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-scroll-header {
    flex: 1;
    min-width: 300px;
}

.hero-scroll-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-scroll-title .highlight {
    color: var(--primary);
    display: block;
}

.hero-scroll-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-scroll-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Card com efeito 3D */
.hero-scroll-card {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.phone-mockup-scroll {
    width: 280px;
    background: var(--dark-light);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.1s ease-out;
    border: 3px solid var(--gray);
}

.app-screenshot-scroll {
    width: 100%;
    height: auto;
    display: block;
}

/* Classes para animação (adicionadas via JS) */
.phone-mockup-scroll.animate {
    transform: rotateX(var(--rotate)) scale(var(--scale));
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3), 0 9px 20px rgba(0, 0, 0, 0.29), 0 37px 37px rgba(0, 0, 0, 0.26), 0 84px 50px rgba(0, 0, 0, 0.15);
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-scroll-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-scroll-title {
        font-size: 2rem;
    }
    
    .hero-scroll-buttons {
        justify-content: center;
    }
    
    .phone-mockup-scroll {
        width: 240px;
    }
}

/* ========================================
   EFEITO DE TEXTO EMBARALHADO
   ======================================== */
.scramble-text {
    display: inline-block;
    position: relative;
}

.dud-char {
    color: var(--primary);
    opacity: 0.8;
    animation: blink 0.1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

/* ========================================
   EFEITO DE TEXTO EMBARALHADO
   ======================================== */
.scramble-text {
    display: inline-block;
    position: relative;
}

.dud-char {
    color: var(--primary);
    opacity: 0.8;
    animation: blink 0.08s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.8; text-shadow: 0 0 2px var(--primary); }
    50% { opacity: 0.3; text-shadow: 0 0 5px var(--primary); }
}

/* ========================================
   EFEITO MATRIX RAIN (LETRAS CAINDO) - MAIS ESCURO
   ======================================== */
.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;  /* Reduzido de 0.35 para 0.2 - mais escuro */
    pointer-events: none;
}

/* Overlay escuro para melhorar contraste do texto */
.hero-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, var(--dark) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.hero-scroll {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-scroll-container {
    position: relative;
    z-index: 2;
}

/* Aumentar contraste do texto */
.hero-scroll-header {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-scroll-title .highlight {
    text-shadow: 0 0 15px rgba(225, 248, 69, 0.3);
}

/* ========================================
   BANNER DE COOKIES
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-container {
    max-width: 500px;
    background: var(--dark-light);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(225, 248, 69, 0.2);
    backdrop-filter: blur(10px);
}

.cookie-icon {
    text-align: center;
    margin-bottom: 15px;
}

.cookie-icon i {
    font-size: 40px;
    color: var(--primary);
}

.cookie-content h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.cookie-content p a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-accept {
    background: var(--primary);
    color: var(--dark);
}

.cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--gray);
}

.cookie-reject:hover {
    border-color: var(--error);
    color: var(--error);
}

.cookie-customize {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--gray);
}

.cookie-customize:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========================================
   MODAL DE PERSONALIZAÇÃO DE COOKIES
   ======================================== */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    width: 90%;
    max-width: 500px;
    background: var(--dark-light);
    border-radius: 20px;
    border: 1px solid rgba(225, 248, 69, 0.2);
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid var(--gray);
    position: relative;
}

.cookie-modal-header i {
    font-size: 24px;
    color: var(--primary);
}

.cookie-modal-header h3 {
    flex: 1;
    color: var(--text);
    font-size: 1.2rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.cookie-modal-close:hover {
    color: var(--error);
}

.cookie-modal-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-info {
    display: flex;
    gap: 12px;
    flex: 1;
}

.cookie-option-info i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.cookie-option-info h4 {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cookie-option-info p {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

/* Switch personalizado */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray);
    transition: 0.3s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid var(--gray);
    text-align: center;
}

.cookie-save {
    background: var(--primary);
    color: var(--dark);
    width: 100%;
    justify-content: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .cookie-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        justify-content: center;
    }
    
    .cookie-option {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .cookie-switch {
        align-self: flex-end;
    }
}

/* Bipar */
        /* Estilos para a seção BIPAR com imagens ao lado */
        .bipar-step-with-image {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 50px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 24px;
            padding: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(225, 248, 69, 0.1);
        }
        
        .bipar-step-with-image:hover {
            transform: translateY(-3px);
            border-color: rgba(225, 248, 69, 0.3);
            background: rgba(225, 248, 69, 0.03);
        }
        
        .bipar-step-with-image.reverse {
            flex-direction: row-reverse;
        }
        
        .bipar-step-content {
            flex: 1;
            display: flex;
            gap: 20px;
        }
        
        .step-number-bipar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e1f845, #8bc34a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: #0a120f;
            flex-shrink: 0;
        }
        
        .step-text {
            flex: 1;
        }
        
        .step-text h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #e1f845;
        }
        
        .step-text p {
            color: #ccddcc;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .step-text ul {
            margin-top: 10px;
            padding-left: 20px;
        }
        
        .step-text li {
            color: #8899aa;
            margin-bottom: 5px;
        }
        
        .step-text li strong {
            color: #e1f845;
        }
        
        .bipar-step-image {
            flex: 0.8;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .bipar-step-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .bipar-step-image:hover img {
            transform: scale(1.02);
        }
        
        .tip-badge {
            display: inline-block;
            background: rgba(225, 248, 69, 0.15);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #e1f845;
            margin-top: 12px;
        }
        
        .flex-warning {
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 87, 34, 0.1));
            border-left: 3px solid #ff9800;
            padding: 12px 15px;
            border-radius: 12px;
            margin-top: 15px;
        }
        
        .flex-warning i {
            color: #ff9800;
            margin-right: 10px;
        }
        
        .flex-warning span {
            color: #ff9800;
            font-weight: 500;
        }
        
        .bipar-tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }
        
        .tip-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(225, 248, 69, 0.1);
            transition: all 0.3s ease;
        }
        
        .tip-card:hover {
            transform: translateY(-5px);
            border-color: rgba(225, 248, 69, 0.3);
        }
        
        .tip-icon {
            width: 60px;
            height: 60px;
            background: rgba(225, 248, 69, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.8rem;
            color: #e1f845;
        }
        
        .tip-card h4 {
            margin-bottom: 10px;
            color: #e1f845;
        }
        
        .tip-card p {
            color: #8899aa;
            font-size: 0.9rem;
        }
        
        .bipar-cta {
            text-align: center;
            margin-top: 50px;
        }
        
        .btn-bipar {
            background: linear-gradient(135deg, #e1f845, #8bc34a);
            color: #0a120f;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: bold;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }
        
        .btn-bipar:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(225, 248, 69, 0.3);
        }
        
        .qr-code-icon {
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        
        @media (max-width: 768px) {
            .bipar-step-with-image {
                flex-direction: column !important;
                padding: 20px;
            }
            .bipar-step-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .step-number-bipar {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            .bipar-header h2 {
                font-size: 1.8rem;
            }
            .step-text ul {
                text-align: left;
            }
        }