/* Feira Page Styles */
.feira-body {
    background: white;
}

.feira-page {
    min-height: 100vh;
    background: white;
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.feira-hero {
    padding: 150px 0 30px;
    background: white;
    position: relative;
}

.feira-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.feira-hero__title {
    font-family: 'Changa', sans-serif;
    font-size: 48px;
    line-height: 41.25px;
    color: #93C01F;
    margin: 0 auto;
    max-width: 1012.5px;
    font-weight: 400;
    text-align: left;
    margin-top: 25px;
}

.feira-hero__title-bold {
    font-weight: 700;
}

.feira-hero__title-normal {
    font-weight: 400;
}

.feira-hero__location {
    font-family: 'Changa', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #93C01F;
    margin: 15px auto 0;
    max-width: 1012.5px;
    text-align: left;
}

/* Content Section */
.feira-content {
    padding: 15px 0;
    background: white;
    position: relative;
}

.feira-content .container {
    max-width: 1043.25px;
    margin: 0 auto;
    padding: 0 15px;
}

.feira-content__text {
    font-family: 'Afacad', sans-serif;
    font-size: 24px;
    line-height: 29.7px;
    color: #005C74;
    font-weight: 400;
    text-align: justify;
    max-width: 1012.5px;
    margin: 0 auto;
}

.feira-content__text p {
    margin: 0 0 18px 0;
}

.feira-content__text p:last-child {
    margin-bottom: 0;
}

.feira-content__text strong {
    font-weight: 700;
    color: #005C74;
}

.feira-content__text a {
    color: #93C01F;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feira-content__text a:hover {
    color: #005C74;
    text-decoration: underline;
}

/* Author Section */
.feira-content .feira-author {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 2px solid rgba(0, 92, 116, 0.15);
    width: 100%;
    box-sizing: border-box;
}

.feira-content .feira-author__content {
    display: flex !important;
    align-items: flex-start;
    gap: 25px;
    max-width: 1012.5px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.feira-content .feira-author__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #93C01F;
    background: #f5f5f5;
    box-sizing: border-box;
}

.feira-content .feira-author__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feira-content .feira-author__info {
    flex: 1;
    font-family: 'Afacad', sans-serif;
    min-width: 0;
}

.feira-content .feira-author__organization {
    font-size: 18px;
    line-height: 22px;
    color: #93C01F;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: block;
}

.feira-content .feira-author__name {
    font-size: 20px;
    line-height: 24px;
    color: #005C74;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: block;
}

.feira-content .feira-author__contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.feira-content .feira-author__contact {
    font-size: 16px;
    line-height: 20px;
    color: #005C74;
    margin: 0;
    display: block;
}

.feira-content .feira-author__contact-label {
    font-weight: 600;
    margin-right: 8px;
    display: inline;
}

.feira-content .feira-author__contact-link {
    color: #005C74;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline;
}

.feira-content .feira-author__contact-link:hover {
    color: #93C01F;
    text-decoration: underline;
}

/* Responsive - Author Section */
@media (max-width: 768px) {
    .feira-content .feira-author {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .feira-content .feira-author__content {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .feira-content .feira-author__image {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
    }
    
    .feira-content .feira-author__organization {
        font-size: 16px;
    }
    
    .feira-content .feira-author__name {
        font-size: 18px;
    }
    
    .feira-content .feira-author__contact {
        font-size: 14px;
    }
    
    .feira-content .feira-author__contacts {
        align-items: center;
    }
}

/* Gallery Section */
.feira-gallery {
    position: relative;
    margin: 30px auto 0;
    padding: 0;
    width: 100%;
    max-width: 1248px;
    /* min-height removido - adapta ao conteúdo */
}

.feira-gallery__background {
    width: 1248px;
    height: 704.25px;
    background: #93C01F;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 35.25px;
    z-index: 0;
}

.feira-gallery__container {
    width: 929.7975px;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    z-index: 1;
}

.feira-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto; /* Adapta ao número de imagens */
    gap: 4.5px;
    width: 100%;
    max-width: 929.7975px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.feira-gallery__item {
    position: relative;
    border-radius: 6.75px;
    overflow: hidden;
    aspect-ratio: 3 / 4; /* Proporção vertical padrão */
    width: 100%;
}

.feira-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6.75px;
}

/* Responsive Design */
@media (max-width: 1300px) {
    .feira-gallery__background {
        width: 100%;
        max-width: 1248px;
        height: auto;
        min-height: auto;
    }
    
    .feira-gallery__container {
        width: 100%;
        max-width: 929.7975px;
        padding: 0 15px;
    }
    
    .feira-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4.5px;
    }
    
    .feira-gallery__item {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 4;
    }
}

@media (max-width: 1200px) {
    .feira-hero__title {
        font-size: 36px;
        line-height: 39px;
    }
    
    .feira-content__text {
        font-size: 21px;
        line-height: 27px;
    }
    
    .feira-gallery {
        width: 100%;
        max-width: 1248px;
    }
    
    .feira-gallery__container {
        width: 100%;
        max-width: 929.7975px;
    }
    
    .feira-gallery__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .feira-gallery__item {
        position: relative;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3 / 4;
    }
    
    .feira-gallery__image {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 1024px) {
    .feira-hero {
        padding: 135px 0 45px;
    }
    
    .feira-hero__title {
        font-size: 31.5px;
        line-height: 34.5px;
    }
    
    .feira-content {
        padding: 37.5px 0;
    }
    
    .feira-content__text {
        font-size: 19.5px;
        line-height: 25.5px;
    }
    
    .feira-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .feira-gallery__item {
        width: 100% !important;
        aspect-ratio: 3 / 4;
    }
    
    .feira-gallery__image {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .feira-hero {
        padding: 120px 0 30px;
    }
    
    .feira-hero__title {
        font-size: 24px;
        line-height: 28.5px;
        margin-top: 50px;
    }
    
    .feira-hero__location {
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
    }
    
    .feira-content {
        padding: 30px 0;
    }
    
    .feira-content__text {
        font-size: 16.5px;
        line-height: 22.5px;
        text-align: justify;
    }
    
    .feira-gallery {
        margin-top: 22.5px;
        border-radius: 0;
        padding: 0;
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }
    
    .feira-gallery__container {
        padding: 0 !important;
        margin: 0;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Desabilita background verde no mobile */
    .feira-gallery__background {
        display: none;
    }
    
    .feira-gallery__grid {
        gap: 0 !important;
        row-gap: 0 !important;
        column-gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    
    .feira-gallery__item {
        width: 90% !important;
        max-width: 100% !important;
        height: 230px !important;
        margin: 0 auto 8px !important;
        padding: 0 !important;
        flex-shrink: 0;
        border-radius: 6px !important;
        aspect-ratio: auto !important;
    }
    
    .feira-gallery__item:last-child {
        margin-bottom: 0 !important;
    }
    
    .feira-gallery__image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        margin: 0 !important;
        padding: 0 !important;
        display: block;
        border-radius: 6px !important;
    }
}

@media (max-width: 480px) {
    .feira-hero {
        padding: 105px 0 22.5px;
    }
    
    .feira-hero__title {
        font-size: 21px;
        line-height: 25.5px;
    }
    
    .feira-hero__location {
        font-size: 13px;
        margin-top: 8px;
    }
    
    .feira-content {
        padding: 22.5px 0;
    }
    
    .feira-content__text {
        font-size: 15px;
        line-height: 21px;
    }
    
    .feira-gallery {
        margin-top: 15px;
        border-radius: 0;
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .feira-gallery__container {
        padding: 0 !important;
        margin: 0;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Desabilita background verde no mobile */
    .feira-gallery__background {
        display: none;
    }
    
    .feira-gallery__grid {
        gap: 0 !important;
        row-gap: 0 !important;
        column-gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    
    .feira-gallery__item {
        width: 90% !important;
        max-width: 100% !important;
        height: 200px !important;
        margin: 0 auto 8px !important;
        padding: 0 !important;
        flex-shrink: 0;
        border-radius: 6px !important;
        aspect-ratio: auto !important;
    }
    
    .feira-gallery__item:last-child {
        margin-bottom: 0 !important;
    }
    
    .feira-gallery__image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        margin: 0 !important;
        padding: 0 !important;
        display: block;
        border-radius: 6px !important;
    }
}

