/**
 * Estilos do Frontend - Programa de Embaixadores
 * Baseado no layout: Connect by American Burrs
 */

.embaixadores-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.embaixadores-header {
    text-align: center;
    margin-bottom: 30px;
}

.embaixadores-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.embaixadores-subtitulo {
    font-size: 1.25rem;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

.embaixadores-search {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.embaixadores-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.embaixadores-search-icon {
    position: absolute;
    left: 15px;
    color: #999999;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
}

.embaixadores-search-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.3s ease;
}

.embaixadores-search-input:focus {
    outline: none;
    border-color: #666666;
}

.embaixadores-search-input::placeholder {
    color: #999999;
}

.embaixadores-list-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.embaixadores-list {
    max-height: 600px;
    overflow-y: auto;
}

.embaixadores-list::-webkit-scrollbar {
    width: 8px;
}

.embaixadores-list::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.embaixadores-list::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 4px;
}

.embaixadores-list::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

.embaixadores-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.embaixadores-item:last-child {
    border-bottom: none;
}

.embaixadores-item:hover {
    background-color: #fafafa;
}

.embaixadores-item.hidden {
    display: none;
}

.embaixadores-nome {
    font-size: 1rem;
    font-weight: 400;
    color: #333333;
    flex: 1;
}

.embaixadores-pontos {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.embaixadores-pontos-numero {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d32f2f;
}

.embaixadores-pontos-label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #999999;
}

.embaixadores-empty {
    padding: 60px 25px;
    text-align: center;
    color: #666666;
}

.embaixadores-empty p {
    margin: 0;
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .embaixadores-container {
        padding: 20px 15px;
    }
    
    .embaixadores-titulo {
        font-size: 2rem;
    }
    
    .embaixadores-subtitulo {
        font-size: 1.1rem;
    }
    
    .embaixadores-item {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .embaixadores-pontos {
        align-self: flex-end;
    }
}

