:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --primary-light: #58d68d;
    --secondary: #1abc9c;
    --gray: #3d3d3d;
    --header-bg: #181818;
    --header-text: #e0e0e0;
    --primary-color: #2ecc71;
    --secondary-color: #1abc9c;
    --accent-color: #e74c3c;
    --dark-color: #121212;
    --light-color: #e0e0e0;
    --success-color: #27ae60;
    --warning-color: #fdcb6e;
    --danger-color: #e74c3c;
    --text-color: #e0e0e0;
    --text-light: #aaaaaa;
    --gradient-start: #2ecc71;
    --gradient-end: #1abc9c;
    --box-shadow: 0 10px 30px -15px rgba(44, 204, 113, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --white: #FFFFFF;
    --dark: #121212;
    --dark-light: #181818;
    --dark-lighter: #232323;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: var(--dark);
    color: var(--text-color);
}

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

/* Header */
header {
    background: var(--header-bg);
    color: var(--header-text);
    border-bottom: 1px solid var(--gray);
    padding: 30px 0;
    text-align: center;
}

.logo,
.logo-container .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-direction: column;
}

.logo img,
.logo-icon img {
    width: 100%;
    margin-right: 15px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.logo-icon {
    width: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-halo {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 200, 83, 0.1);
    animation: pulse 3s infinite;
    right: 6px;
}

.logo:hover .logo-icon img {
    transform: rotate(10deg) scale(1.05);
}

.logo:hover .logo-halo {
    animation: pulse 1s infinite;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--header-text);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo-main {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    color: var(--header-text);
    font-size: 1.2rem;
    font-weight: 400;
    margin-left: 8px;
}

.cta-section,
.header-content {
    color: var(--header-text);
}

.main-heading {
    color: var(--header-text);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-heading .highlight,
.description .highlight,
.logo-main,
.version-info .highlight,
.trust-badges .badge .highlight {
    color: var(--primary);
    font-weight: bold;
}

.description {
    color: #bbbbbb;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Version Info */
.version-info {
    margin-top: 10px;
    color: #bbbbbb;
}

.version-info .version,
.version-info .size,
.version-info .compatibility {
    color: var(--primary);
    font-weight: bold;
}

.version-info .separator {
    color: #888;
    margin: 0 6px;
}

.version {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-top: 5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 18px;
}

.trust-badges .badge {
    background: #232323;
    color: var(--primary-light);
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--primary-light);
}

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

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-light);
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto 0;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid de recursos */
.features,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.features {
    gap: 30px;
    margin-bottom: 50px;
}

/* Cartão de recurso */
.feature-card {
    background: #181818;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(44, 204, 113, 0.07);
    width: 380px;
    max-width: 100%;
}

.feature-card:hover,
.hover-transform:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(44, 204, 113, 0.18);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
    transition: var(--transition);
}

.feature-card:hover::after {
    height: 100%;
}

.feature-title {
    color: var(--primary-light);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.feature-description {
    color: #bbbbbb;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #20c997;
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(32, 201, 151, 0.2);
}

.feature-icon,
.feature-icon-wrapper .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.3);
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.pulse {
    animation: pulse 2s infinite;
}

.text-highlight {
    background: linear-gradient(120deg, rgba(46, 204, 113, 0.15) 0%, rgba(26, 188, 156, 0.15) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
}

.feature-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.5;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--success-color);
}

.text-success {
    color: var(--success-color);
}

.feature-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.feature-stats {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-stats i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.feature-demo-link {
    margin-top: 1.5rem;
}

.demo-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.demo-link i {
    margin-right: 0.5rem;
    transition: var(--transition);
}

.demo-link:hover {
    color: var(--gradient-end);
}

.demo-link:hover i {
    transform: scale(1.1);
}

.security-badges {
    margin-top: 1rem;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.features-note {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.badge i {
    margin-right: 0.25rem;
    color: var(--primary-color);
}

.badge:hover {
    background: var(--primary-color);
    color: white;
}

.badge:hover i {
    color: white;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.animated {
    opacity: 0;
    animation-fill-mode: both;
}

.animated.fadeInUp,
.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

/* Tooltip */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

[data-tooltip]::before {
    content: '';
    position: absolute;
    bottom: calc(100% - 5px);
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

/* Seção de recursos */
.features-section {
    position: relative;
    padding: 5rem 0;
    background: #181818;
    overflow: hidden;
}

/* Feature-interactive, update-animation, etc. */
.feature-interactive {
    margin-top: 2rem;
}

.update-animation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.software-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    position: relative;
    transition: all 0.3s ease;
}

.software-icon:hover {
    transform: scale(1.1);
}

.software-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.update-arrow {
    position: relative;
    color: #20c997;
    font-size: 1.5rem;
    animation: arrowPulse 2s infinite;
}

.version-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #20c997;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.updated {
    background: linear-gradient(135deg, #20c997 0%, #38d9a9 100%);
}

.checkmark {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20c997;
    font-size: 0.6rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.demo-button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #111 0%, #20c997 100%);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.15);
}

.demo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.25);
}

.demo-button i {
    margin-right: 0.5rem;
}

/* Package Managers */
.package-managers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.manager-card {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #232323;
}

.manager-card:hover {
    transform: translateX(5px);
    background: #181818;
}

.winget {
    background: rgba(17, 17, 17, 0.25);
    border-left: 4px solid #111;
}

.chocolatey {
    background: rgba(32, 201, 151, 0.12);
    border-left: 4px solid #20c997;
}

.manager-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.winget .manager-logo {
    background: #111;
}

.chocolatey .manager-logo {
    background: #20c997;
}

.manager-info {
    flex: 1;
}

.manager-name {
    display: block;
    font-weight: 700;
    color: #e0e0e0;
}

.package-count {
    font-size: 0.8rem;
    color: #bbbbbb;
}

.compatibility-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(32, 201, 151, 0.08);
    color: #20c997;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.compatibility-badge i {
    margin-right: 0.5rem;
}

/* Log Preview */
.log-preview {
    background: #181818;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1.5rem;
    border: 1px solid #232323;
}

.log-header {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    background: #232323;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e0e0e0;
}

.log-content {
    padding: 1rem;
}

.log-entry {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #bbbbbb;
}

.log-entry i {
    margin-right: 0.7rem;
    font-size: 0.9rem;
}

.success {
    color: #20c997;
}

.warning {
    color: #fd7e14;
}

.log-actions {
    display: flex;
    border-top: 1px solid #232323;
}

.log-button {
    flex: 1;
    padding: 0.7rem;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
}

.log-button i {
    margin-right: 0.5rem;
}

.log-button:hover {
    background: #232323;
}

.export {
    color: #20c997;
    border-right: 1px solid #232323;
}

.view-all {
    color: #e0e0e0;
}

/* Features CTA */
.features-cta {
    text-align: center;
    margin-top: 4rem;
}

.features-cta p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.btn-primary.btn-lg {
    color: #fff !important;
    text-decoration: none !important;
}

.btn-primary.btn-lg:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 40px rgba(44, 204, 113, 0.32);
    background: linear-gradient(135deg, #1abc9c 0%, #2ecc71 100%);
    color: #fff !important;
    text-decoration: none !important;
}

.btn-primary.btn-lg:active {
    transform: scale(0.98);
}

/* Seção de Screenshots */
#screenshots {
    background-color: var(--dark);
    padding: 60px 0;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.screenshot {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray);
    transition: all 0.3s ease;
    position: relative;
    background-color: var(--dark-lighter);
}

.screenshot:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Container principal da seção */
#requirements {
    background-color: var(--dark);
    /* Cor de fundo escura */
    padding: 5rem 0;
    /* Espaçamento vertical generoso */
    position: relative;
    overflow: hidden;
}

/* Efeito decorativo opcional */
#requirements::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Container do conteúdo */
#requirements .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Estilo do título */
#requirements .section-title {
    color: var(--primary-light);
    /* Verde claro */
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#requirements .section-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Container dos requisitos */
#requirements .requirements {
    background-color: var(--dark-lighter);
    /* Preto mais claro */
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

#requirements .requirements:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

/* Efeito de borda animada */
#requirements .requirements::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transition: all 0.4s ease;
}

#requirements .requirements:hover::before {
    width: 8px;
}

/* Lista de requisitos */
#requirements .requirements ul {
    list-style: none;
    padding-left: 1.5rem;
}

#requirements .requirements li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light);
    transition: all 0.3s ease;
}

#requirements .requirements li:hover {
    color: white;
    transform: translateX(5px);
}

/* Ícones personalizados para cada item */
#requirements .requirements li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    background-size: contain;
    transition: all 0.3s ease;
}

/* Destaque para itens opcionais */
#requirements .requirements li:nth-child(3) {
    color: #bbbbbb;
    font-style: italic;
}

#requirements .requirements li:nth-child(3)::before {
    background-color: var(--secondary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

/* Responsividade */
@media (max-width: 768px) {
    #requirements {
        padding: 3rem 0;
    }

    #requirements .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    #requirements .requirements {
        padding: 1.5rem;
    }

    #requirements .requirements li {
        font-size: 1rem;
        padding-left: 2rem;
        margin-bottom: 1.2rem;
    }

    #requirements .requirements li::before {
        width: 1.2rem;
        height: 1.2rem;
        top: 0.2rem;
    }
}

/* Animações específicas para esta seção */
@keyframes requirementsEntry {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#requirements .requirements.animated {
    animation: requirementsEntry 0.8s ease forwards;
}

#requirements .requirements.delay-1 {
    animation-delay: 0.3s;
}

/* Seção FAQ */
#faq {
    background-color: var(--dark);
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.2rem;
    color: var(--primary-light);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    color: #bbbbbb;
    padding-right: 20px;
    display: none;
}

.faq-question i {
    transition: transform 0.3s ease;
}

/* Rodapé */
footer {
    background-color: var(--dark-light);
    border-top: 1px solid var(--gray);
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light);
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Títulos das seções */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-light);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto 0;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Efeito de brilho nos botões */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Seção de Download */
#download {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
    overflow: hidden;
    border-top: 1px solid rgba(46, 204, 113, 0.15);
    border-bottom: 1px solid rgba(46, 204, 113, 0.15);
}

#download .container {
    position: relative;
    z-index: 2;
}

/* Padrão de fundo decorativo */
.download-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(26, 188, 156, 0.03) 0%, transparent 25%);
    z-index: 1;
}

/* Títulos */
#download .section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    text-shadow: 0 2px 10px rgba(46, 204, 113, 0.2);
}

.download-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #bbbbbb;
    line-height: 1.6;
}

/* Efeito hover animado */
.btn-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.4) 0%, rgba(26, 188, 156, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-btn:hover .btn-hover-effect {
    opacity: 1;
}

/* Informações de download */
.download-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: #aaaaaa;
    font-size: 0.95rem;
}

.version,
.file-size {
    display: flex;
    align-items: center;
}

.platforms {
    display: flex;
    gap: 10px;
}

.platform-badge {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary-light);
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.platform-badge i {
    font-size: 1rem;
}


/* FAQ Section Styles with Green Palette */
.faq-section {
    padding: 5rem 0;
    background-color: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(46, 204, 113, 0.05)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.faq-section .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Accordion Styles */
.faq-section .accordion {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--dark-lighter);
}

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--dark-lighter);
    transition: var(--transition);
}

.faq-section .accordion-item:last-child {
    border-bottom: none;
}

.faq-section .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.1);
}

.faq-section .accordion-button {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--dark-lighter);
    box-shadow: none;
    transition: var(--transition);
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-light);
    background-color: rgba(46, 204, 113, 0.1);
}

.faq-section .accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    transition: var(--transition);
    filter: brightness(0.8);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 204, 113, 0.25);
}

.faq-section .accordion-icon {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    background-color: rgba(46, 204, 113, 0.05);
    border-top: 1px solid rgba(46, 204, 113, 0.1);
}

.faq-section .accordion-body p {
    margin-bottom: 0;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section .accordion-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.faq-section .accordion-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-section .accordion-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-section .accordion-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-section .accordion-button {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-section .accordion-body {
        padding: 1.25rem;
    }
}

/* Ravenizer Hero Section */
.ravenizer-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    overflow: hidden;
    color: #fff;
}

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

.ravenizer-hero .hero-title-gradient {
    background: linear-gradient(90deg, #2ecc71, #1abc9c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ravenizer-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #bbbbbb;
    max-width: 90%;
}

/* Buttons */
.ravenizer-hero .btn-download {
    background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.ravenizer-hero .btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.ravenizer-hero .btn-outline-light {
    border: 2px solid #2ecc71;
    color: #2ecc71;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ravenizer-hero .btn-outline-light:hover {
    background-color: #2ecc71;
    color: #121212;
}

/* Interface Window */
.ravenizer-hero .hero-interface {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.ravenizer-hero .interface-window {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #2ecc7133;
    position: relative;
    z-index: 2;
}

.ravenizer-hero .window-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #252525;
    border-bottom: 1px solid #3d3d3d;
}

.ravenizer-hero .window-buttons {
    display: flex;
    gap: 8px;
}

.ravenizer-hero .window-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.ravenizer-hero .window-btn.red {
    background-color: #ff5f56;
}

.ravenizer-hero .window-btn.yellow {
    background-color: #ffbd2e;
}

.ravenizer-hero .window-btn.green {
    background-color: #27c93f;
}

.ravenizer-hero .window-title {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    color: #bbbbbb;
}

.ravenizer-hero .window-content {
    padding: 30px;
}

.ravenizer-hero .update-status {
    text-align: center;
    margin-bottom: 30px;
}

.ravenizer-hero .update-status i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.ravenizer-hero .update-status h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.ravenizer-hero .update-status p {
    color: #bbbbbb;
    font-size: 0.9rem;
}

/* Package Selector */
.ravenizer-hero .package-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.ravenizer-hero .package-option {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #252525;
    color: #bbbbbb;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ravenizer-hero .package-option.active {
    background-color: #2ecc71;
    color: #121212;
}

.ravenizer-hero .package-option i {
    font-size: 1.2rem;
}

/* Progress Bar */
.ravenizer-hero .update-progress {
    margin-bottom: 30px;
}

.ravenizer-hero .progress-bar {
    height: 8px;
    background: linear-gradient(90deg, #2ecc71, #1abc9c);
    border-radius: 4px;
    margin-bottom: 8px;
    transition: width 0.5s ease;
}

.ravenizer-hero .progress-text {
    font-size: 0.9rem;
    color: #bbbbbb;
    text-align: center;
}

/* Update Button */
.ravenizer-hero .update-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
    border: none;
    border-radius: 5px;
    color: #121212;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ravenizer-hero .update-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* Floating Icons */
.ravenizer-hero .floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.ravenizer-hero .icon-app {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #252525;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2ecc71;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ravenizer-hero .floating-1 {
    top: -20px;
    left: -40px;
    animation: float 6s ease-in-out infinite;
}

.ravenizer-hero .floating-2 {
    top: 30%;
    right: -65px;
    animation: float 5s ease-in-out infinite 1s;
}

.ravenizer-hero .floating-3 {
    bottom: 20%;
    left: -65px;
    animation: float 7s ease-in-out infinite 0.5s;
}

.ravenizer-hero .floating-4 {
    bottom: -60px;
    right: 10%;
    animation: float 6.5s ease-in-out infinite 1.5s;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}