body { font-family: 'Segoe UI', sans-serif; margin: 0; color: #333; }
header { background: #004a99; color: white; padding: 1rem 0; position: fixed; width: 100%; top: 0; }
nav { display: flex; justify-content: space-around; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; }
ul { list-style: none; display: flex; gap: 20px; }
a { color: white; text-decoration: none; }
.hero { height: 80vh; background: #e3f2fd; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding-top: 60px; }
.btn { background: #2ecc71; padding: 15px 30px; border-radius: 5px; margin-top: 20px; font-weight: bold; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 50px; }
.card { border: 1px solid #ddd; padding: 20px; border-radius: 10px; text-align: center; }
/* Estilos para el Logo en el Header */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 45px; /* Ajusta el tamaño de tu logo aquí */
    width: auto;
}

/* Sección de Contacto */
.contacto-info {
    padding: 50px;
    background: #f9f9f9;
    text-align: center;
}
.info-container {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

/* Botón Flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px; /* Tamaño del CÍRCULO */
    height: 60px; /* Tamaño del CÍRCULO */
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- ESTA ES LA LÍNEA QUE TE FALTA AGREGAR --- */
.whatsapp-float img {
    width: 35px; /* <--- Agrega esto para achicar la IMAGEN del logo */
    height: auto;
}