/**
 * Estilos - Hero Section
 * 
 * Seção principal com foto orbital e apresentação
 */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

/* Conteúdo Esquerdo */
.hero-content {
    z-index: 2;
}

.hero-greeting {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-name {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-red);
    margin-bottom: var(--spacing-xl);
    text-shadow: var(--neon-text-glow);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.hero-socials {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: var(--border-width-thin) solid var(--glass-border);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.social-link:hover {
    background: var(--primary-red-glow-soft);
    border-color: var(--primary-red);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--neon-glow-md);
}

/* Foto de Perfil com Órbitas */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.orbital-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    box-shadow: var(--neon-glow-lg), 0 0 80px rgba(255, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Órbitas Girantes */
.orbit {
    position: absolute;
    border: 2px solid transparent;
    border-top-color: var(--primary-red);
    border-right-color: var(--primary-red);
    border-radius: 50%;
    opacity: 0.5;
}

.orbit-1 {
    width: 320px;
    height: 320px;
    animation: orbit-spin 8s linear infinite;
}

.orbit-2 {
    width: 360px;
    height: 360px;
    animation: orbit-spin 12s linear infinite reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    animation: orbit-spin 15s linear infinite;
}

@keyframes orbit-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Efeito de Brilho no Fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Responsivo */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-3xl);
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-socials {
        justify-content: center;
    }

    .orbital-container {
        width: 350px;
        height: 350px;
    }

    .profile-photo {
        width: 250px;
        height: 250px;
    }

    .orbit-1 {
        width: 290px;
        height: 290px;
    }

    .orbit-2 {
        width: 320px;
        height: 320px;
    }

    .orbit-3 {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 80px;
    }

    .hero-name {
        font-size: var(--font-size-4xl);
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-description {
        font-size: var(--font-size-base);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .orbital-container {
        width: 280px;
        height: 280px;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .orbit-1 {
        width: 230px;
        height: 230px;
    }

    .orbit-2 {
        width: 250px;
        height: 250px;
    }

    .orbit-3 {
        width: 280px;
        height: 280px;
    }
}