* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #B0BFBF;
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E8EDED;
    padding: 1rem 2rem;
}

.logo-header img {
    width: 90px;
    height: auto;
    margin-left: 185px;
    max-width: 100%;
}

#links-header {
    margin-right: 350px;
}

.links-header a {
    text-decoration: none;
    color: #333;
    margin: 0 1rem;
    font-weight: bold;
    font-size: 25px;
    transition: color 0.3s ease-in-out;
}

.links-header a:hover {
    color: #d4894e;
}

.right-section{
    background-color: #B0BFBF;
    width: auto;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 200px;
    align-items: center;
}

.main-content .text-content {
    max-width: 600px;
}

.main-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #d4894e;
}

.main-content p, .main-content ul {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #555;
}

#home {
    padding: 2rem 200px;
}

#about {
    background-color: #C6D2D1;
    padding: 2rem 200px;
    color: #555;
    text-align: justify;
}

#tokenomics {
    background-color: #EFD343;
    padding: 2rem 200px;
    display: grid;
    grid-template-rows: auto auto;
    gap: 4rem; /* Increased spacing between figure and text-content */
    align-items: center;
    text-align: center;
    height: 900px;
}

#tokenomics h2 {
    grid-column: span 2; /* It occupies the entire width */
    text-align: center; /* Center at the top */
    margin-bottom: 2rem; /* Spacing below the title */
    font-size: 2.5rem;
    color: #d4894e;
}

#tokenomics figure {
    justify-self: start; /* Align left */
}

#tokenomics .text-content {
    justify-self: end; /* Align right */
    text-align: left;
}

#tokenomics ul {
    list-style-type: none;
    padding-left: 0;

}

#roadmap {
    background-color: #C7F8D7;
    padding: 2rem 200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.25rem; /* Reducing horizontal spacing */
    align-items: center;
    height: 900px;
}


#roadmap h2 {
    grid-column: span 2; /* It occupies the entire width */
    text-align: center; /* Center at the top */
    margin-bottom: 1rem; /* Spacing below the title */
    font-size: 2.5rem;
    color: #d4894e;
}


#roadmap figure {
    justify-self: end; /* Align right */
    margin-left: 0; /* Remove any margin on the left */
    margin: 0; /* Remove extra margins */
    margin-top: 0; /* Remove extra spacing */
    padding: 0; /* Remove filler */
    max-width: 100%; /* Avoids image expansion */
}


#roadmap .text-content {
    justify-self: start; /* Align left */
    text-align: left;
    margin: 0; /* Remove extra margins */
    margin-right: 0; /* Remove any margin on the right */
    margin-bottom: 0; /* Remove extra spacing */
    padding: 0; /* Remove filler */
}


#disclaimer {
    background-color: #2D3938;
    color: #fff;
    padding: 2rem 200px;
    border-radius: 5px;
}

#disclaimer p{
width: 1200px;
font-size: 22px;
text-align: justify;
}

.main-content figure {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.presentation {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4894e;
}

.presentation ul {
    text-align: left;
    padding-left: 20px;
    list-style-type: disc;
}

.right {
    text-align: center;
    margin-top: 20px;
    border: 3px solid #d4894e;
    border-radius: 10px;
    padding: 20px;
    background-color: #BBC9C8; /* #E8EDED */
}

.l-header {
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4894e;
    margin-bottom: 20px;
}

.svg-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.svg-wrapper a {
    text-decoration: none;
    text-align: center;
    color: #333;
}

.svg-wrapper a:hover {
    color: #d4894e;
}

.svg-wrapper .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.svg-wrapper .icon:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.svg-wrapper a span {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    background-color: #18191a;
    padding: 1rem;
    font-size: 0.9rem;
    color: #999;
}

/* Responsividade */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        padding: 2rem 50px;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    .links-header a {
        font-size: 18px;
    }

    .main-content .text-content {
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #links-header {
        margin-right: 0;
    }

    .svg-wrapper {
        gap: 10px;
    }

    .svg-wrapper .icon {
        width: 50px;
        height: 50px;
    }

    .links-header a {
        margin: 0 0.5rem;
    }

    .main-content {
        padding: 1rem;
    }
}










