* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #000000;
    --foreground: #ffffff;
    --border-light: rgba(255, 0, 0, 0.2);
    --border-dark: rgba(0, 0, 0, 0.08);
    --text-primary: #f8f8f8;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --shadow-light: 0 2px 15px rgba(255, 0, 0, 0.15);
    --card-bg: #080808;
    --card-hover-bg: #101010;
    --red-primary: rgba(255, 0, 0, 0.8);
    --red-secondary: rgba(255, 100, 100, 0.6);
    --red-tertiary: rgba(255, 50, 50, 0.4);
    --red-light: #d32f2f;
    --red-dark: #ff0000;
}

/* Preloader */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 0, 0, 0.2);
    border-top-color: var(--red-light);
    animation: spin-loader 1s infinite linear;
}

@keyframes spin-loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Conteúdo com fade-in */
#content-wrapper {
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

#content-wrapper.visible {
    opacity: 1;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #000000;
    color: #fff;
    overflow-x: hidden;
}

/* Estilos da seção hero */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
    padding: 5rem 1rem 3rem;
}

.hero-content {
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    fill: rgba(255, 0, 0, 0.4);
    stroke: rgba(255, 0, 0, 0.4);
    mask-image: radial-gradient(800px circle at center, white, transparent);
    top: -15%;
    bottom: -15%;
    transform: skewY(12deg);
}


.content-wrapper {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.title-pill {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 1.5rem auto;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.2), rgba(255, 150, 150, 0.1), transparent);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 1.5rem;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
}

.title-pill span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.title-pill:hover {
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.3), rgba(255, 150, 150, 0.2), transparent);
    transform: translateY(-2px);
}

.title-logo {
    display: flex;
    align-items: center;
}

.title-logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.3));
}

.title-logo-text {
    font-weight: 800;
    letter-spacing: 1px;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #d32f2f, #b71c1c);
    color: transparent;
    font-size: 1.2rem;
}

.title-login-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 9999px;
    padding: 2px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
}

.title-login-animation {
    position: absolute;
    inset: -1000%;
    background: conic-gradient(from 90deg at 50% 50%, #d32f2f 0%, #b71c1c 50%, #d32f2f 100%);
    animation: spin 3s linear infinite;
}

.title-login-inner {
    display: inline-flex;
    height: 100%;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(0.75rem);
}

.title-login-btn {
    display: inline-flex;
    border-radius: 9999px;
    text-align: center;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.2), rgba(255, 50, 50, 0.3), transparent);
    color: #ffffff;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s;
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.title-login-btn:hover {
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.3), rgba(255, 50, 50, 0.4), transparent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 0, 0, 0.3);
}

.chevron-right {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
    stroke: rgba(255, 255, 255, 0.8);
}

.title-pill:hover .chevron-right {
    transform: translateX(0.25rem);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #d32f2f, #b71c1c);
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0 3rem;
    width: 100%;
}

@media (min-width: 640px) {
    .cta-container {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.cta-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 9999px;
    padding: 2px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
}

.cta-animation {
    position: absolute;
    inset: -1000%;
    background: conic-gradient(from 90deg at 50% 50%, #ff9a9e 0%, #ff0000 50%, #ff9a9e 100%);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-inner {
    display: inline-flex;
    height: 100%;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(0.75rem);
}

.cta-button {
    display: inline-flex;
    border-radius: 9999px;
    text-align: center;
    align-items: center;
    width: 100%;
    justify-content: center;
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.2), rgba(255, 50, 50, 0.3), transparent);
    color: #ffffff;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s;
    padding: 1.25rem 3rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.3), rgba(255, 50, 50, 0.4), transparent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 0, 0, 0.3);
}

.image-container {
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
}

.dashboard-image {
    width: 100%;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5), 0 10px 20px -10px rgba(255, 0, 0, 0.2);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.dashboard-image:hover {
    transform: translateY(-5px);
}

.image-glow {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.2), transparent 70%);
    filter: blur(15px);
    opacity: 0.7;
    pointer-events: none;
}

/* Media queries para responsividade */
@media (max-width: 991px) {
    .hero-content {
        max-width: 100%;
    }
    
    .image-container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .grid-pattern {
        mask-image: radial-gradient(600px circle at center, white, transparent);
    }
    
    .hero {
        padding: 2rem 1rem;
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
    }
    
    .cta-button {
        padding: 1rem 2.5rem;
    }
    
    .content-wrapper {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .grid-pattern {
        mask-image: radial-gradient(400px circle at center, white, transparent);
    }
    
    .image-container {
        margin-top: 2rem;
    }
    
    .title-pill {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero {
        padding: 2rem 0.75rem;
        padding-top: 4.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
    
    .content-wrapper {
        margin-bottom: 0.75rem;
    }
}

/* Efeito de transição com desfoque entre seções */
.section-transition {
    position: relative;
    height: 40px;
    width: 100%;
    margin-top: -20px;
    margin-bottom: -20px;
    z-index: 8;
    overflow: hidden;
    pointer-events: none;
}

.blur-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 0, 0, 0.5) 30%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(0, 0, 0, 0.5) 70%, 
        transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.blur-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    filter: blur(1px);
}

/* Elementos decorativos avançados para a transição */
.glow-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.2) 20%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(0, 0, 0, 0.2) 80%, 
        transparent 100%);
    top: 50%;
    filter: blur(3px);
    transform: translateY(-50%);
    opacity: 0.6;
    animation: pulse-glow 3s infinite alternate;
}

.blur-wave {
    position: absolute;
    width: 200%;
    height: 50px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.05) 50%, 
        transparent 70%);
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    filter: blur(10px);
    animation: wave-move 15s infinite linear;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.3;
        filter: blur(3px);
    }
    100% {
        opacity: 0.8;
        filter: blur(5px);
    }
}

@keyframes wave-move {
    0% {
        transform: translateY(-50%) translateX(0%) scaleY(1);
    }
    50% {
        transform: translateY(-50%) translateX(-25%) scaleY(1.2);
    }
    100% {
        transform: translateY(-50%) translateX(-50%) scaleY(1);
    }
}

/* Estilos para a seção de créditos */
.credits-section {
    position: relative;
    padding: 40px 1rem;
    overflow: hidden;
    background-color: var(--background);
}

.credits-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
}

.credits-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--red-light), #b71c1c);
    color: transparent;
}

.credits-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.6;
}

.credits-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

@media (min-width: 768px) {
    .credits-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .credits-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.credits-card {
    position: relative;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 1.25rem;
    padding: 2.5rem 2.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
    height: 100%;
    min-height: 520px;
}

.credits-card.highlight {
    background: rgba(20, 20, 20, 0.6);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 0, 0, 0.1);
}

.credits-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 0, 0, 0.1);
}

.credits-card.highlight:hover {
    transform: translateY(-8px);
}

.credits-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 90% 10%, rgba(255, 0, 0, 0.07) 0%, transparent 70%),
        radial-gradient(circle at 10% 90%, rgba(255, 0, 0, 0.07) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.credits-card:hover::before {
    opacity: 1;
}

.credits-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(90deg, var(--red-primary), var(--red-secondary));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: var(--shadow-light);
    z-index: 2;
}

.credits-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credits-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05));
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.credits-card:hover .credits-icon-bg {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
    border-color: rgba(255, 0, 0, 0.3);
    transform: scale(1.1) rotate(-5deg);
}

.credits-icon {
    position: relative;
    width: 28px;
    height: 28px;
    color: var(--red-light);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Ajustes específicos para ícones do Font Awesome */
.credits-icon-wrapper i.credits-icon {
    font-size: 32px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credits-card:hover .credits-icon {
    color: #d32f2f;
    transform: scale(1.15);
}

.credits-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.credits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    height: 36px;
    display: flex;
    align-items: center;
}

.credits-card:hover .credits-title {
    color: var(--red-light);
}

.credits-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.credits-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
}

.credits-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 0.25rem;
}

.credits-amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--red-light);
    margin-right: 0.25rem;
}

.credits-count {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-left: 1rem;
}

.credits-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credits-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.credits-features li.pro::before {
    content: "\f00c"; /* fa-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #4ADE80;
    display: inline-block;
    width: 1em;
    margin-right: 0.5rem;
}

.credits-features li.con::before {
    content: "\f00d"; /* fa-xmark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff6b6b;
    display: inline-block;
    width: 1em;
    margin-right: 0.5rem;
}

.credits-btn {
    display: inline-block;
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.2), rgba(255, 50, 50, 0.3), transparent);
    color: var(--text-primary);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 9999px;
    padding: 0.85rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.credits-btn:hover {
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.3), rgba(255, 50, 50, 0.4), transparent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 0, 0, 0.3);
}

.credits-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: left 0.5s ease;
    pointer-events: none;
}

.credits-card:hover .credits-shine {
    left: 100%;
}

.credits-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.credits-grid-pattern {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    fill: rgba(255, 0, 0, 0.2);
    stroke: rgba(255, 0, 0, 0.2);
    mask-image: radial-gradient(800px circle at center, white, transparent);
}

.credits-glow {
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: -100px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* Topbar styles */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.3));
}

.topbar-logo-text {
    font-weight: 800;
    letter-spacing: 1px;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #d32f2f, #b71c1c);
    color: transparent;
    font-size: 1.2rem;
    display: block;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.topbar-nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.topbar-nav-item:hover {
    color: var(--text-primary);
}

.topbar-nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--red-light), transparent);
    border-radius: 2px;
}

.topbar-btn {
    display: inline-flex;
    border-radius: 9999px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.2), rgba(255, 50, 50, 0.3), transparent);
    color: #ffffff;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s;
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

.topbar-btn:hover {
    background: linear-gradient(to right top, rgba(255, 100, 100, 0.3), rgba(255, 50, 50, 0.4), transparent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 0, 0, 0.3);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn i {
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover i {
    transform: scale(1.1);
    color: var(--red-light);
}

/* Overlay para o menu móvel */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Media queries para topbar responsiva */
@media (max-width: 768px) {
    .topbar {
        padding: 0.75rem 1rem;
    }
    
    .topbar-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: auto;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-radius: 0.75rem 0 0 0.75rem;
        border-left: 1px solid rgba(255, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 0, 0, 0.2);
        transition: right 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        align-items: flex-start;
        z-index: 99;
    }

    .topbar-nav.active {
        right: 0;
    }

    .topbar-nav-item {
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }
    
    .topbar-btn {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.4rem;
        margin-left: auto;
        z-index: 100;
    }

    .topbar-logo-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 0.75rem 0.75rem;
    }
    
    .topbar-logo img {
        height: 34px;
    }
    
    .mobile-menu-btn {
        padding: 0.4rem;
    }
}

/* Estilos para a seção de logos */
.logos-section {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 5px 0;
    position: relative;
}

.logos-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 15px 0;
}

.logos-slider {
    display: flex;
    width: max-content;
    animation: slideLogos 30s linear infinite;
}

.logo-item {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 45px;
    width: auto;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

.progressive-blur-left,
.progressive-blur-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.progressive-blur-left {
    left: 0;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}

.progressive-blur-right {
    right: 0;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}