
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #333;
    padding-top: 70px; /* espacio para la glosa fija */
}

header {
    background: #1f1f1f;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.logo {
    width: 120px;
    height: auto;
}

.banner {
    display: flex;
    overflow-x: auto;
}

.banner img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.services {
    padding: 2rem;
    background: #fff;
}

.services h2 {
    text-align: center;
    color: #1f1f1f;
}

.services ul {
    columns: 2;
    list-style-type: none;
    padding: 0;
}

.services li {
    padding: 0.3rem 0;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Glosa de actualización fija arriba */
.glosa-actualizacion {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffe082;
    color: #000;
    text-align: center;
    padding: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Botón WhatsApp dentro de la glosa */
.whatsapp-inline {
    display: inline-block;
    margin-left: 10px;
    background: #25d366;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.whatsapp-inline:hover {
    background: #1ebc5a;
}

