/* public_html/css/style.css */

.section-padding {
    padding: 4rem 1rem;
}
@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 350px;
    max-height: 400px;
}
@media (min-width: 768px) {
     .chart-container {
        height: 400px;
    }
}
.spinner {
    border-top-color: #BCA37F;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- ESTILOS ADICIONAIS PARA O TOOLTIP DO CHART.JS --- */
.custom-tooltip {
    opacity: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    pointer-events: none; /* Garante que o tooltip não interfere com eventos de mouse no chart */
    transition: opacity 0.3s ease;
    min-width: 250px; /* Largura mínima para o tooltip */
    z-index: 100; /* Garante que o tooltip apareça sobre outros elementos */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    /* Para posicionamento do "caret" (ponteiro) */
    transform: translateX(-50%); /* Ajuste inicial para centralizar horizontalmente */
}

.custom-tooltip .tooltip-title {
    font-weight: bold;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #BCA37F; /* Cor dourada para o título do tooltip */
}

.custom-tooltip .tooltip-item {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.custom-tooltip .tooltip-color-box {
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 3px;
    display: inline-block;
}



/* Novos estilos para FAQ */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0A192F;
}
.faq-question svg {
    transition: transform 0.3s ease;
}
.faq-question.active svg {
    transform: rotate(180deg);
}
.faq-answer {
    padding-bottom: 1.25rem;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding-bottom 0.5s ease-out;
}
.faq-answer.open {
    max-height: 500px; /* Ajuste conforme necessário para o conteúdo */
    padding-bottom: 1.25rem;
}

/* Estilos para carrossel de logos - Simples, sem JS complexo */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}
.logo-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}