body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 80px; /* Asegurar que el contenido no se superponga con el menú fijo */
}

header {
    background: #333;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    height: 200px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 1.2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.menu-toggle {
    display: none;
}

#hero {
    background: url('assets/images/hero_background.jpg') no-repeat center center/cover;
    color: #fff;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero .container {
    max-width: 800px;
}

#hero .btn {
    background: #ff6600;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

#hero .btn:hover {
    background: #e55b00;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding: 2rem 0;
}

#servicios .servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.servicio {
    background: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.servicio:hover {
    transform: translateY(-10px);
}

#empresa {
    background: #fff;
    padding: 3rem 0;
    text-align: center;
}

#empresa .btn {
    margin-top: 1rem;
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

#empresa .btn:hover {
    background: #444;
}

#contacto {
    text-align: center;
    background: #f4f4f4;
    padding: 3rem 0;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

/* Estilos responsivos para móviles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 55px;
        right: 0;
        width: 100%;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 1rem 0;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #fff;
    }
}
