/* public/style.css */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a; /* Fundo Escuro Profissional */
    color: #f0f0f0;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HEADER & LOGO --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px; /* Espaço entre logo e texto */
}

.header-logo {
    height: 50px; /* Tamanho da logo */
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db; /* Azul do tema */
}

/* --- NAVEGAÇÃO --- */
nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- HERO SECTION --- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- FEATURES GRID --- */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: #252525;
    padding: 25px;
    border-radius: 12px;
    width: 260px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #3498db;
}

.feature-box h3 {
    color: #fff;
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #bbb;
    margin: 0;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
    margin-top: auto;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.contact {
    margin-top: 10px;
    color: #888;
}