/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Encabezado */
header {
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: white;
    padding: 15px 0;
}
.container {
    width: 90%;
    max-width: 700px;
    margin: auto;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    height: 60px;
    margin-right: 10px;
}
.nav {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.nav a:hover {
    color: #333;
}

/* Hero */
.hero {
    background: url('../img/fondo.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    animation: fadeIn 1.5s;
}

/* Secciones */
section {
    padding: 60px 20px;
}
h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Servicios */
.servicio {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.servicio:hover {
    transform: scale(1.05);
}
.servicio img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

/* Contacto */
#contacto {
    background: #ff6600;
    color: white;
    text-align: center;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
