/* Reset básico */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* ocupa toda a altura da tela */
    background: linear-gradient(rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.05)), url('https://www.transparenttextures.com/patterns/cubes.png');
    background-color: #5b5b5b;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
}

main {
    flex: 1; /* faz o conteúdo crescer e empurrar o footer para baixo */
}

/* Menu Hambúrguer - Estilos */

/* Botão do Menu Hambúrguer */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.menu-toggle:hover {
    background: #555;
    transform: scale(1.05);
}

.menu-toggle.active {
    background: #1580ea;
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: flex-start; /* logo à esquerda */
        gap: 10px; /* espaço entre mascote e texto */
        padding: 0 20px; /* espaçamento interno */
    }

    /* Botão do menu hambúrguer */
    .menu-toggle {
        display: flex;
        position: absolute; /* não interfere no flow do navbar */
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        background: #333;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 26px;
        cursor: pointer;
        z-index: 1000;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .menu-toggle:hover {
        background: #555;
        transform: scale(1.05);
    }

    .menu-toggle.active {
        background: #1580ea;
    }

    /* Menu lateral */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #2c3e50;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 4px 0;
        list-style: none;
    }

    .nav-menu li a {
        display: block;
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: #ffffff0d;
    }

    .nav-menu li a:hover {
        background: #ffffff26;
        transform: translateX(5px);
    }
}

/* Desktop - menu normal */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
}

/* Classe helper para esconder elementos */
.hidden {
    display: none;
}

/* hotbar */
.hotbar{
    background: #2f2e2edb;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgb(0, 0, 0);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    
}
.logo {
    color: #1580ea;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #1580ea;
    text-decoration: none;
    font-weight: 600;
}
.nav-menu a:hover{
    color: #ffffff;
}

/* Hero */
.hero-section {
    text-align: center;
    padding: 50px 20px;
    background: #004183;
    padding-top: 90px;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-section p {
    color: #ffffff;
    font-size: 1.2rem;
}

/* Funcionalidades */
.features-section {
    padding: 40px 20px;
    text-align: center;
}

.features-section h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.features-section ul {
    color: #ffffff;
    list-style: none;
}

.features-section li {
    margin: 10px 0;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 30px 5%;   
    background-color: #2f2e2e;
    color: #ffffff;
    text-align: center;
}
