/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Textura sutil no fundo */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 60px);
}

.container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Título principal */
.main-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out 0.2s backwards;
}

.main-title .highlight {
    color: #e63946;
    display: inline-block;
    position: relative;
}

/* Efeito sutil de brilho na palavra TALENTO */
.main-title .highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

/* Subtítulo */
.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    color: #d1d1d1;
    margin-bottom: 50px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 600;
    color: #ffffff;
    background: #e63946;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

/* Efeito de brilho no botão */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.6);
    background: #ff4552;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

/* Rodapé */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #666666;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 20px;
    }

    .main-title {
        margin-bottom: 25px;
    }

    .subtitle {
        margin-bottom: 40px;
    }

    .cta-button {
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .main-title {
        letter-spacing: 0.01em;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}
