/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* HERO FUTURISTA */
.hero {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* SOBRE */
.sobre {
    padding: 60px 20px;
    text-align: center;
    color: #e0e0e0;
    background-color: #0a0f2c;
}

.sobre h2 {
    color: #00bfff;
    margin-bottom: 20px;
}

/* TECNOLOGIAS */
.tecnologias {
    background-color: #081229;
    padding: 60px 20px;
    text-align: center;
}

.tecnologias h2 {
    color: #00bfff;
    margin-bottom: 40px;
}

.icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon img {
    width: 100px;
    filter: drop-shadow(0 0 12px #00bfff);
}

.icon span {
    margin-top: 12px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
}

/* PROJETOS */
.projetos {
    background-color: #0a0f2c;
    padding: 60px 20px;
    text-align: center;
}

.projetos h2 {
    color: #00bfff;
    margin-bottom: 40px;
}

.projeto img {
    width: 420px;
    border-radius: 10px;
    box-shadow: 0 0 25px #00bfff;
}

.projeto h3 {
    color: #00bfff;
    margin-top: 25px;
    font-size: 1.6rem;
}

.projeto p {
    color: #d0d0d0;
    margin: 12px 0 25px;
    font-size: 1.2rem;
}

.projeto a {
    display: inline-block;
    margin-top: 15px;
    color: #0a0f2c;
    background-color: #00bfff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
}

.projeto a:hover {
    background-color: #ffffff;
    color: #0a0f2c;
}

/* CONTATO */
.contato {
    background-color: #081229;
    color: #e0e0e0;
    text-align: center;
    padding: 40px 20px;
}

.contato a {
    color: #00bfff;
    text-decoration: none;
}

.contato a:hover {
    text-decoration: underline;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .projeto img {
        width: 90%;
    }
}
