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

:root {
    --bg-color: #0a0a0a;
    --text-color: #FFFFFF;
    --neon-blue: #00FFFF;
    --neon-purple: #8A2BE2;
    --neon-green: #39FF14;
    --gray-text: #b0b0b0;
    --light-gray: #f8f9fa;
    --footer-bg: #00001a;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.inactive {
    height: 60px;
    background-color: rgba(10, 10, 10, 0.95);
}

.logo {
    max-height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.showwhite {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--neon-blue);
}

/* Hamburger Menu */
.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}

.menu-icon span {
    width: 30px;
    height: 2px;
    background-color: var(--neon-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

/* Sections Base */
section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

/* Layout Dividers */
.container-divider {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.divider1,
.divider2 {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 5% 80px;
}

/* Background Utility Classes */
#objetive .divider1 {
    flex: 1.6;
}

#objetive .divider2 {
    flex: 1;
}

.bg-white {
    background-color: #FFFFFF !important;
    color: var(--bg-color) !important;
}

.bg-dark {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #000033 0%, #000066 100%) !important;
    color: var(--text-color) !important;
}

.bg-gradient-green {
    background: linear-gradient(135deg, #004d00 0%, #008000 100%) !important;
    color: var(--text-color) !important;
}

.container-divider21 {
    width: 100%;
    max-width: 600px;
    z-index: 2;
}

#objetive h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

/* Typography & Content */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-content {
    width: 100%;
}

.text-content.left-align {
    text-align: left;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.highlight {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: inherit;
    opacity: 0.9;
}

.black {
    color: var(--bg-color);
}

.roxo {
    color: var(--neon-purple);
}

.gray {
    color: #555555;
}

/* Components */
.investir-btn {
    background: var(--neon-purple);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2rem;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.investir-btn:hover {
    background: var(--neon-blue);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.button-white-text {
    background: transparent;
    color: white;
    padding: 16px 35px;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 2rem;
}

.button-white-text:hover {
    background: white;
    color: var(--bg-color);
}

.section-icon {
    max-width: 200px;
    margin: 2rem 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.section-title-img {
    max-width: 300px;
    margin-bottom: 1rem;
}

.ai-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
    max-width: 500px;
}

.feature-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Scouter Profile */
.scouter-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-purple);
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile-info p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Footer Redesign */
footer {
    background-color: var(--footer-bg);
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    color: var(--text-color);
}

.container-footer {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr) 1.2fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-footer {
    max-width: 160px;
    /* Controlled logo size */
    height: auto;
    margin-bottom: 10px;
}

.footer-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #b0b0b0;
}

.footer-item h3 {
    color: var(--neon-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item li {
    margin-bottom: 8px;
}

.footer-item a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-item a:hover {
    color: var(--neon-blue);
}

.contact-link {
    color: var(--neon-green) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-footer {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .container-divider {
        flex-direction: column;
        height: auto;
    }

    .divider1,
    .divider2 {
        width: 100%;
        min-height: 80vh;
        padding: 100px 8%;
    }

    .invert {
        flex-direction: column-reverse;
    }
}

@media (max-width: 1280px) {
    header {
        padding: 0 20px;
    }

    .menu-icon {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header.show-menu nav {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    nav a {
        font-size: 20px;
    }

    header.show-menu .menu-icon span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    header.show-menu .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    header.show-menu .menu-icon span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .ai-features {
        max-width: 100%;
    }

    .container-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-item {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Utilities */
.video-background-divider-vert {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.mt-4 {
    margin-top: 2rem;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.img-divider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Pricing Section Redesign */
#pricing {
    background-color: #FFFFFF;
    padding: 60px 5%;
    min-height: auto;
    display: block;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    padding: 15px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--neon-green);
    border-radius: 2px;
}

.pricing-card.free .pricing-header {
    background-color: #212121;
    color: #FFFFFF;
}

.pricing-card.popular .pricing-header {
    background-color: #4B0082;
    color: #FFFFFF;
}

.pricing-card.best .pricing-header {
    background-color: #00FF99;
    color: #000033;
}

.pricing-price-box {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000033;
}

.pricing-price span {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-features {
    padding: 20px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #333;
    line-height: 1.3;
}

.pricing-features li::before {
    content: '✓';
    color: #00FF99;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-features li.cross::before {
    content: '✕';
    color: #FF4D4D;
}

.pricing-features li strong {
    color: #4B0082;
    font-weight: 700;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #4B0082, #8A2BE2);
    color: #FFFFFF;
}

.pricing-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Best Value Specific Overrides */
.pricing-card.best {
    background: linear-gradient(180deg, #000033 0%, #000066 100%);
    border: none;
}

.pricing-card.best .pricing-price {
    color: #00FF99;
}

.pricing-card.best .pricing-features li {
    color: #FFFFFF;
}

.pricing-card.best .pricing-features li strong {
    color: #00FF99;
}

.pricing-card.best .pricing-price-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.best .pricing-btn {
    background: linear-gradient(90deg, #00FF99, #00CC7A);
    color: #000033;
}

@media (max-width: 1024px) {
    #pricing {
        padding: 60px 5%;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

/* Smoke Reveal Transitions */
.reveal-content {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, filter, transform;
}

section.active .reveal-content,
footer.active .reveal-content {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* First Section & Scroll Indicator */
.texto-container-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.scroll-indicator {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.scroll-indicator img {
    filter: drop-shadow(0 0 5px var(--neon-blue));
    animation: glowPulse 2s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes glowPulse {
    from {
        filter: drop-shadow(0 0 5px var(--neon-blue));
        transform: scale(1);
        opacity: 0.8;
    }

    to {
        filter: drop-shadow(0 0 20px var(--neon-blue));
        transform: scale(1.1);
        opacity: 1;
    }
}