/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a1a1a; /* Fondo oscuro */
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000;
    z-index: 1000;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('path/to/hero-image.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0;
}

.hero button {
    padding: 10px 20px;
    background-color: #e63946;
    color: white;
    border: none;
    font-size: 1em;
    cursor: pointer;
}

.hero button:hover {
    background-color: #d32f2f;
}

/* Servicios */
.servicios {
    padding: 60px 0;
    text-align: center;
}

.servicios h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.servicio {
    display: inline-block;
    width: 30%;
    padding: 20px;
    background-color: #333;
    margin: 10px;
    border-radius: 10px;
}

.servicio img {
    max-width: 50px;
    margin-bottom: 15px;
}

.servicio h3 {
    font-size: 1.8em;
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
