@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0b;
    color: #dcdcdc;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #00ff80;
    font-family: 'Press Start 2P', cursive;
    letter-spacing: 1px;
}

.section {
    padding: 60px 10%;
    text-align: center;
}

.hero {
    height: 100vh;
    background: linear-gradient(to bottom, #0b0b0b, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    color: #bdbdbd;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn {
    background-color: #00ff80;
    color: #000;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #00cc66;
}

.servicios-grid, .proyectos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: #141414;
    padding: 25px;
    border: 1px solid #00ff80;
    border-radius: 8px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00ff80;
}

.contacto p {
    margin-top: 10px;
}

footer {
    background-color: #0b0b0b;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #00ff80;
    font-size: 0.9rem;
}
