.arteeciencia-category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    width: 100%;
    overflow: hidden;
}

[data-header*="type-1"] [data-sticky*="yes"] {
    padding: 0 50px;
}

@media (max-width: 1024px) {
    [data-header*="type-1"] [data-sticky*="yes"] {
        padding: 0 20px;
    }
}

.arteeciencia-category-cards--taxonomy {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.arteeciencia-category-cards--taxonomy .arteeciencia-category-card {
    padding-inline: clamp(1.5rem, 3vw, 3rem);
}

.arteeciencia-category-card {
    background-color: var(--arteeciencia-category-color, #CD171A);
    color: #ffffff;
    border-radius: 0;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.25s ease, color 0.25s ease;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

.arteeciencia-category-card__link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
}

.arteeciencia-category-card__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.arteeciencia-category-card__description {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 1rem;
}

.arteeciencia-category-card__cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.arteeciencia-category-card__cta-text {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.arteeciencia-category-card__cta-icon {
    margin-left: auto;
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.arteeciencia-category-card:hover {
    background-color: var(--arteeciencia-category-color, #CD171A);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.arteeciencia-category-card:hover .arteeciencia-category-card__cta-icon {
    transform: translateX(8px);
}

.arteeciencia-category-card:hover .arteeciencia-category-card__title {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .arteeciencia-category-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .arteeciencia-category-cards::-webkit-scrollbar {
        display: none;
    }

    .arteeciencia-category-card {
        flex: 0 0 85%;
        padding: 2rem;
        min-height: 180px;
        scroll-snap-align: center;
    }

    .arteeciencia-category-card__title {
        font-size: 1.25rem;
    }
}

.destaques-container {
    width: 100%;
    margin: 150px 0;
    padding: 0 150px;
}

.destaques-header {
    background-color: #000;
    padding: 5px 20px;
    margin-bottom: 20px;
    width: auto;
    display: inline-block;
}

.destaques-title {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
}

.destaques-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background-color: #F5F5F5;
}

.destaques-column {
    width: 100%;
    display: flex;
    justify-content: center;
}

.destaques-image-column {
    align-items: stretch;
    height: 100%;
}

.destaques-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destaques-product-column {
    align-items: flex-start;
    height: 100%;
}

.destaques-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.destaques-author-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 3;
    background: linear-gradient(0deg, rgba(245, 245, 245, 0.95) 0%, rgba(245, 245, 245, 0.85) 15%, rgba(245, 245, 245, 0.6) 30%, rgba(245, 245, 245, 0.3) 50%, rgba(245, 245, 245, 0) 70%);
}

.destaques-author-name {
    margin: 0 0 12px 0;
    font-size: 42px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.destaques-author-name-line1,
.destaques-author-name-line2 {
    display: block;
    line-height: 1.1;
}

.destaques-author-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 85%;
    font-weight: 500;
}

.destaques-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: grayscale(120%);
    transition: filter 0.4s ease;
    mix-blend-mode: multiply;
    background: linear-gradient(0deg, rgba(245, 245, 245, 0.85) 0%, rgba(245, 245, 245, 0.35) 55%, rgba(245, 245, 245, 0) 85%);
}

.destaques-image-wrapper:hover .destaques-featured-image {
    filter: grayscale(0%);
}

.destaques-product-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background-color: #F5F5F5;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    height: 100%;
}

.destaques-product-image {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.destaques-product-circle {
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--destaques-circle-color, #CD171A);
    z-index: 1;
    transform: translateX(2%);
}

.destaques-product-image img,
.destaques-product-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}

.destaques-product-category {
    width: 100%;
}

.destaques-product-tag {
    display: inline-block;
    padding: 5px 25px;
    margin-right: 10px;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-sizing: border-box;
    width: fit-content;
}

.destaques-product-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.destaques-product-author {
    color: #000;
    font-size: 18px;
    margin-bottom: 12px;
}

.destaques-product-description {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

.destaques-product-button {
    margin-top: 10px;
    align-self: flex-start;
}

.destaques-btn-comprar {
    display: inline-block;
    background-color: transparent;
    color: #000;
    padding: 12px 32px;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.destaques-btn-comprar:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 1024px) {
    .destaques-container {
        padding: 0 60px;
    }

    .destaques-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .destaques-image-wrapper {
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: 260px;
    }

    .destaques-author-overlay {
        position: static;
        inset: auto;
        width: auto;
        padding: 20px;
        margin-top: -100px;
        max-height: none;
        overflow: visible;
    }

    .destaques-featured-image {
        position: static;
        width: 100%;
        height: auto;
        mix-blend-mode: normal;
        background: none;
    }

    .destaques-header {
        padding: 5px 10px;
        margin-left: 15px;
    }

    .destaques-title {
        font-size: 16px;
    }

    .destaques-product-title {
        font-size: 22px;
    }

    .destaques-product-description {
        font-size: 14px;
    }

    .destaques-btn-comprar {
        padding: 5px 15px;
        font-size: 16px;
    }

    .destaques-author-name {
        font-size: 30px;
    }

    .destaques-author-description {
        font-size: 18px;
        max-width: 100%;
        overflow-wrap: anywhere;
        font-weight: 500;
    }

    .destaques-container {
        margin: 150px 0;
        padding: 0;
    }

    .destaques-product-wrapper {
        padding: 30px 20px;
        max-width: 100%;
        width: 100%;
    }

    .destaques-product-tag {
        font-size: 12px;
        padding: 5px 20px;
    }

    .destaques-product-image {
        max-width: 95%;
    }

    .destaques-product-circle {
        width: 85%;
        transform: translateX(3%);
    }

    .destaques-product-image img,
    .destaques-product-img {
        width: 80%;
    }
}
/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Template: blocksy
Description: Child theme do Blocksy para personalizaÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Âµes customizadas
Author: Seu Nome
Author URI: https://seusite.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blocksy-child
*/

/* 
 * Adicione seus estilos customizados abaixo desta linha
 */

/* Site com 100% de largura */
.ct-container,
.ct-container-fluid {
    max-width: 100% !important;
    width: 100% !important;
}


/* ConteÃƒÆ’Ã‚Âºdo principal 100% largura */
main,
.site-main,
.content-area,
article {
    max-width: 100% !important;
    width: 100% !important;
}

main.site-main.hfeed {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
}

/* Elementor e outros builders 100% largura */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
}


/* Altura dos itens do menu */
#menu-item-153 > a.ct-menu-link,
#menu-item-154 > a.ct-menu-link,
#menu-item-155 > a.ct-menu-link,
#menu-item-156 > a.ct-menu-link {
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
}

/* Cores personalizadas para itens do menu */
#menu-item-153 > a.ct-menu-link {
    color: #CD171A !important;
}

#menu-item-154 > a.ct-menu-link {
    color: #009FE3 !important;
}

#menu-item-155 > a.ct-menu-link {
    color: #8BB55F !important;
}

#menu-item-156 > a.ct-menu-link {
    color: #DE921A !important;
}

/* Border-bottom quando estÃ¡ na pÃ¡gina da categoria ou produto da categoria */
/* Ver */
body.tax-product_cat-ver #menu-item-153 > a.ct-menu-link,
body.product_cat-ver #menu-item-153 > a.ct-menu-link,
body.term-ver #menu-item-153 > a.ct-menu-link,
body.single-product.product_cat-ver #menu-item-153 > a.ct-menu-link,
body.postid-:has(.product_cat-ver) #menu-item-153 > a.ct-menu-link {
    border-bottom: 5px solid #CD171A !important;
}

/* Divulgar */
body.tax-product_cat-divulgar #menu-item-154 > a.ct-menu-link,
body.product_cat-divulgar #menu-item-154 > a.ct-menu-link,
body.term-divulgar #menu-item-154 > a.ct-menu-link,
body.single-product.product_cat-divulgar #menu-item-154 > a.ct-menu-link,
body.postid-:has(.product_cat-divulgar) #menu-item-154 > a.ct-menu-link {
    border-bottom: 5px solid #009FE3 !important;
}

/* Saber */
body.tax-product_cat-saber #menu-item-155 > a.ct-menu-link,
body.product_cat-saber #menu-item-155 > a.ct-menu-link,
body.term-saber #menu-item-155 > a.ct-menu-link,
body.single-product.product_cat-saber #menu-item-155 > a.ct-menu-link,
body.postid-:has(.product_cat-saber) #menu-item-155 > a.ct-menu-link {
    border-bottom: 5px solid #8BB55F !important;
}

/* Reconhecer */
body.tax-product_cat-reconhecer #menu-item-156 > a.ct-menu-link,
body.product_cat-reconhecer #menu-item-156 > a.ct-menu-link,
body.term-reconhecer #menu-item-156 > a.ct-menu-link,
body.single-product.product_cat-reconhecer #menu-item-156 > a.ct-menu-link,
body.postid-:has(.product_cat-reconhecer) #menu-item-156 > a.ct-menu-link {
    border-bottom: 5px solid #DE921A !important;
}

/* Cores no hover para melhor UX */
#menu-item-153 > a.ct-menu-link:hover {
    color: #CD171A !important;
}

#menu-item-154 > a.ct-menu-link:hover {
    color: #007ab5 !important;
}

#menu-item-155 > a.ct-menu-link:hover {
    color: #6d9048 !important;
}

#menu-item-156 > a.ct-menu-link:hover {
    color: #b17515 !important;
}

/* Quando o segundo item do banner (Divulgar) estÃ¡ em hover, os itens do menu Ver e Divulgar ficam brancos */
/* Apenas quando o header NÃƒO estÃ¡ sticky */
body:not(:has([data-sticky*="yes"])):has(.banner-destaques-item:nth-child(2):hover) #menu-item-153 > a.ct-menu-link,
body:not(:has([data-sticky*="yes"])):has(.banner-destaques-item:nth-child(2):hover) #menu-item-154 > a.ct-menu-link,
body:not(:has([data-sticky*="yes"])):has(.banner-destaques-item .produto-destacado-divulgar:hover) #menu-item-153 > a.ct-menu-link,
body:not(:has([data-sticky*="yes"])):has(.banner-destaques-item .produto-destacado-divulgar:hover) #menu-item-154 > a.ct-menu-link {
    color: #fff !important;
    transition: color 0.6s ease 0.3s !important;
}

/* Quando o terceiro item do banner (Saber) estÃ¡ em hover, os itens do menu Saber e Reconhecer ficam brancos */
/* Apenas quando o header NÃƒO estÃ¡ sticky */
body:not(:has([data-sticky*="yes"])):has(.banner-destaques-item:nth-child(3):hover) #menu-item-155 > a.ct-menu-link,
body:not(:has([data-sticky*="yes"])):has(.banner-destaques-item:nth-child(3):hover) #menu-item-156 > a.ct-menu-link,
body:not(:has([data-sticky*="yes"])):has(.banner-destaques-item .produto-destacado-saber:hover) #menu-item-155 > a.ct-menu-link,
body:not(:has([data-sticky*="yes"])):has(.banner-destaques-item .produto-destacado-saber:hover) #menu-item-156 > a.ct-menu-link {
    color: #fff !important;
    transition: color 0.6s ease 0.3s !important;
}

/* TransiÃ§Ã£o padrÃ£o para os itens do menu */
#menu-item-153 > a.ct-menu-link,
#menu-item-154 > a.ct-menu-link,
#menu-item-155 > a.ct-menu-link,
#menu-item-156 > a.ct-menu-link {
    transition: color 0.3s ease !important;
}

/* Margens laterais para header */
header,
.site-header,
.ct-header {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

/* ExceÃ§Ã£o: offcanvas nÃ£o deve ter margens */
.ct-panel.ct-header,
#offcanvas.ct-header {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Margens laterais para footer */
footer,
.site-footer,
.ct-footer {
    margin-left: 50px !important;
    margin-right: 50px !important;
}


/* Remove todo o padding do container full */
.ct-container-full {
    padding: 0 !important;
}

/* BotÃƒÆ’Ã‚Â£o do banner: texto ÃƒÆ’Ã‚Â  esquerda, ÃƒÆ’Ã‚Â­cone ÃƒÆ’Ã‚Â  direita */
.buttom-category-banner .stk-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    text-decoration: none;
}

.buttom-category-banner .stk-button__inner-text {
    flex: 1;
    text-align: left;
}

.buttom-category-banner .stk--svg-wrapper {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stk-link.stk-button.stk--hover-effect-darken {
    padding: 10px 0 !important;
}


@media (max-width: 1024px){
    /* Margens laterais para header */
    header,
    .site-header,
    .ct-header {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }
    
    /* ExceÃ§Ã£o: offcanvas nÃ£o deve ter margens em mobile tambÃ©m */
    .ct-panel.ct-header,
    #offcanvas.ct-header {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Margens laterais para footer */
    footer,
    .site-footer,
    .ct-footer {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

}

@media (max-width: 1024px) {
    .destaques-image-wrapper {
        position: relative;
        overflow: hidden;
    }

    .destaques-image-wrapper::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 245, 245, 1) 85%);
        pointer-events: none;
    }

    .destaques-featured-image {
        display: block;
        width: 100%;
        height: auto;
    }
}
.arteeciencia-reconhecer-author-group__header {
    margin: 0 !important;
}
.arteeciencia-reconhecer-author-group {
    margin: 150px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.arteeciencia-reconhecer-author-group:first-of-type {
    margin-top: 50px;
}

.arteeciencia-reconhecer-author-group__header {
    display: flex;
    gap: 32px;
}

.arteeciencia-reconhecer-author-group__image {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 10px solid #DE921A;
}

.arteeciencia-reconhecer-author-group__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
}

.arteeciencia-reconhecer-author-group__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.arteeciencia-reconhecer-author-group__title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    text-transform: none;
}


@media (max-width: 1024px) {
    .arteeciencia-reconhecer-author-group {
        margin: 100px 0;
        gap: 24px;
    }

    .arteeciencia-reconhecer-author-group__header {
        flex-direction: column;
    }

    .arteeciencia-reconhecer-author-group__image {
        width: 100px;
        height: 100px;
    }
}

[data-header*="type-1"] .ct-header [data-row*="middle"] {
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}




/* Estilos para footer - texto alinhado Ã  esquerda, blocos centralizados */
.ct-footer .stk-block-text__text {
    text-align: left !important;
}

.ct-footer .stk-1f21da6,
.ct-footer .stk-9220a75 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ct-footer .stk-1f21da6 .stk-block-content,
.ct-footer .stk-9220a75 .stk-block-content {
    width: 100%;
    max-width: fit-content;
    margin: 0 auto;
}

.ct-footer .stk-1f21da6 .stk-block-text,
.ct-footer .stk-9220a75 .stk-block-text {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* Estilos para footer em mobile */
@media (max-width: 1024px) {
    /* Footer - colunas empilhadas, exceto as de texto que ficam lado a lado se couber */
    .ct-footer .stk-block-columns.stk-a53557a-column {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        justify-content: center;
    }
    
    /* Logo ocupa toda a largura */
    .ct-footer .stk-fb7c1a2 {
        flex: 1 1 100% !important;
        width: 100% !important;
    }
    
    /* Colunas de texto lado a lado se couber */
    .ct-footer .stk-1f21da6,
    .ct-footer .stk-9220a75 {
        flex: 1 1 calc(50% - 10px) !important;
        min-width: 200px;
        max-width: calc(50% - 10px);
    }
    
    /* Coluna de Ã­cones ocupa toda a largura */
    .ct-footer .stk-292e434 {
        flex: 1 1 100% !important;
        width: 100% !important;
    }
    
    /* Se nÃ£o couber, empilha as colunas de texto */
    @media (max-width: 480px) {
        .ct-footer .stk-1f21da6,
        .ct-footer .stk-9220a75 {
            flex: 1 1 100% !important;
            max-width: 100%;
        }
    }
    
    /* Logo centralizado e menor */
    .ct-footer .stk-dc560a6 .stk-img-wrapper {
        width: 60% !important;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .ct-footer .stk-dc560a6 {
        text-align: center !important;
    }
    
    .ct-footer .stk-block-text__text a {
        display: inline-block;
        padding: 4px 0;
        font-size: 14px;
    }
    
    /* Texto centralizado em mobile */
    .ct-footer .stk-1f21da6 .stk-block-text,
    .ct-footer .stk-9220a75 .stk-block-text {
        text-align: center !important;
    }
    
    .ct-footer .stk-1f21da6 .stk-block-text__text,
    .ct-footer .stk-9220a75 .stk-block-text__text {
        text-align: center !important;
    }
    
    /* Ãcones de redes sociais lado a lado 50% cada */
    .ct-footer .stk-292e434-inner-blocks,
    .ct-footer .stk-b86cd66-inner-blocks,
    .ct-footer .stk-99f162b-inner-blocks {
        align-items: center !important;
        justify-content: center !important;
    }
    
    .ct-footer .stk-1e2bb60-column {
        justify-content: center !important;
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
    }
    
    /* Ãcones mais juntos - cada um ocupa menos espaÃ§o */
    .ct-footer .stk-1e2bb60-column {
        gap: 10px !important;
    }
    
    .ct-footer .stk-1e2bb60-column .stk-block-column {
        flex: 0 0 auto !important;
        max-width: none !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    /* Centralizar Ã­cones dentro de suas colunas */
    .ct-footer .stk-1e2bb60-column .stk-block-column .stk-block-content {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Ajuste de padding no container do footer */
    .ct-footer [data-column="widget-area-1"] {
        padding: 30px 20px;
    }
    
    /* Melhor espaÃ§amento entre seÃ§Ãµes */
    .ct-footer .stk-block-column:not(:last-child) {
        margin-bottom: 50px;
    }
}

/* Estilos para formulÃ¡rio Formidable Forms - borda preta sem border-radius */
.frm_forms input[type="text"],
.frm_forms input[type="email"],
.frm_forms textarea {
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.frm_forms input[type="text"]:focus,
.frm_forms input[type="email"]:focus,
.frm_forms textarea:focus {
    border-color: #000000 !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Cores especÃ­ficas para cada campo quando em foco */
/* Nome - vermelho */
#field_qh4icy:focus {
    border-color: #CD171A !important;
    box-shadow: none !important;
}

/* Apelido - vermelho */
#field_ocfup1:focus {
    border-color: #CD171A !important;
    box-shadow: none !important;
}

/* Email - azul */
#field_29yf4d:focus {
    border-color: #009FE3 !important;
    box-shadow: none !important;
}

/* Assunto - verde */
#field_e6lis6:focus {
    border-color: #8BB55F !important;
    box-shadow: none !important;
}

/* Mensagem - amarelo */
#field_9jv0r1:focus {
    border-color: #FFD700 !important;
    box-shadow: none !important;
}

.frm_button_submit {
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
}

/* Padding lateral e top para formulÃ¡rio de contactos */
.formulario-contactos {
    padding-left: 50px !important;
    padding-right: 50px !important;
    padding-top: 50px !important;
}

/* Padding lateral e top para tÃ­tulo de contactos */
.stk-ddb5dac {
    padding-left: 50px !important;
    padding-right: 50px !important;
    padding-top: 50px !important;
}

@media (max-width: 1024px) {
    .formulario-contactos {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 20px !important;
    }
    
    .stk-ddb5dac {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 20px !important;
    }
}

/* BotÃ£o para abrir/fechar mapa */
.arteeciencia-mapa-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    margin: 0 auto 20px;
    background-color: transparent;
    color: #CD171A;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.arteeciencia-mapa-toggle:hover {
    opacity: 0.8;
}

.arteeciencia-mapa-toggle .botao-texto {
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 1.2;
}

.arteeciencia-mapa-toggle .botao-seta {
    display: block;
    width: 24px;
    height: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.arteeciencia-mapa-toggle .botao-seta svg {
    width: 100%;
    height: 100%;
    stroke: #000;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.arteeciencia-mapa-toggle.mapa-aberto .botao-seta {
    transform: rotate(180deg);
}

.mapa-container .stk-0ca829c {
    transition: max-height 0.8s ease, opacity 0.8s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.mapa-container .stk-0ca829c.mapa-aberto {
    max-height: 800px;
    opacity: 1;
}

.mapa-container .stk-0ca829c.mapa-fechado {
    max-height: 0;
    opacity: 0;
}

@media (max-width: 1024px) {
    .arteeciencia-mapa-toggle {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/* Checkbox com borda preta */
input.ct-checkbox,
input[type="checkbox"].ct-checkbox,
#rememberme.ct-checkbox {
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
}

/* Campo de input de login com borda preta */
input.input,
input[type="text"].input,
#user_login.input {
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
}
