/* Estilos Globais */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1e1e2e;
    background-color: #f5f7ff;
}

.painel-parceiro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.painel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.painel-header h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #5e60ce, #7400b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.usuario-info {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #475569;
}

.painel-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.painel-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #5e60ce;
    display: flex;
    align-items: center;
}

.passo-numero {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #5e60ce;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 1rem;
}

.painel-section p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #475569;
}

.painel-section .botoes {
    display: flex;
    gap: 1rem;
}

.painel-section .botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.1);
    position: relative; /* Para posicionar o tooltip */
    overflow: visible; /* Garante que o tooltip não seja cortado */
}

.botao.adicionar {
    background: #5e60ce;
    color: #ffffff;
    box-shadow: 0 4px 0 0 #4e4ec4;
}

.botao.adicionar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #4e4ec4;
}

.botao.adicionar:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 0 #4e4ec4;
}

.botao.editar {
    background: #ff4d6d;
    color: #ffffff;
    box-shadow: 0 4px 0 0 #e0244f;
}

.botao.editar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #e0244f;
}

.botao.editar:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 0 #e0244f;
}

.botao.configurar {
    background: #6366f1;
    color: #ffffff;
    box-shadow: 0 4px 0 0 #4f46e5;
}

.botao.configurar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 #4f46e5;
}

.botao.configurar:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 0 #4f46e5;
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    top: -30px; /* Posiciona acima do botão */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none; /* Evita que o tooltip interfira com o mouse */
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.botoes .botao:hover .tooltip {
    opacity: 1;
}

/* Mensagem de erro */
.mensagem-embarcacao {
    color: #ff4d6d;
    font-size: 0.875rem;
    margin-top: 1rem;
}

