        :root {
            --primary: #00c853;
            --primary-dark: #009624;
            --primary-light: #5efc82;
            --dark: #121212;
            --dark-light: #1e1e1e;
            --light: #ffffff;
            --gray: #f5f5f5;
            --text: #333333;
            --text-light: #777777;
        }

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

        html {
            scroll-behavior: smooth;
        }

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

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

/* Header */
header {
    background-color: var(--dark);
    color: var(--light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    transition: padding 0.4s ease;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    transition: all 0.4s ease;
}

.logo span {
    color: var(--light);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 28px;
    position: relative;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

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

nav ul li a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--primary);
    color: var(--light) !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    transition: all 0.3s ease !important;
    margin-left: 15px !important;
}

.nav-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.4);
}

.nav-btn::after {
    display: none !important;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light);
    transition: color 0.3s ease;
}

.mobile-menu:hover {
    color: var(--primary);
}


/* Header no Scroll - CSS para funcionar com o JS */
header.scrolled {
    background-color: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
}

header.scrolled .header-content {
    padding: 15px 0;
}

header.scrolled .logo {
    font-size: 1.7rem;
}

/* Botão do menu mobile ativo */
.mobile-menu.active {
    color: var(--primary);
}


/* Header no Scroll */
header.scrolled {
    background-color: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
}

header.scrolled .header-content {
    padding: 15px 0;
}

header.scrolled .logo {
    font-size: 1.7rem;
}

/* Menu Mobile */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
        z-index: 1001;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 0 0 25px 0;
        width: 100%;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        padding: 12px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-btn {
        margin: 20px 0 0 0 !important;
        text-align: center;
        width: 100%;
    }
    
    .header-content {
        padding: 20px 0;
    }
}

/* Ajuste para telas médias */
@media (max-width: 1100px) {
    nav ul li {
        margin-left: 20px;
    }
    
    nav ul li a {
        font-size: 0.95rem;
    }
    
    .nav-btn {
        padding: 10px 22px !important;
        font-size: 0.95rem;
    }
}

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
            color: var(--light);
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #cccccc;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 200, 83, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            margin-left: 15px;
        }

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

        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(0, 200, 83, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 70px;
            height: 70px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }

        /* Sections */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .section-title p {
            font-size: 1.3rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Problems Section */
        .problems {
            background-color: var(--gray);
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .problem-card {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .problem-card:hover {
            transform: translateY(-10px);
        }

        .problem-card i {
            font-size: 2.5rem;
            color: #ff5252;
            margin-bottom: 20px;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Solutions Section */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .solution-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 10px;
            transition: all 0.3s;
            background-color: var(--light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .solution-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(0, 200, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

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

        .solution-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Process Section */
        .process {
            background-color: var(--dark);
            color: var(--light);
        }
        .process .section-title h2 {
            color: var(--light);
        }
        .process .section-title p {
            color: #cccccc;
        }
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 3px;
            background-color: var(--primary);
            z-index: 1;
        }
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
        }
        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }




/* Portfolio Section - ATUALIZADA */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: var(--dark-light);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.preview-btn {
    background: var(--primary);
    color: var(--light);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .preview-btn {
    transform: translateY(0);
}

.site-preview {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.browser-bar {
    height: 30px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #e1e1e1;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.preview-content {
    height: calc(100% - 30px);
}

.preview-header {
    height: 40px;
    background: var(--primary);
}

.preview-body {
    padding: 20px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-text {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

.preview-text.short {
    width: 70%;
}

.preview-btn-small {
    height: 25px;
    width: 100px;
    background: var(--primary);
    border-radius: 20px;
    margin-top: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.portfolio-content {
    padding: 25px;
    position: relative;
    z-index: 1;
    background: var(--light);
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.portfolio-content p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: transparent;
}

.portfolio-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}



/* Responsividade do Portfólio */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-item {
        margin-bottom: 0;
    }
    
    .portfolio-img {
        height: 220px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
    
    .portfolio-cta {
        padding: 30px 20px;
    }
    
    .portfolio-cta p {
        font-size: 1.1rem;
    }
}




/* Seção de Investimento Único */
.investment-single {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    padding: 100px 0;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.investment-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 200, 83, 0.1) 0%, transparent 50%);
}

.investment-single .section-title h2 {
    color: var(--light);
    font-size: 3rem;
    margin-bottom: 15px;
}

.investment-single .section-title h2 span {
    color: var(--primary);
    position: relative;
}

.investment-single .section-title h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.investment-single .section-title p {
    color: #cccccc;
    font-size: 1.1rem;
}

.premium-showcase {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.premium-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.2);
    backdrop-filter: blur(10px);
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.4);
}

.premium-badge i {
    font-size: 1.1rem;
}

.premium-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-title h3 {
    
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.premium-title p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.premium-price {
    text-align: center;
    background: rgba(0, 200, 83, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-right: 5px;
}

.amount {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
}

.period {
    font-size: 1.1rem;
    color: var(--primary-light);
    margin-left: 5px;
}

.price-installment {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 8px;
}

.price-save {
    font-size: 0.9rem;
    color: var(--primary-light);
    background: rgba(0, 200, 83, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.feature-category h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-light);
    font-weight: 600;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-item.highlight {
    background: rgba(0, 200, 83, 0.1);
    padding: 12px 15px;
    border-radius: 10px;
    margin: 5px 0;
    border-left: 3px solid var(--primary);
}

.feature-item.highlight i {
    color: var(--primary-light);
}

.feature-item.highlight span {
    font-weight: 600;
}

.premium-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--primary-light);
    font-size: 1.1rem;
}

.cta-guarantee i {
    font-size: 1.3rem;
}

.btn-premium {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 25px 50px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.6);
}

.btn-premium i {
    font-size: 1.8rem;
    margin-bottom: 8px;
}


.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-methods span {
    color: #cccccc;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #cccccc;
}

.premium-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.benefit-card p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}


        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
            text-align: center;
            padding: 80px 0;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

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

        .btn-light:hover {
            background-color: var(--gray);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-column p {
            margin-bottom: 15px;
            color: #cccccc;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--dark-light);
            border-radius: 50%;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s;
        }

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

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

        /* Responsividade site completo*/
        @media (max-width: 992px) {
            .problems-grid,
            .solutions-grid,
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .problems-grid,
            .solutions-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }

            .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999999;
            font-size: .7rem;
        }
        }




/* Responsividade apenas da parte de pagamento */
@media (max-width: 992px) {
    .premium-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .premium-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .investment-single {
        padding: 80px 0;
    }
    .investment-single .section-title h2 {
        font-size: 2.2rem;
    }
    .premium-card {
        padding: 30px 20px;
    }
    .amount {
        font-size: 3.5rem;
    }
    .premium-benefits {
        grid-template-columns: 1fr;
    }
    .btn-premium {
        padding: 13px 20px;
        font-size: 0.8rem;
    }
    .premium-badge {
    color: var(--light);
    padding: 10px 15px;
    font-size: 0.7rem;
    }
    .premium-badge i {
    font-size: 0.9rem;
    }
    .premium-title h3 {
    
    margin-top: 30px;

    }
    .cta-guarantee {
    font-size: 1rem;
    }





}
