@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --cor0: rgb(51, 96, 90);
    --cor1: rgb(26, 61, 57);
    --cor2: #91a398;
    --cor3: #7d9987;
    --cor4: #e9e0d1;
    --cor5: #68462b;
    --cor6: #382414;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: column;

}

header {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    margin: 0;
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo {
    font-size: 30px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    width: 80%;
    max-width: 600px;
}

.logotipo {
    color: var(--cor4);
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--cor1);
    padding: 5px 5px;
    border-radius: 5px;
}


main {
    margin-top: 0;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;

}

main h1 {
    font-size: 2.9em;
    color: var(--cor6);
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
}

.main-section {
    margin-top: 30px;
    width: 100%;
    max-width: 1200px;

    padding: 40px 20px;
    box-sizing: border-box;
}


.top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 50px;

    padding-bottom: 80px;

}

.top-content .text-block {
    flex: 1;

}

.top-content h2 {
    font-size: 2.5em;
    color: var(--cor6);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

.top-content p {
    font-size: 1.1em;
    color: var(--cor5);
    line-height: 1.6;
}


.objective-section {
    background-color: var(--cor4);

    text-align: center;
    padding: 80px 20px;
    /
}

.objective-section .objective-header h2 {
    font-size: 2.8em;

    color: var(--cor6);
    margin-bottom: 40px;
    max-width: 800px;

    margin-left: auto;
    margin-right: auto;
}

.objective-section .objective-paragraphs {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;

}

.objective-section .objective-paragraphs .text-block {
    flex: 1;
    min-width: 300px;

    max-width: 450px;
    text-align: left;
}


.objective-section .objective-paragraphs p {
    font-size: 1.1em;
    color: var(--cor5);
    line-height: 1.6;
}



.features-section {
    text-align: center;
    padding-top: 80px;

    padding-bottom: 80px;

}

.features-section h3 {
    font-size: 2.2em;
    color: var(--cor6);
    margin-bottom: 60px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;

}

.feature-cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;

    padding: 20px;
    box-sizing: border-box;
}

.feature-cards .card .icon {
    font-size: 3em;

    color: var(--cor5);

    margin-bottom: 15px;
}

.feature-cards .card h4 {
    font-size: 1.2em;
    color: var(--cor5);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-cards .card p {
    font-size: 0.95em;
    color: var(--cor5);
    line-height: 1.5;
}

.criadores-container {
    text-align: center;
    width: 80%;
    margin-top: 50px;
}

.titulocriador {
    font-size: 24px;
    font-weight: bold;
    color: #5c3b28;
    margin-bottom: 20px;
}

.criadores {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.criador {
    text-align: center;
    width: 150px;
    margin: 10px;
}

.icone {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e0d6d2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    overflow: hidden;
    border-color: var(--cor5);
}

.icone:hover {
    scale: 1.05;
    transition: background-color 0.3s ease;
}

.icone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}




.criador h3 {
    font-size: 18px;
    color: #5c3b28;
    margin: 5px 0;
}

.criador p {
    font-size: 14px;
    color: #8e7058;
}

@media (max-width: 1024px) {

    .titulo {
        font-size: 25px;
        top: 45%;
        left: 50%;
    }

    .main-section {
        margin-top: 10px;
    }

    .top-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-content .text-block {
        max-width: 600px;

    }

    .objective-section .objective-paragraphs {
        flex-direction: column;
        align-items: center;
    }

    .objective-section .objective-paragraphs .text-block {
        text-align: center;
    }
}

@media (max-width: 768px) {

    .titulo {
        font-size: 20px;
        top: 45%;
        left: 50%;
    }

    main {
        padding: 30px 10px;

    }

    main h1 {
        font-size: 2.8em;
        margin-bottom: 5px;
    }

    .main-section {
        margin-top: 15;
    }

}


@media (max-width: 600px) {

    main h1 {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .top-content h2 {
        font-size: 2em;
    }

    .objective-section .objective-header h2 {
        font-size: 2em;
    }

    .features-section h3 {
        font-size: 1.8em;
    }

    main {
        padding: 20px 10px;
    }

    .main-section {
        padding: 30px 15px;
    }
}
