@charset "UTF-8";

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0;
    padding: 40px 15px;
    /* Espaçamento para respirar */
    display: flex;
    justify-content: center;
    background-color: #ffc0cb;
    /* Rosa de fundo */
    min-height: 100vh;
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    filter: brightness(60%);
}

.container {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    max-width: 450px;
    width: 100%;
    margin: auto;
    /* Centraliza horizontalmente */
}

.logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    /* mostra a imagem inteira */
    margin-bottom: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: rgb(255, 255, 255);
    padding: 5px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.5;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 93%;
}

.link-list li {
    margin-bottom: 1.2rem;
    width: 100%;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: #ff69b4;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    gap: 10px;
}

.link-button:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #ff1493;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff;
    background: rgba(255, 105, 180, 0.3);
    margin: 0 0.7rem 0.7rem;
    font-size: 1.5rem;
    transition: 0.3s;
    border-radius: 50%;
    border: 2px solid #fff;
}

.social-links a:hover {
    color: #ff1493;
    background: #fff;
    transform: scale(1.1);
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .logo-img {
        width: 120px;
        height: 120px;
    }
}