/* Reset Básico de Estilos */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'pillowlava';
    src: url('fonts/Pilowlava-Regular.woff') format('woff');
    font-weight: normal;
}

@font-face {
    font-family: 'abordage';
    src: url('fonts/Abordage-Regular.woff2') format('woff2');
    font-weight: normal;
}


body {
    font-family: 'LilGroteskR', Arial, sans-serif;
    background-color: #a0a0a0;
    color: #000;
    height: 100vh;
    overflow: hidden;
}

/* --- Slideshow Container --- */
.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Textura sutil no slide */
.slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj4KPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iNTAwJSIgZmlsbD0iI2EwYTBhMCIgZmlsbC1vcGFjaXR5PSIwLjMiIC8+CjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjYmFzZSkiIC8+CjxkZWZzPgo8cGF0dGVybiBpZD0iYmFzZSIgd2lkdGg9IjEuNyIgaGVpZ2h0PSIxLjciIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgogIDxjaXJjbGUgY3g9IjAuODUiIGN5PSIwLjg1IiByPSIwLjg1IiBmaWxsPSIjOTQ5NDk0IiAvPgo8L3BhdHRlcm4+CjwvZGVmcz4KPC9zdmc+');
    background-size: 1.7px;
    opacity: 0.2;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
}

/* --- Info Panel (Glassmorphism) --- */
.info-panel {
    position: fixed;
    top: 30px;
    left: 30px;
    width: calc(100% - 80px);
    max-width: 400px;
    max-height: 370px;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(51, 0, 204, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: none;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

/* --- Brand Logo --- */
.brand-logo {
    font-family: 'pillowlava', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    padding: 15px;
}

/* --- Separator Line --- */
.line {
    border: none;
    height: 1px;
    background-color: #fff;
    margin: 20px 0;
    width: 100%;
}

.bio-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 15px 0;
}

.bio-text p {
    font-family: 'abordage', Arial, sans-serif;
    font-size: 0.8rem;
    text-align: justify;
    line-height: 1.4;
    color: #fff;
}

/* --- Navigation Buttons Grid --- */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

/* --- Button Styles --- */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    font-family: 'abordage', Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .info-panel {
        max-width: 400px;
        padding: 25px;
        top: 25px;
        left: 25px;
        width: calc(100% - 50px);
    }

    .brand-logo {
        font-size: 2.5rem;
    }

    .bio-text {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bio-text p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .info-panel {
        top: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        width: calc(100% - 40px);
        padding: 20px;
        max-height: calc(100vh - 40px);
    }

    .brand-logo {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .bio-text {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 12px 0;
    }

    .bio-text p {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .action-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .btn {
        font-size: 0.65rem;
        height: 36px;
    }

    .line {
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .info-panel {
        top: 15px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        padding: 15px;
        max-height: calc(100vh - 30px);
    }

    .brand-logo {
        font-size: 1.5rem;
        margin-bottom: 10px;
        padding: 10px;
    }

    .bio-text {
        grid-template-columns: 1fr;
        gap: 6px;
        margin: 10px 0;
    }

    .bio-text p {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .btn {
        font-size: 0.6rem;
        height: 32px;
    }

    .line {
        margin: 12px 0;
    }
}

/* --- Floating Spinning Icon --- */
.floating-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-decoration: none;
    animation: spin 4s linear infinite;
}

.floating-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.floating-icon:hover {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}