/* =========================
   FRANJA SUPERIOR
========================= */

.top-bar{

    height:32px;

    background:#BFEFFF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

}

/* =========================
   LOGO
========================= */

.header{

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px 0;

}

.logo{

    width:50%;
    max-width:300px;

}

/* =========================
   MENU
========================= */

.menu-categorias{

    background:#FF9800;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    padding:10px;

    width:100%;

}

.menu-categorias a{

    font-family:'Fredoka',sans-serif;

    font-size:22px;

    color:white;

    padding:10px 25px;

    border-radius:5px;

    transition:.3s;
	
	text-decoration:none;
	
	

}

.menu-categorias a:hover{

    background:white;

    color:#4FC3F7;

}

/* =========================
   CATALOGO
========================= */

.catalogo{

    padding:25px;

}

.productos{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

}

.card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

}

.card img{

    width:100%;

}

.card h3{

    padding:15px 15px 5px;

}

.precio{

    padding:0 15px;

    color:#ff6fa5;

    font-weight:700;

    font-size:22px;

}

.card button{

    width:calc(100% - 30px);

    margin:15px;

    border:none;

    background:#4FC3F7;

    color:white;

    padding:12px;

    border-radius:30px;

    cursor:pointer;

}

/* =========================
   WHATSAPP
========================= */

.whatsapp{

    position:fixed;

    right:20px;

    bottom:20px;

    width:60px;

    height:60px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    color:white;

}