/* ==========================================================================
   7. ESTILOS DA PÁGINA DE SERVIÇOS (servicos.html)
   ========================================================================== */

.tab-button {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #d6d3d1;
    border-radius: 9999px;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #292524;
}

.tab-button:hover {
    background-color: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

.tab-button.active {
    background-color: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    height: 350px;
    max-height: 400px;
}

.flow-step {
    border: 2px solid #d6d3d1;
    background-color: #fafaf9;
    padding: 0.75rem;
    border-radius: 0.375rem;
    text-align: center;
}

.flow-arrow {
    color: #a8a29e;
    font-size: 1.5rem;
    font-weight: 300;
    transform: rotate(90deg); /* Para mobile */
}

/* ==========================================================================
   9. MEDIA QUERIES PARA RESPONSIVIDADE
   ========================================================================== */

@media (min-width: 768px) {
    .flow-arrow {
        transform: rotate(0deg); /* Seta na horizontal para desktop */
    }
    .chart-container {
        height: 400px;
    }
}
