body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background: #f5f5f5;
}

h1 {
    color: #1b7f3a;
    text-align: center;
}

h2 {
    background: #1b7f3a;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 30px;
}

.producto {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

.producto h3 {
    margin: 0;
    font-size: 16px;
}

.precio {
    font-size: 20px;
    font-weight: bold;
    color: #1b7f3a;
    margin-top: 8px;
}

.cabecera {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.texto-cabecera h1 {
    color: #1b7f3a;
    text-align: left;
    margin: 0;
}

.texto-cabecera p {
    margin: 3px 0;
}

.descargas {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.boton-pdf {
    display: inline-block;
    background: #1b7f3a;
    color: white;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
}

.boton-pdf:hover {
    background: #14612c;
}

.producto {
    width: 260px;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

.foto-producto {
    height: 180px;
    background: #eeeeee;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    margin-bottom: 10px;
}

.producto h3 {
    font-size: 16px;
    min-height: 50px;
}

.precio {
    font-size: 24px;
    font-weight: bold;
    color: #1b7f3a;
}

.grilla {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.whatsapp-flotante {
    position: fixed;
    right: 20px;
    bottom: 20px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 32px;

    box-shadow: 0 4px 10px rgba(0,0,0,.3);

    z-index: 9999;
}

.whatsapp-flotante:hover {
    transform: scale(1.1);
}


.icono-whatsapp {
    width: 38px;
    height: 38px;
}

.datos-contacto {
    margin-left: auto;
    text-align: right;
}

.datos-contacto p {
    margin: 6px 0;
    font-weight: bold;
}