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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099ff;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --dark-bg: rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baradig', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    height: 100vh;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/background.png') center/cover no-repeat fixed;
    z-index: -2;
}


/* Container Principal */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Header */
.header {
    padding: 2rem 0;
    text-align: center;
    animation: fadeInDown 1s ease;
}

.logo-container {
    display: inline-block;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.title-container {
    margin-bottom: 3rem;
}

.main-title {
    font-size: clamp(1.26rem, 2.8vw, 2.1rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.typing-container {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-color);
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.typed-text {
    color: #ffffff;
    font-weight: 700;
}

.cursor {
    color: #ffffff;
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Contact Section */
.contact-section {
    animation: fadeInUp 1s ease 0.6s both;
    text-align: center;
}

.contact-text {
    font-size: clamp(0.7rem, 1.75vw, 1.05rem);
    font-weight: 400;
    color: var(--text-color);
}

.contact-email {
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-email:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInUp 1s ease 0.9s both;
}

.copyright {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 180px;
    }

    .contact-text {
        font-size: 0.84rem;
    }

    .main-content {
        padding: 2rem 0;
    }

    .hero-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-text {
        font-size: 0.7rem;
    }

    .footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .social-links {
        gap: 1.2rem;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

