.home-header {
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    text-decoration: none;
    color: #aaa;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 1px solid #fff0;
}
.nav-link:hover {
    color: #fff;
    background-color: rgb(255 255 255 / 0.05);
}
.nav-link.active {
    color: #bb86fc;
    background-color: rgb(187 134 252 / 0.1);
    border-color: rgb(187 134 252 / 0.2);
}
.badge-new {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #bb86fc;
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.5);
    animation: floatBadge 2s infinite ease-in-out;
    pointer-events: none;
}
@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 10px;
    width: auto;
}
.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
    background-color: #bb86fc;
}
.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: #bb86fc;
}
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgb(10 10 10 / 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1500;
}
.mobile-nav-overlay.active {
    right: 0;
}
.mobile-link {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mobile-link.active {
    color: #bb86fc;
}
.badge-new-mobile {
    background: #bb86fc;
    color: #000;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}
.card-inicial {
    background-color: rgb(24 24 24 / 0.85);
    border-radius: 24px;
    border: 1px solid rgb(255 255 255 / 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 40px rgb(0 0 0 / 0.4);
    position: relative !important;
    overflow: hidden !important;
    padding: 30px 40px 20px !important;
}
.card-inicial h1 {
    background: linear-gradient(45deg, #fff, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
}
.github-ribbon-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}
.github-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 40px;
    background-color: #bb86fc;
    color: #000 !important;
    transform: translate(-50%, -50%) rotate(-45deg) translateY(20px);
    box-shadow: 0 0 5px rgb(0 0 0 / 0.3);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    padding-bottom: 15px;
}
.github-ribbon:hover {
    background-color: #fff;
}
.github-ribbon svg {
    width: 16px;
    height: 16px;
    transform: rotate(0deg);
}
.card-inicial h1 {
    margin-bottom: 10px;
    font-weight: 700;
}
.card-inicial p {
    color: #aaa;
    margin-bottom: 30px;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.input-with-prefix {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    transition: border-color 0.3s;
}
.input-with-prefix:focus-within {
    border-color: #bb86fc;
}
.prefix {
    padding: 0 5px 0 15px;
    color: #666;
    font-weight: 700;
    user-select: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
}
#userInput {
    flex: 1;
    background-color: transparent !important;
    border: none !important;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    outline: none;
}
button {
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background-color: #bb86fc;
    color: #000;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
button:hover {
    background-color: #a370f7;
    transform: scale(1.02);
}
.erro {
    color: #ff5252;
    margin-top: 5px;
    min-height: 20px;
    font-size: 14px;
}
.signup-link {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
}
.signup-link a {
    color: #bb86fc;
    font-weight: 600;
    transition: color 0.2s;
}
.signup-link a:hover {
    color: #e0baff;
    text-decoration: underline;
}
.content-wrapper {
    width: 100%;
    padding: 40px 0;
    background-color: #0f0f0f;
}
.content-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
}
.content-section.image-right {
    flex-direction: row-reverse;
}
.content-image {
    flex: 1;
    max-width: 450px;
}
.content-image img {
    width: 100%;
    display: block;
    object-fit: contain;
}
.content-text {
    flex: 1;
    width: 50%;
    text-align: left;
}
.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 20px;
}
.content-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.7;
}
.content-text ul,
.content-text ol {
    list-style: none;
    padding-left: 0;
    text-align: left;
    margin: 25px 0;
}
.content-text li {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 1.5em;
    text-indent: -1.5em;
}
.content-text li::before {
    content: "•";
    width: 1em;
    display: inline-block;
    margin-right: 0.5em;
    color: #bb86fc;
    font-weight: 700;
}
.content-text ol {
    counter-reset: section-counter;
}
.content-text ol li::before {
    counter-increment: section-counter;
    content: counter(section-counter) ".";
}
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 100px;
    width: auto;
    text-decoration: none;
    background-color: #bb86fc;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.2s;
}
.cta-button:hover {
    background-color: #a370f7;
    transform: scale(1.05);
}
footer {
    width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    background-color: #0a0a0a;
    border-top: 1px solid rgb(255 255 255 / 0.05);
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}
.footer-info {
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-info .info-line-1,
.footer-info .info-line-2 {
    margin-right: 0.4em;
}
.footer-info a {
    color: #bb86fc !important;
    font-weight: 600;
    text-decoration: none;
}
.footer-info a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
.footer-links {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.5;
}
.footer-links a {
    color: inherit;
    text-decoration: none;
    transition:
        opacity 0.2s,
        color 0.2s;
}
.footer-links a:hover {
    opacity: 1;
    color: #bb86fc;
    text-decoration: underline;
}
.separator {
    margin: 0 8px;
    opacity: 0.3;
}
.dot {
    opacity: 0.3;
}
@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .home-header {
        padding: 20px 20px;
    }
    .card-inicial {
        padding: 30px 20px;
    }
    .counter-promo {
        width: 90%;
        justify-content: center;
        font-size: 0.85rem;
    }
    body {
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 600px) {
    footer {
        flex-direction: column-reverse;
        gap: 25px;
    }
    .footer-links {
        flex-direction: column;
        gap: 12px;
        opacity: 0.7;
    }
    .dot {
        display: none;
    }
    .footer-info {
        flex-direction: column;
        gap: 5px;
        opacity: 0.5;
    }
    .separator {
        display: none;
    }
    .footer-info .info-line-1,
    .footer-info .info-line-2 {
        margin-right: 0;
    }
}
@media (max-width: 900px) {
    .content-section {
        flex-direction: column !important;
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
    }
    .content-image {
        width: 80%;
        max-width: 350px;
    }
    .content-text {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }
    .content-text h2 {
        font-size: 2rem;
    }
    .content-text ul,
    .content-text ol {
        display: inline-block;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
}
