body {
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

h2 {
    font-size: 2.2rem;
    text-align: left;
}

p {
    font-size: 1.1rem;
    text-align: left;
}

main>section {
    background-color: var(--background-color);
}

main>section:nth-of-type(even) {
    background-color: var(--section-bg);
}

.banner-bolao {
    width: 100%;
    height: 56vh;
    padding: 0;
    background-image: url('./images/bolao/bolao-section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.two-column-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.two-column-layout:last-child {
    margin-bottom: 0;
}

.two-column-layout .column {
    flex: 1;
}

.two-column-layout .column p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--primary-color);
}

.two-column-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.two-column-img .column h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: left;
}

.two-column-img .column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}


.processo-lista {
    list-style-position: outside;
    padding-left: 20px;
    margin-top: 30px;
}

.processo-lista li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--primary-color);
}

.processo-lista li strong {
    color: var(--primary-color);
    display: inline-block;
    margin-right: 5px;
}

.benchmark-section p {
    max-width: 960px;
    margin-bottom: var(--spacing-xl);
}

.userflow-section p {
    max-width: 1020px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.wireframe-display-section p {
    max-width: 1060px;
}

.userflow-section img,
.wireframe-display-section img {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.mobile-gallery-section h2 {
    text-align: left;
    margin-bottom: 3rem;
}

.mobile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    background-color: var(--section-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 40px;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-unit {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-label {
    font-family: 'Gilroy', sans-serif;
    font-size: 1rem;
    color: var(--text-color-light);
    text-align: center;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-item p {
    padding: 0;
    margin-top: 15px;
    font-size: 1rem;
    color: var(--text-color-light);
    text-align: center;
}

@media (max-width: 1024px) {
    .banner-bolao {
        height: 85vh;
        background-image: url('./images/bolao/bolao-tablet.png');
    }
}

@media (max-width: 991px) {
    .mobile-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-bolao {
        height: 50vh;
    }

    .two-column-layout {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .two-column-img {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .userflow-section p {
        max-width: 100%;
    }

    .mobile-gallery-grid {
        grid-template-columns: 1fr;
    }
}