:root {
    --color-dark: #391B4F;
    --color-purple: #61177F;
    --color-pink: #B22DB2;
    --color-shock-pink: #f87171;
    --color-red: #ef4444;
    --color-orange: #eb6850;
    --color-yellow: #fbbf24;
    --color-green: #94F96B;
    --color-brown: #A64E46;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-black: #000000;

    --degradeRosa: linear-gradient(135deg, var(--color-pink), var(--color-red));

    --color-blue: #3ea5f1;

    --degradeAzulLaranja: linear-gradient(180deg,
            var(--color-blue) 0%,
            var(--color-blue) 5%,
            var(--color-orange) 70%,
            var(--color-orange) 100%);


    --degradeLaranjaAzul: linear-gradient(180deg,
            var(--color-orange) 0%,
            var(--color-orange) 50%,
            var(--color-blue) 90%,
            var(--color-blue) 100%);

}

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap&font-family=poppins:wght@300;400;500;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.ss-body {
    color: var(--color-white);
}

.ss-width-1080 {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.ss-width-60 {
    width: 60%;
    margin: 0 auto;
}

.ss-body h1,
.ss-body h2 {
    padding-bottom: 24px;
    padding-top: 24px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.ss-body h1 {
    font-size: 36px;
    line-height: 1.2;
    padding-bottom: 24px;
    padding-top: 100px;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.ss-logo img {
    height: 35px;
}

.ss-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.ss-hero {
    background: var(--degradeAzulLaranja);
    padding-top: 90px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ss-hero-logo img,
.ss-aqui-mesmo img {
    width: 100%;
}

.ss-aqui-mesmo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 25px;
}

.ss-hero-catalogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    margin: auto;
    padding-top: 25px;
    padding-bottom: 25px;
}

.ss-hero-logo img {
    width: 100%;
}

.ss-body p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7rem;
    padding: 16px 0px;
}

.ss-main {
    background: var(--degradeLaranjaAzul);
    width: 100%;
    height: fit-content;
    align-items: center;
    justify-content: center;
}

.ss-carousel {
    background-color: var(--color-orange);
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center;
}

.ss-carousel img {
    width: 100%;
    height: 420px;
}

.ss-fazer-acontecer {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: var(--color-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#ss-mapa {
    width: 100%;
    height: 500px;
}

.ss-iniciativas {
    /* background: var(--degradeLaranjaAzul);*/
    width: 100%;
    height: fit-content;
}

.ss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.ss-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ss-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ss-card img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    object-position: center;
}

.ss-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background-color: var(--color-white);
    width: 100%;
    height: 100%;
    padding: 32px;
    border-radius: 0 0 12px 12px;
    transition: all 0.3s ease;
    color: var(--color-black);
}

.ss-card-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: var(--color-black);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.ss-card-title a {
    color: var(--color-pink);
    transition: all 0.3s ease;
}

.ss-card-title a:hover {
    color: var(--color-blue);
    scale: 1.1;
    transition: all 0.3s ease;
}

.saberes-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 32px;
}

.saberes-cta img {
    width: 450px;
    height: auto;
}

.saberes-cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    gap: 32px;
}

.saberes-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    background-color: transparent;
    border: 2px solid var(--color-green);
    border-radius: 52px;
    transition-duration: .2s;
    height: 50px;
    width: auto;
    padding: 0px 32px;
    cursor: pointer;
}

.saberes-cta-button:hover {
    border: none;
    scale: 1.1;
    background-color: var(--color-blue);
}

.saberes-cta-button a {
    color: var(--color-green);
    text-decoration: none;
}

.saberes-cta-button:hover a {
    color: var(--color-green);
}

.ss-ficha-tecnica {
    padding: 32px;
    background-color: var(--color-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.ss-colunas-ficha {
    display: flex;
    justify-items: center;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    gap: 64px;
}

.ss-coluna-esquerda,
.ss-coluna-direita {
    width: 50%;
}

.ss-coluna-direita p,
.ss-coluna-esquerda p {
    line-height: 1.2rem;
    padding: 10px;
}

.ss-coluna-direita p {
    text-align: left;
}

.ss-coluna-esquerda p {
    text-align: right;
}

.ss-rodape {
    background-color: var(--color-blue);
}

.ss-copy p {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
}

.ss-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px;
    width: 80%;
    max-width: 1080px;
    position: relative;
    margin: 0 auto;
}

.ss-logos img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.ss-projeto {
    background: var(--degradeLaranjaAzul);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.ss-projeto-texto {
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 64px;
    padding-bottom: 64px;
}

.ss-projeto-texto h2 {
    color: var(--color-green);
}

.ss-imagens-card {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    padding: 4px;
    background-color: var(--color-white);
}

.ss-imagens-card:hover {
    scale: 1.1;
    transition: all 0.3s ease;
}

.ss-imagens-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .ss-main {
        padding: 64px;
    }
}

@media (max-width: 920px) {

    .ss-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .saberes-cta {
        flex-direction: column;
    }

    .ss-main p {
        font-size: 1.5rem;
    }

    .saberes-cta img {
        width: 100%;
    }

    .ss-colunas-ficha {
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-items: center;
    }

    .ss-coluna-esquerda,
    .ss-coluna-direita {
        width: 100%;
    }

    .ss-coluna-esquerda p,
    .ss-coluna-direita p {
        text-align: center;
        font-size: 28px;
        line-height: 1.2rem;
    }

    .ss-copy p {
        font-size: 32px;
    }

    .ss-logos {
        flex-direction: column;
    }

    .ss-logos img {
        width: 70%;
        height: auto;
        padding: 15px;
    }

    .ss-projeto-texto {
        padding-top: 52px;
    }
}

@media (max-width: 678px) {

    .ss-nav {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .ss-nav ul {
        width: 100%;
        justify-content: center;
    }

    .ss-nav ul li a {
        padding: 5px;
        font-size: 1rem;
    }

    .ss-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .ss-hero {
        padding-top: 300px;
    }

    .ss-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .ss-colunas-ficha {
        gap: 32px;
    }

    .ss-coluna-esquerda p,
    .ss-coluna-direita p {
        text-align: center;
        font-size: 1.2rem;
        line-height: 1.2rem;
    }

    .ss-copy {
        padding-top: 32px;
    }

    .ss-logos {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ss-logos img {
        width: 70%;
        height: auto;
        padding: 15px;
    }

    .ss-projeto-texto {
        padding: 5%;
        padding-top: 56px;
    }
}