/* styles.css */

/* Estilos para o sticky footer */
html, body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    height: 100%;
    margin: 0;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content {
    flex: 1;
}
footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
}

/* Variáveis de Cor da Marca */
:root {
    --bs-primary: #2c7d74;
    --bs-secondary: #577975;
    --bs-light-bg: #f8f9fa;
}

/* Tipografia e Cores */
h1, h2, h3, h4 {
    color: #2c3e50;
    font-weight: 700;
}

.text-brand {
    color: var(--bs-primary);
}

.lead {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Cards da Equipe */
.team-card {
    border: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 25px;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid rgba(44, 125, 116, 0.15);
    padding: 4px;
    background: #fff;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--bs-secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-lattes {
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    color: #555;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
}

.btn-lattes:hover {
    background-color: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
}

/* Seções */
.section-padding {
    padding: 80px 0;
}

.bg-gray-soft {
    background-color: var(--bs-light-bg);
}

/* Área da API (Code Box) */
.api-box {
    background: #2d3436;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.api-header {
    background: #1e272e;
    padding: 15px 25px;
    font-family: 'Courier New', monospace;
    color: #00cec9;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.api-body {
    padding: 30px;
    color: #dfe6e9;
}
pre.code-snippet {
    background: #171c1f;
    color: #a5b1c2;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #485460;
    font-size: 0.9rem;
    overflow-x: auto;
}
.badge-method {
    background-color: #00b894;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 12px;
}
.table-dark th {
    color: #74b9ff;
}

/* Logos */
.logo-container img {
    transition: filter 0.3s;
    filter: grayscale(100%) opacity(0.7);
}
.logo-container img:hover {
    filter: grayscale(0%) opacity(1);
}

/* Estilos da Página de Resultados */
.result-box {
    border: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.result-box .accordion-header {
    border-bottom: 1px solid #e9ecef;
}

.result-box .accordion-button {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    background-color: #fff;
    box-shadow: none;
}

.result-box .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: rgba(44, 125, 116, 0.05);
}

.result-box .accordion-body {
    padding: 1.5rem;
}

.result-box .card-title {
    color: var(--bs-primary);
}

.result-box h6 {
    font-weight: 700;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 5px;
}

.result-box ul {
    list-style-type: none;
    padding-left: 0;
}

.result-box ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.result-box .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.result-box .btn-primary:hover {
    opacity: 0.9;
}