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

body {
    background-color: #050505; /* Preto Quase Puro */
    color: #ffffff; /* Branco */
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth; /* Rolagem suave */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia e Efeito Neon */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif; /* Fonte Tech */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-text {
    color: #00ffff; /* Ciano Neon */
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 40px #00ffff;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc; /* Cinza claro */
}

/* Botão Estilo Neon */
.btn-neon {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 0 10px #00ffff, 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-neon:hover {
    background-color: #00ffff;
    color: #050505;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}

/* Header / Menu */
header {
    background-color: rgba(5, 5, 5, 0.9); /* Fundo semitransparente */
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px; /* Ajuste a altura da sua logo */
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00ffff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Portfólio */
.portfolio {
    padding: 100px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #00ffff;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Orçamento */
.orcamento {
    background-color: #101010; /* Fundo levemente mais claro */
    padding: 100px 0;
}

.orcamento form {
    display: flex;
    flex-direction: column;
}

.orcamento input, .orcamento textarea {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #00ffff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.orcamento input::placeholder, .orcamento textarea::placeholder {
    color: #cccccc;
}

/* Rodapé */
footer {
    background-color: #050505;
    padding: 50px 0;
    text-align: center;
}

footer .social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2rem;
}
