* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page.active {
    opacity: 1;
    visibility: visible;
}

/* Entrance Page Styles */
#entrance-page {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.entrance-container {
    text-align: center;
}

.entrance-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.entrance-text:hover {
    opacity: 1;
}

/* Main Page Styles */
#main-page {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

#volume-icon {
    width: 48px;
    height: 48px;
    padding-left: 10px;
    padding-right: 10px;
    /* background: rgba(255, 255, 255, 0.12) !important; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, width 0.3s, height 0.3s;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

/* Volume Controls */
.volume-controls {
    position: absolute;
    top: 20px; /* Ajusta a posição no canto superior esquerdo */
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.volume-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #fff;
}

.volume-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.volume-slider {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    opacity: 0; /* Torna o slider invisível */
    transition: opacity 0.3s ease;
    pointer-events: none; /* Evita interação quando invisível */
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.volume-controls:hover .volume-slider {
    opacity: 1; /* Torna o slider visível ao passar o mouse */
    pointer-events: auto; /* Permite interação quando visível */
}

.main-content {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

.profile-section {
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Suaviza o efeito */
}

.profile-avatar:hover {
    transform: scale(1.1); /* Aumenta o tamanho da imagem */
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3); /* Adiciona sombra */
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.profile-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-subtitle {
        font-size: 1.1rem;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 1.75rem;
    }
    
    .profile-subtitle {
        font-size: 1rem;
    }
    
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
    
    .volume-controls {
        top: 10px;
        right: 10px;
    }
    
    .volume-slider {
        width: 80px;
    }
}

