/* Estilos globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fee700;
    line-height: 1.6;
}

/* Estilos del header */
header {
    background-color: #FFFF00;
    padding: 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

/* Estilos para el menú hamburguesa */
.hamburger {
    display: none;
    font-size: 2rem;
    color: #fee700;
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    height: 70vh;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fee700;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    padding: 0.8rem 1.5rem;
    background-color: #fee700;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #333;
    color: #fff;
}

/* Services Section */
#services {
    padding: 3rem 2rem;
    background-color: #000;
    text-align: center;
}

.services-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.service-card h3 {
    color: #fee700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
}

/* Footer */
footer {
    background-color: #000;
    color: #fee700;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none;
        width: 100%;
        background-color: #ff0000;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 1rem;
        z-index: 10;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .nav-links a {
        color: #fff;
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
    }

    .hamburger {
        display: block;
    }

    /* Mostrar el menú cuando el checkbox está marcado */
    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Ocultar el botón de hamburguesa en pantallas grandes */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}
