/* assets/css/style.css */

body {
    position: relative;
    margin: 0;
    padding: 0;
}

.background-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('/assets/img/logo-yakero/logo_yakero.png') no-repeat center center;
    background-size: contain;
    opacity: 0.15;
    z-index: -1;
}

h1, h2, h3 {
    text-align: center;
}

.cocinas-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 20px;
}

.cocina img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

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

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

