/* Collection Page Styles */
.colecao-page {
    min-height: 100vh;
    background: white;
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.colecao-hero {
    padding: 240px 15px 60px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.colecao-hero__header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
    justify-content: left;
    max-width: 926px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.colecao-hero__title {
    font-family: 'Changa', sans-serif;
    font-size: 72px;
    font-weight: 400;
    color: #93C01F;
    text-align: left;
    margin: 0;
    white-space: nowrap;
    line-height: 1;
}

.colecao-hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    width: 225px;
    height: 225px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    top: -110px;
}

.colecao-hero__icon img {
    width: 80%;
    height: 80%;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    pointer-events: none;
}

.colecao-hero__description {
    max-width: 926px;
    margin: 0 auto;
    font-family: 'Afacad', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #005C74;
    text-align: left;
}

.colecao-hero__description strong {
    font-weight: 700;
}

/* Gallery Section */
.colecao-gallery {
    padding: 45px 15px;
    max-width: 1080px;
    margin: 0 auto;
}

.colecao-gallery__container {
    max-width: 926px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10.5px;
}

.colecao-gallery__item {
    flex: 0 0 calc(33.333% - 7px);
    background: linear-gradient(0deg, #3CBADC 0%, #3CBADC 100%);
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 404 / 436;
}

.colecao-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Elements */
.colecao-hero::before {
    content: '';
    position: absolute;
    top: -37.5px;
    left: -150px;
    width: 422px;
    height: 431px;
    background-image: url('../../image/support/circle-artesaos-one-green-left_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.colecao-hero::after {
    content: '';
    position: absolute;
    bottom: -75px;
    right: -100px;
    width: 422px;
    height: 431px;
    background-image: url('../../image/support/circle-artesaos-one-green-left_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.colecao-decorative {
    position: absolute;
    width: 19px;
    height: 19px;
    background: #1D1D1B;
    transform: rotate(30deg);
}

.colecao-decorative--large {
    outline: 16px #93C01F solid;
    outline-offset: -8px;
    width: 179px;
    height: 179px;
}

/* Products Grid */
.colecao-products {
    padding: 60px 15px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.colecao-products__title {
    font-family: 'Changa', sans-serif;
    font-size: 36px;
    color: #93C01F;
    text-align: center;
    margin-bottom: 45px;
}

.colecao-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.colecao-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-normal);
}

.colecao-product:hover {
    transform: scale(1.05);
}

.colecao-product:visited {
    color: inherit;
}

.colecao-product__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    width: 120px;
    height: 120px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.colecao-product img {
    width: 80%;
    height: 80%;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .colecao-hero__header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .colecao-hero__icon {
        width: 100px;
        height: 100px;
    }

    .colecao-hero__icon img {
        width: 80%;
        height: 80%;
        max-width: 80%;
        max-height: 80%;
    }

    .colecao-hero__title {
        font-size: 48px;
        text-align: center;
        white-space: normal;
    }

    .colecao-hero__description {
        font-size: 18px;
    }

    .colecao-gallery__item {
        aspect-ratio: 404 / 436;
    }

    .colecao-product__icon {
        width: 100px;
        height: 100px;
    }

    .colecao-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Esconder elementos auxiliares no mobile */
    .colecao-hero::before,
    .colecao-hero::after {
        display: none;
    }

    .colecao-hero__header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .colecao-hero__icon {
        width: 90px;
        height: 90px;
    }

    .colecao-hero__icon img {
        width: 80%;
        height: 80%;
        max-width: 80%;
        max-height: 80%;
    }

    .colecao-hero__title {
        font-size: 36px;
        text-align: center;
        white-space: normal;
    }

    .colecao-hero__description {
        font-size: 15px;
    }

    .colecao-gallery__row {
        flex-wrap: wrap;
    }

    .colecao-gallery__item {
        flex: 1 1 calc(50% - 7px);
        min-width: 200px;
    }

    .colecao-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .colecao-product__icon {
        width: 90px;
        height: 90px;
    }
}

