body {
    margin: 0;
    font-family: Arial;
    background: #05070d;
    color: white;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.btn-nav {
    background: #007bff;
    padding: 8px 15px;
    border-radius: 8px;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('img/fondo.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 40px;
}

.overlay h1 {
    font-size: 50px;
    color: #00aaff;
}

.features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.flecha {
    margin-top: 20px;
    font-size: 30px;
}

/* CATALOGO */
.catalogo {
    padding: 60px;
    text-align: center;
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagenes {
    display: flex;
    overflow: hidden;
    width: 800px;
}

.imagenes img {
    width: 200px;
    margin: 10px;
    border-radius: 10px;
}

/* SERVICIOS */
.servicios {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.card {
    background: #111827;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
}

.logo img {
    width: 120px; /* ajusta tamaño */
    height: auto;
}
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas */
    gap: 20px;
    padding: 40px;
}

.item img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.item img:hover {
    transform: scale(1.05);
}
.item {
    background: #111827;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.item:hover {
    transform: translateY(-5px);
}

.item img {
    width: 100%;
    border-radius: 10px;
}

.item h3 {
    margin: 10px 0 5px;
    color: #00aaff;
}

.item p {
    font-size: 14px;
    color: #ccc;
}

/* BOTÓN WHATSAPP */
.btn-wsp {
    display: inline-block;
    margin-top: 10px;
    background: #25D366;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.btn-wsp:hover {
    background: #1ebe5d;
}