/* --- RESET E VARIÁVEIS --- */
:root {
    /* Cores Principais - Reestilizadas para Azul #1526ff */
    --primary-color: #1526ff;
    --primary-hover: #0e1bc7; 
    --primary-light: #f0f2ff; /* Azul claríssimo para fundos de itens e badges */
    --primary-soft: rgba(21, 38, 255, 0.1); 
    --primary-border: rgba(21, 38, 255, 0.2);
    
    /* Cores de Feedback e Auxiliares */
    --speed-green: #22C55E;
    --bg-overlay: rgba(10, 12, 30, 0.68); /* Leve toque azulado no fundo escuro */
    --bg-overlay-deep: rgba(5, 7, 20, 0.75);
    
    /* Neutros */
    --text-dark: #0a0d2e; /* Azul marinho quase preto para melhor leitura */
    --text-gray: #5c627a;
    --text-light: #9499b0;
    --bg-card: #ffffff;
    --white: #ffffff;
    
    /* Estrutura */
    --radius: 16px;
    --radius-sm: 12px;
    --radius-pill: 50px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; */
    font-family: Arial, Helvetica, sans-serif;
}

/* --- BACKGROUND E LAYOUT GERAL --- */
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    /* Gradiente radial com a nova cor base azul */
    background-image:
        radial-gradient(circle at 80% 20%, var(--primary-soft) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(21, 38, 255, 0.08) 0%, transparent 45%),
        linear-gradient(var(--bg-overlay), var(--bg-overlay-deep)),
        url('../img/bg.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column; 
    gap: 12px;
    align-items: center;    
    justify-content: center;
}

/* --- COLUNA DA ESQUERDA (Info) --- */
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    width: 100%;
}

.logos-area {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 15px;
    margin-bottom: 8px; 
}

.logos-area img {
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.divider {
    height: 25px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.info-card {
    background: var(--bg-card);
    padding: 12px 10px 8px 10px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card h1 {
    color: var(--text-dark);
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 12px;
    text-align: center;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
}

/* Adicione isso ao seu CSS */
.titulo-logo {
    height: 1.3em; /* Ajusta a altura baseada no tamanho da fonte do h1 */
    width: auto;   /* Mantém a proporção da imagem */
    vertical-align: middle; /* Alinha o centro da imagem com o texto */
    margin-bottom: 4px; /* Um leve ajuste fino se necessário para centralizar perfeito */
}

/* --- Estilos do Badge de Parceiro --- */
.partner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    background-color: var(--primary-light);
    color: var(--primary-color);
    border: 1px solid var(--primary-border);
    
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
    
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    align-self: center;
}

.partner-badge a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.partner-badge a:hover {
    text-decoration: underline;
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* --- COLUNA DA DIREITA (Links) --- */
.right-column {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

.links-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--white);
    position: relative;
}

.link-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-soft);
}

/* Item em Destaque (Verde) */
.link-item.featured {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.link-item.featured:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 15px var(--primary-soft);
}

.link-item.featured .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.link-item.featured .text-box h3,
.link-item.featured .text-box span,
.link-item.featured .arrow-icon {
    color: var(--white);
}

/* Badge "Mais Rápido" */
.badge-speed {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--speed-green);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.text-box h3 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.text-box span {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.arrow-icon {
    color: #ddd;
    transition: var(--transition);
}

.link-item:not(.featured):hover .arrow-icon {
    color: var(--primary-color);
    transform: translateX(4px);
}

.link-item.featured:hover .arrow-icon {
    transform: translateX(4px);
}

.footer-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 850px) {
    .container {
        flex-direction: column;
    }

    .info-card {
        padding: 30px;
    }

    .partner-badge {
        margin: 0 auto 4px auto;
        font-size: 0.55rem;
        align-items: center;
        text-align: center;
    }

}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

.inter-font {
    font-family: "Inter", sans-serif;
    font-weight: 600;
}