/*
Theme Name: nimo-theme
Theme URI: 
Author: nimo
Author URI: 
Description: 
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nimo-theme
Tags: 
*/

/* Product Page */
.product-large-image {
    /*height: 500px;*/
    border-radius: 10px;
}

/* FAQ Style */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1.1rem;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
    gap: 1em;
}

.faq-question-text {
    flex: 1;
}

.faq-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-accordion {
    max-width: 864px;
    min-width: 864px;
    margin: 2rem auto;
    padding: 1rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}


.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* large enough to fit content */
    padding-bottom: 1rem;
}



/* Features Horizontal Bar */
.feature-rolling-wrapper {
    overflow: hidden;
    width: 100%;
    background: #fff;
    position: relative;
}

.feature-rolling {
    display: flex;
    animation: scroll-left linear infinite;
    animation-duration: 30s;
    flex-direction: row;
    gap: 70px;
    flex: 0 1 auto;
}

.feature-item {
    /*justify-content: center;*/
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    min-width: 250px;
}

.feature-item img {
    filter: brightness(0) saturate(100%) invert(33%) sepia(34%) saturate(1545%) hue-rotate(212deg) brightness(92%) contrast(91%);
    scale: 70%;
}

.feature-item img::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #74a724;
    opacity: 0.6; /* adjust as needed */
    pointer-events: none;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}





/* Hero Bar */
#hero-bar {
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
}

#hero-bar:hover {
    opacity: 0.9;
    /*transform: translateY(-1px);*/
}

/* Box Shadows */
.box-shadow-1 {
    box-shadow: 0 .25rem .5rem #4038331a;
}

.box-shadow-2 {
    /*box-shadow: 0px 0px 10px 0px #0000001B;*/
    box-shadow: 0 8px 15px #00000026;
}


/* Sticky Header */
.wp-block-template-part {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Header arrows and transitions */
.top-arrow {
    cursor: pointer;
}

.top-hero a {
    opacity: 1;
    text-decoration: none;
    transition: opacity 0.5s ease;
}

.top-hero a.fade-out {
    opacity: 0;
}

/* Menus animations */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 4px;
    background-color: #6770C1;
    opacity: 0;
    transition: all 0.3s ease;
}

nav a:hover::after {
    width: 100%;
    opacity: 1;
}

/* Barras de Adaptabilidade e Firmeza */
.custom-bars {
    margin: 20px 0;
}

.bar-item {
    margin-bottom: 15px;
}

.bar-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.bar-background {
    background: #f0f0f0;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    background: #2d5b88; /* Cor da barra */
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease;
}

/*@media (max-width: 600px) {*/
/*    #logo {*/
/*        order: 2;*/
/*    }*/

/*    #top-nav {*/
/*        order: 1;*/
/*    }*/

/*    #top-icons {*/
/*        order: 3;*/
/*    }*/
/*}*/