* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #000;
    min-height: 100vh;
}

.header {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    padding: 15px 50px;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #ff6b9d;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.3));
    cursor: pointer;
}

.logo:hover {
    background: linear-gradient(135deg, #ff6b9d, #ffa36c, #FFD700) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.6)) !important;
    transform: scale(1.05) !important;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav a:hover, .nav a.active {
    color: #ff6b9d;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #ff6b9d, #ffa36c);
    transition: width 0.3s;
}

.nav a:hover::after, .nav a.active::after {
    width: 100%;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(45, 39, 68, 0.95) 0%,
        rgba(23, 25, 35, 0.98) 50%,
        rgba(12, 15, 23, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FF1493, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact_section {
    padding: 100px 50px;
    background: #000;
}

.contact_container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact_title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact_subtitle {
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact_options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact_card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.contact_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.5);
}

.contact_card i {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 20px;
}

.contact_card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact_card p {
    color: #b0b0b0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact_btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.contact_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
    color: #fff;
    text-decoration: none;
}

/* Footer */
.footer {
    padding: 60px 50px 0;
    background: #0a0a0a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 107, 157, 0.2);
}

.footer-contact, .footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3, .footer-social h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact p {
    color: #b0b0b0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 157, 0.3);
    font-size: 24px;
    transition: all 0.3s;
    text-decoration: none;
    color: #ff6b9d;
}

.footer-social a:hover {
    background: rgba(255, 107, 157, 0.3);
    border-color: #ff6b9d;
    transform: scale(1.1);
    color: #fff;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

.footer-bottom strong {
    color: #ff6b9d;
    font-weight: 600;
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animações específicas por elemento */
.contact_card.animate-element {
    transform: translateY(30px) scale(0.95);
}

.contact_card.animate-in {
    transform: translateY(0) scale(1);
}

.hero-content.animate-element {
    transform: translateY(30px) scale(0.95);
}

.hero-content.animate-in {
    transform: translateY(0) scale(1);
}

.contact_title.animate-element {
    transform: translateY(40px);
}

.contact_title.animate-in {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        justify-content: center;
    }

    .nav {
        display: none !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact_section {
        padding: 60px 20px;
    }

    .contact_title {
        font-size: 36px;
    }

    .contact_options {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact_card {
        padding: 30px;
    }

    .logo {
        font-size: 24px;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
        filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.5));
    }

    /* Animações mais suaves no mobile */
    .animate-element {
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .contact_card.animate-element {
        transform: translateY(30px) scale(0.98);
    }

    .contact_card.animate-in {
        transform: translateY(0) scale(1);
    }
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    display: flex;
    justify-content: space-around;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estados do bottom-nav baseados na seção */
.bottom-nav.hero-section {
    background: rgba(26, 10, 31, 0.4);
    border-top: 1px solid rgba(255, 107, 157, 0.15);
}

.bottom-nav.about-section {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    padding: 5px 15px;
}

.nav-item i {
    font-size: 1.3rem;
}

.nav-item.active {
    color: #ff6b9d;
}

.nav-item:active {
    transform: scale(0.9);
}

.nav-item:hover {
    color: #ff6b9d;
    text-decoration: none;
}

/* Adicionar padding bottom no body para compensar a bottom nav */
body {
    padding-bottom: 80px;
}

/* Responsivo - ocultar bottom nav em desktop */
@media (min-width: 900px) {
    .bottom-nav {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
}