/* Configuración General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
}

/* Sección Principal con Imagen de Fondo */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('background-panel.jpg'); /* Reemplaza con tu imagen de tablero eléctrico */
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
}

/* Navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
}

.logo img {
    height: 80px; /* Ajusta según el tamaño de tu logo */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00a8ff; /* Color de acento */
}

/* Contenido Central */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* Botón Contáctanos */
.btn-contact {
    display: inline-block;
    width: fit-content;
    padding: 12px 40px;
    border: 1px solid #4ade80; /* Color verde agua/esmeralda */
    color: #4ade80;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #4ade80;
    color: #000;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
    }
    .nav-links {
        margin-top: 20px;
    }
    .hero-content {
        padding-left: 20px;
        text-align: center;
        align-items: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}