/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section - Imagem de topo grande */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    background-image: url('../img/topo1.png'); /* Imagem substituída */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

/* Profile Picture - Ocultado conforme solicitado */
.profile-picture-container {
    display: none;
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    filter: grayscale(10%);
}

.profile-picture:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.9),
        0 0 80px rgba(255, 255, 255, 0.15);
}

/* Typography */
.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    letter-spacing: -2px;
}

.profile-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 200;
}

.profile-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.4;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-icon svg {
    width: 26px;
    height: 26px;
    z-index: 2;
    position: relative;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Links Section */
.links-section {
    padding: 80px 0;
    background: #000;
    position: relative;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    z-index: 0;
}

.links-section .container {
    position: relative;
    z-index: 1;
}

.cta-text {
    text-align: center;
    margin-bottom: 60px;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Botões Modernos com Imagens */
.link-button {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    min-height: 100px;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 255, 255, 0.1);
}

/* Imagem do botão */
.link-image {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
}

.link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(20%);
}

.link-button:hover .link-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Conteúdo do botão */
.link-content {
    flex: 1;
    padding: 20px 0;
}

.link-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    transition: all 0.3s ease;
}

.link-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin: 0;
}

.link-button:hover .link-content h3 {
    color: #fff;
}

.link-button:hover .link-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Seta do botão */
.link-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.link-arrow svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.link-button:hover .link-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.link-button:hover .link-arrow svg {
    color: #fff;
}

/* Footer */
.footer-section {
    padding: 50px 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 300;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-button {
    animation: fadeInUp 0.8s ease-out;
}

.link-button:nth-child(2) { animation-delay: 0.1s; }
.link-button:nth-child(3) { animation-delay: 0.2s; }
.link-button:nth-child(4) { animation-delay: 0.3s; }
.link-button:nth-child(5) { animation-delay: 0.4s; }
.link-button:nth-child(6) { animation-delay: 0.5s; }

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        background-attachment: scroll;
    }
    .profile-name {
        font-size: 3.5rem;
    }
    .social-icons {
        gap: 20px;
    }
    .social-icon {
        width: 55px;
        height: 55px;
    }
    .link-button {
        min-height: 90px;
    }
    .link-image {
        width: 80px;
        height: 80px;
        margin-right: 20px;
    }
    .link-content h3 {
        font-size: 1.2rem;
    }
    .link-content p {
        font-size: 0.9rem;
    }
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    .profile-subtitle {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    .link-button {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 20px;
    }
    .link-image {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .link-arrow {
        margin-right: 0;
        margin-top: 10px;
    }
    .links-section {
        padding: 60px 0;
    }
}

/* Efeitos especiais para diferentes seções */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 1;
}