:root {
    --primary: #f26522;
    --secondary: #102a43;
    --dark: #050a0f;
    --white: #ffffff;
    --gray: #b0b0b0;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: rgba(16, 42, 67, 0.95);
    backdrop-filter: blur(15px);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-logo {
    height: 45px;
    transition: 0.3s;
}

/* Menu Desktop */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin-left: 15px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px;
    transition: 0.3s;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--primary);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--secondary);
    min-width: 180px;
    top: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.dropdown-content a {
    padding: 12px 20px !important;
    display: block !important;
    border: none !important;
    margin: 0 !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 40px;
        transition: 0.5s;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.2);
        border: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }
}

/* Seção Hero - Foguete e Botões */
.hero {
    height: 100vh;
    background: url('gerabytez2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 15, 0.9) 40%, rgba(5, 10, 15, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(90deg, #f26522, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-main {
    background: var(--primary);
    color: white !important;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
}

.btn-card {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
}

/* Cores Especiais do Menu */
.link-copa {
    color: #00ff00 !important;
    font-weight: bold;
}

.btn-contato {
    background: var(--primary);
    border-radius: 50px;
    padding: 10px 25px !important;
    font-weight: bold !important;
    transition: 0.3s;
}


.btn-sec {
    border: 2px solid white;
    color: white !important;
    padding: 13px 33px;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-main:hover,
.btn-sec:hover {
    transform: translateY(-3px);
}

.rocket-wrap {
    font-size: clamp(8rem, 20vw, 15rem);
    animation: float 6s infinite ease-in-out;
    filter: drop-shadow(0 0 20px var(--primary));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

/* Outras Seções */
.section-padding {
    padding: 100px 0;
}

.alt-bg {
    background: #08111a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.orange {
    color: var(--primary);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.grid-layout2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.office-col {
    background: var(--glass);
    padding: 25px;
    border-radius: 15px;
    border-top: 4px solid var(--primary);
}

footer {
    text-align: center;
    padding: 50px;
    border-top: 1px solid var(--glass);
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--glass);
    padding: 25px;
    border-radius: 15px;
}

.contact-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: white;
    border-radius: 8px;
    min-height: 150px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}