/* FOLHA DE ESTILOS DE PARTNERS */

* { box-sizing: border-box; }

body {
    margin: 0;
    height: 100vh;
    font-family: "Poppins", sans-serif;
    background: radial-gradient(circle at center, #0f172a, #000);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 2s ease;
    animation: gradientIdle 15s ease infinite;
}

@keyframes gradientIdle {
    0% { background: radial-gradient(circle at center, #0f172a, #000); }
    50% { background: radial-gradient(circle at center, #1e3a8a, #000); }
    100% { background: radial-gradient(circle at center, #0f172a, #000); }
}

body.expanded {
    animation: gradientExpanded 12s ease infinite;
}

@keyframes gradientExpanded {
    0% { background: radial-gradient(circle at center, #1e40af, #000); }
    50% { background: radial-gradient(circle at center, #3b82f6, #0f172a); }
    100% { background: radial-gradient(circle at center, #1e40af, #000); }
}

/* Scroll sem barra visível */
body::-webkit-scrollbar {
    display: none;
    overflow: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.container { position: relative; width: 100%; height: 100%; }

.central-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 320px;
    background: #054dc1;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: transform 0.5s ease;
}

.central-card:hover {
    transform: translate(-50%, -50%) scale(1.05);
    cursor: pointer;
}

.central-card img { width:170px; height:100px; margin-bottom:35px; }
.central-card h2 { margin:0; font-size:1.3rem; }
.central-card p { font-size:0.9rem; color:#94a3b8; text-align:center; padding:0 15px; }

.radial-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 220px;
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
    transition: all 1s ease;
    pointer-events: none;
    text-align: center;
}

.radial-card img { width:100px; height:80px; border-radius:10%; margin-bottom:20px; }
.radial-card:hover { transform: translate(-50%, -50%) scale(1.1); filter: brightness(1.1); }
.radial-card.active { opacity:1; pointer-events:auto; }

@media(max-width:768px){
    .central-card { width:200px; height:250px; }
    .radial-card { width:140px; height:180px; transform: translate(-50%, -50%) scale(0.25); }
}

@media(max-width:480px){
    .central-card { width:180px; height:220px; }
    .radial-card { width:120px; height:160px; transform: translate(-50%, -50%) scale(0.2); }
}