* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
}

body {
    background-image: url('1920x1080px_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================
   LOGOS - Desktop / Tablet / Notebook
   ======================================== */

.logos-section {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    align-items: center; /* Cada logo fica independente, centralizada no próprio eixo */
    gap: 60px;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Menos espaço entre logo e ícones */
}

.logo-link {
    display: flex;
    align-items: flex-end;
}

.logo {
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Tamanhos proporcionais ao preview (1920x1080) */
.logo-vip {
    height: 7vw !important;  /* Aumentada ~25% */
    max-height: 260px;
}

.logo-instituto {
    height: 16vw;
    max-height: 310px;
    margin-top: 30px; /* Desce a logo do Social Colorado um pouco */
}

.logo-escola {
    height: 10.5vw;
    max-height: 210px;
}

/* Ícones sociais */
.icons {
    display: flex;
    gap: 14px;
}

.icons a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.icons a:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ========================================
   MOBILE
   ======================================== */
@media screen and (max-width: 768px) and (orientation: portrait) {
    body {
        background-image: url('1080x1920px_bg.png');
        background-size: cover;
        background-position: center center;
        background-color: #1a1a1a;
    }

    .logos-section {
        display: flex;
        position: absolute;
        bottom: -2%; /* Empurra para o espaço em branco inferior apontado na imagem */
        left: 50%;
        transform: translateX(-50%);
        gap: 6%;
        width: 100%; /* Aumentado para acomodar os logos maiores */
        justify-content: center;
        align-items: center;
    }

    .brand {
        gap: 8px; /* Distância ideal entre icones e logos */
    }

    .logo-vip {
        height: 6vh; /* Tamanho grandemente aumentado */
        max-height: none;
    }

    .logo-instituto {
        height: 15vh; /* Tamanho grandemente aumentado */
        max-height: none;
        margin-top: 0; /* Resetado para alinhar certinho com as outras no celular */
    }

    .logo-escola {
        height: 8vh; /* Tamanho grandemente aumentado */
        max-height: none;
    }

    .icons a {
        font-size: 1.2rem; /* Ícones mais legíveis */
    }

    .icons {
        gap: 10px;
    }

    .footer {
        display: block;
        bottom: 3%;
        font-size: 0.65rem;
    }
}
