* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
}

/* NAVBAR */
.navbar {
    background: #000;
    color: #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    background: #FFD700;
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 2.5rem;
    color: #000;
}

.slider img {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
}

/* SECTIONS */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    color: #000;
    margin-bottom: 30px;
    font-size: 2rem;
}

/* EMPRESA */
.empresa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* SERVICIOS */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #000;
    color: #FFD700;
    padding: 30px;
    border-radius: 8px;
}

.card i {
    font-size: 40px;
    margin-bottom: 15px;
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.galeria img {
    width: 100%;
    border-radius: 6px;
}

/* CONTACTO */
#contacto a {
    color: #000;
    font-weight: bold;
}

/* FOOTER */
footer {
    background: #000;
    color: #FFD700;
    text-align: center;
    padding: 30px 15px;
}

footer a {
    color: #FFD700;
    margin: 0 8px;
    font-size: 20px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}
.whatsapp-float:hover {
    background: #1ebe5d;
}

/* HERO IMAGE (REEMPLAZO CARRUSEL) */
.hero-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-image img {
        max-height: 300px;
    }
}

/* CONTACTO CON ICONOS IMAGEN */
.contacto-info {
    max-width: 520px;
    margin: 0 auto;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.contacto-item img {
    width: 28px;
    height: 28px;
}

.contacto-item a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.contacto-item a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .contacto-info {
        text-align: center;
    }

    .contacto-item {
        justify-content: center;
    }
}





