/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0a0e14;
    user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.container {
    width: 80%;
    max-width: 1250px;
    margin: auto;
}

header {
    color: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(50px); 
    background: #0a0e14e8;
    backdrop-filter: blur(50px);
    animation: navbarFadeIn 1s ease-out forwards;
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

header .container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .container::after {
    content: "";
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(to right, transparent, #8888889d, transparent);
}

header h1 {
    margin: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

header h1 a img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    list-style: none;
    margin: 5px;
    padding: 0;
    display: flex;
    align-items: center;
}

header nav ul li {
    display: inline-block;
    margin-left: 50px;
    position: relative;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease;
}

header nav ul li a.active {
    color: #fff;
    font-weight: 600;
}

header nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #009FE3;
}

header nav ul li a:hover {
    transform: scale(1.1);
    transform-origin: center;
}

.login-button {
    background-color: transparent;
    color: #ffffff;
    padding: 5px 20px;
    border: 2px solid #009FE3;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.login-button svg {
    fill: #ffffff; 
    opacity: 0; 
    transition: all 0.3s ease; 
    width: 0;
}

.login-button:hover svg {
    opacity: 0.5; 
    width: 14px; 
    height: 14px;
    margin-left: 8px; 
}

.login-button:hover {
    background-color: #009fe37c;
    color: #fff;
}

.login-button:active {
    transform: none; 
}

.discord-link {
    display: inline-flex;
    align-items: center;
}

.discord-link svg {
    width: 13px;
    height: 13px; 
    fill: #ffffff;
    margin-left: 8px; 
}

.discord-link:hover {
    color: #fff;
}

.discord-link:active {
    transform: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.section {
    padding: 40px 0;
}

.section h2 {
    margin-bottom: 20px;
    color: #fff;
}

.section p {
    color: #ccc;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes navbarFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-inicio {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: auto;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.section-inicio .container {
    position: relative;
    z-index: 2;
    animation: slideIn 1s ease-out forwards, fadeIn 2s ease-out forwards;
    width: 80%;
    max-width: 1250px;
    margin: auto;
}

.terms-header h1 {
    font-size: 2.2rem;
    color: #e8e8e9;
    font-weight: 800;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.dateupdate {
    font-size: 1.25rem;
    color: #969799;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 80px;
}

.terms-header, .terms-body {
    text-align: left;
}

.terms-header h2 {
    font-size: 1.125rem;
    color: #e8e8e9;
    margin-top: 50px;
    font-weight: 800;
}

.terms-body h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #e8e8e9;
    font-weight: 800;
}

.terms-body h2 {
    margin-bottom: 25px;
}

.terms-header p {
    font-size: 1rem;
    color: #b7b9bc;
}

.terms-header li {
    font-size: 1rem;
    margin-top: 10px;
    color: #b7b9bc;
    list-style-position: inside;
}

.link-animado {
    color: rgb(34, 157, 245);
    text-decoration: none;
    position: relative;
}

.link-animado::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.7px;
    background-color: rgba(34, 157, 245, 0.61);
    transition: width 0.3s ease;
}

.link-animado:hover::after {
    width: 100%;
}

.terms-subs {
    margin-top: 50px;
    font-size: 1rem;
    color: #b7b9bc;
}

.linha-divisoria {
    height: 1.5px;
    background: #202124;
    margin: 30px 0;
}

.terms-body p {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #b7b9bc;
}

.terms-body-secondary {
    font-size: 1rem;
    color: #b7b9bc;
}

.terms-body-container .terms-body-secondary {
    margin-top: 20px;
}

.terms-body-container .terms-body-secondary:first-child {
    margin-top: 0;
}

.terms-body p + .terms-body-container {
    margin-top: 25px;
}

.terms-body h2 + .terms-body-container {
    margin-top: 0;
}

.next-app {
    color: #ffffff;
    font-weight: 600;
    font-size: 17.4px;
}

.highlight {
    background-color: #2a2a2a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 5px;
}

.top-line {
    width: 100%;
    height: 1px;
    background: #8888882a;
    margin-bottom: 20px;
}

.section-footer-final {
    margin-bottom: 100px;
}

.section-footer-final .container {
    position: relative;
    z-index: 2;
    animation: slideIn 1s ease-out forwards, fadeIn 1s ease-out forwards;
}

.logo-container {
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    gap: 90px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.logo-container h1 {
    margin: 0;
    padding: 0;
    text-align: center;
}

.logo-container h1 a img {
    height: 45px;
    width: auto;
}

.platform, .Empresas, .Legal .Redes {
    flex-direction: column;
    color: #fff;
}

.platform h2, .Empresas h2, .Legal h2, .Redes h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.platform a, .Empresas a, .Legal a {
    margin-top: 5px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.5s;
    display: flex;
}

.platform a:hover, .Empresas a:hover, .Legal a:hover {
    color: #66acca;
    text-decoration: underline;
}

.Redes a:hover svg {
    fill: #66acca;
}

footer {
    position: relative;
    background: none;
}

footer .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .container::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #8888889d, transparent);
}

.footer-left {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.footer-left p, 
.footer-left small {
    margin: 0;
    line-height: 1;
    display: inline-block;
}

.footer-left small {
    font-size: 0.85em;
    color: #aaa;
    position: relative;
    top: -1px;
}

.footer-right {
    color: #aaa;
    font-style: italic;
}

.footer-right i {
    font-size: 14px;
    margin-left: 4px;
    color: #66acca;
    transform: skewX(-10deg);
    animation: abcv 1.5s infinite;
}

@keyframes abcv {
    50% { 
        transform: skewX(-10deg) scale(1.1);
        color: #88ccee;
    }
}

.Redes a {
    text-decoration: none;
}

.Redes a svg {
    width: 35px; 
    height: 35px; 
    margin-left: 19px; 
    fill: #9ca3af;
}

/* Mobile Styles */
@media (max-width: 560px) {
    .terms-header h1 {
        font-size: 1.5rem;
    }

    .terms-body h2 {
        font-size: 1.3rem;
    }

    .terms-header p, .terms-body p, .terms-body-secondary {
        font-size: 0.9rem;
    }

    .footer-right {
        display: none;
    }
}

@media (max-width: 639px) {
    .logo-container {
        gap: 30px;
    }

    .logo-container {
        margin-top: 50px;
        display: block;
    }

    .platform h2, .Empresas h2, .Legal h2, .Redes h2 {
        margin-top: 20px;
        flex-direction: column;
        text-align: center;
    }

    .platform a, .Empresas a, .Legal a{
        display: block;
        text-align: center;
    }

    .Redes {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 12px;
    }

    .faq-answer {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 90%;
    }

    header {
        backdrop-filter: blur(50px); 
        background: #0a0e14e8;
    }

    header .container {
        flex-wrap: wrap;
    }

    header nav {
        display: none;
        width: 100%;
        top: 100%;
        left: 0;
        padding: 20px;
        z-index: 1000;
    }

    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    header nav ul li a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }

    .hamburger {
        display: block;
    }
    
    header nav ul li a.active::after {
        width: 49px;
    }

    .section-inicio h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 13px;
    }

    .faq-answer {
        font-size: 15px;
    }

    .terms-header h1 {
        font-size: 1.8rem;
    }

    .dateupdate {
        font-size: 1rem;
    }

    .terms-body h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 950px) {
    .section-final h2 {
        font-size: 2rem;
    }

    .section-final p {
        font-size: 1rem;
    }

    .logo-container {
        gap: 30px;
    }

    .Redes a {
        display: grid;
        grid-auto-flow: column;
        gap: 16px;
    }

    .Redes a svg {
        width: 25px; 
        height: 25px; 
    }
} 
