﻿body{
    font-family: "Helvetica", sans-serif;
}


.w{
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
    width: 60px;
}

.w img{
    width: 100%;
}


header{
    padding-top: 40px;
    padding-bottom: 40px;
}


.logotipo{
    text-align: center;
}
.logotipo img{
    width: 50%;
}


nav a{
    color: black;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 33.33%;
    float: left;
}

.menuR{
    display: none;
}

.menu, .menuR{
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    cursor: pointer;
}
.menu:hover{
    font-weight: bold;
    color: black;
}

.carrito{
    text-align: center;
    font-size: 24px;
}


.efecto{
    background: url(../images/efecto.png) no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    font-family: "Lora", serif;
    font-family: 'STIX Two Text';
    font-size: 32px;
    padding-top: 260px;
    padding-bottom: 260px;
}

.efecto h2{
    font-size: 100px;
}


.fav img{
    width: 40px;
    padding: 5px;

    border-radius: 50%;
}


.titulo{
    text-align: center;
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 30px;
}


.texto{
    background: #557355;
    text-align: justify;
    color: white;
    font-size: 19px;
    line-height: 24px;
    padding: 40px;
}
.texto strong{
    width: 100%;
    font-size: 25px;
    display: inline-block;
    margin-bottom: 12px;
}


.fondoCatering{
    background: url(../images/catering.png) no-repeat center center;
    background-size: cover;
}
.fondoContacto{
    background: url(../images/contacto.png) no-repeat center center;
    background-size: cover;
}



.superTitulo{
    background: #557355;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}
.superTitulo img{
    width: 40%;
}
.superTitulo strong{
    width: 100%;
    text-align: center;
    display: inline-block;
}


.espe{
    padding-top: 20px;
    padding-bottom: 20px;
}


.categoriaProductos{
    padding-top: 50px;
    padding-bottom: 50px;
}


.contacto{
    padding: 100px;
}

.form-group{
    margin-bottom: 20px;
}

input, textarea{
    background: transparent !important;
}

label{
    font-weight: bold;
}

.btn-verde{
    border: 0;
    background: #92A791 !important;
    width: 100%;
    font-weight: bold;
}




@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    .menuR{
        display: block;
    }
    nav{
        margin: 30px 0 20px !important;
    }
    nav ul{
        display: none;
    }
    nav ul li{
        width: 100%;
    }

    .img{
        height: 420px;
    }

    .contacto{
        padding: 50px;
    }
    .superTitulo img{
        width: 70%;
    }
    .superTitulo strong{
        font-size: 21px;
    }
}

@media screen and (max-width:576px){
    .logotipo img{
        width: 40%;
    }
    .footer-logo{
        width: 100px !important;
    }
    .efecto h2{
        font-size: 80px;
    }
}



:root{
    --text:#222; --muted:#6b6b6b; --price:#111; --card:#fff;
    --accent:#739476; --accent-dark:#5f7c62; --note:#2f6b3c; --maxw:1280px;
}

.wrap{ max-width:var(--maxw); margin:32px auto 56px; padding:0 16px; }

.grid{
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
}
@media (min-width:640px){ .grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px){ .grid{ grid-template-columns:repeat(4,1fr); } }

/* Tarjeta sin bordes ni sombra */
.card{
    background:var(--card);
    border:none;
    overflow:hidden;
}

.card__media{ aspect-ratio:4/3; background:#ddd; overflow:hidden; }
.card__media img{ width:100%; height:100%; object-fit:cover; display:block; }

.card__body{ padding:16px 18px 18px; }
.title{ 
    min-height: 77px;
    font-size:1.25rem; font-weight:700; margin:10px 0; }
.price{ font-weight:800; color:var(--price); font-size:1.05rem; margin:0 0 8px; }
.meta{ color:var(--muted); font-size:.97rem; margin:0 0 14px; }

.controls{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap; /* asegura que el botón no se salga */
}

.qty{
    display:flex;
    align-items:center;
    gap:6px;
}
.qty button{
    width:36px; height:44px;
    border:1px solid #ccc;
    background:#fff;
    color:#000;
    font-size:22px;
    border-radius:9px;
    cursor:pointer;
}
.qty input{
    width:48px; height:44px;
    text-align:center;
    border:1px solid #ccc;
    border-radius:9px;
    font-size:1rem;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }

.btn{
    margin-left:auto;
    border:none;
    height:44px;
    padding:0 18px;
    border-radius:10px;
    font-weight:700;
    background:var(--accent);
    color:#fff;
    cursor:pointer;
    flex:1 1 220px;
    max-width:100%;
}
.btn:hover{ background:var(--accent-dark); }

.note{
    max-width:var(--maxw);
    margin:28px auto 0;
    padding:0 16px;
    font-size:1.1rem;
    color:var(--note);
    line-height:1.5;
}


.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: bold;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}




/* ===== FOOTER ===== */
.site-footer{
    background: #557355;
    background: #92A791;
    color: #eaeaea;
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

.site-footer .container{
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
}

.footer-logo{
    width: 180px;
    max-width: 50%;
    height: auto;
    margin-bottom: 14px;
}

.footer-tagline{
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #cfcfcf;
    max-width: 520px;
}

.footer-title{
    font-family: "Lora", serif;
    font-weight: 600;
    font-size: 20px;
    margin: 6px 0 8px 0;
    color: #ffffff;
}

.footer-hr{
    display: inline-block;
    width: 56px;
    height: 3px;
    background: #c9a15a; /* acento elegante */
    border-radius: 2px;
    margin-bottom: 14px;
}

.footer-nav{
    display: grid;
    gap: 8px;
}
.footer-nav a{
    color: #eaeaea;
    text-decoration: none;
    font-size: 15px;
}
.footer-nav a:hover{
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.footer-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    font-size: 15px;
}
.footer-list b{
    font-size: 18px;
    margin-right: 8px;
    vertical-align: middle;
}
.footer-whatsapp{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #24d366;
    color: #0d2415 !important;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 22px;
    text-decoration: none;
}
.footer-whatsapp b{
    font-size: 18px;
}

.footer-social{
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-social a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #eaeaea;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.footer-social a:hover{
    background: #1a1a1a;
    border-color: #c9a15a;
    transform: translateY(-2px);
}

.footer-news label{
    display: block;
    font-size: 14px;
    color: #bbbbbb;
    margin-bottom: 6px;
}
.footer-news-input{
    display: flex;
    gap: 8px;
}
.footer-news-input input{
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    color: #eaeaea;
    border-radius: 12px;
    padding: 10px 12px;
    outline: none;
}
.footer-news-input input::placeholder{
    color: #9a9a9a;
}
.footer-news-input button{
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #c9a15a;
    color: #0f0f0f;
    cursor: pointer;
}
.footer-news-input button b{ font-size: 18px; }

.footer-divider{
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
    margin: 28px 0 18px;
}

.footer-bottom{
    font-size: 14px;
    color: #bdbdbd;
}
.footer-bottom .footer-legal{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-bottom .footer-legal a{
    color: #bdbdbd;
    text-decoration: none;
}
.footer-bottom .footer-legal a:hover{ color: #ffffff; }
.footer-bottom .sep{ opacity: .4; }

/* Responsive */
@media screen and (max-width: 992px){
    .footer-logo{ max-width: 200px; }
}
@media screen and (max-width: 768px){
    .site-footer{ padding: 48px 0 18px; }
    .footer-brand{ margin-bottom: 8px; }
}
@media screen and (max-width: 576px){
    .footer-news-input{ gap: 6px; }
    .footer-news-input input{ padding: 10px; }
    .footer-news-input button{ width: 42px; height: 42px; }
}