body{
    margin:0;
    font-family:Georgia;
    background:#e7d0c5;
}
#encabezado{
    background:linear-gradient(90deg, #5a2e1f, #7a4a35);
    color:white;
    padding:12px 20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
}
/* HEADER */


#logo{
    width:50px;
    border-radius:50%;
    box-shadow:0 2px 8px rgba(0,0,0,0.3);
}

#nombre{
    font-size:22px;
    margin:0;
}

/* ICONOS */
#iconos i{
    font-size:20px;
    margin-left:15px;
    cursor:pointer;
}

/* NAV */
#nav{
    background:#e8d6bd;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.nav-link{
    color:#5a2e1f !important;
    font-weight:bold;
    position:relative;
    transition:0.3s;
}

/* EFECTO AL PASAR */
.nav-link:hover{
    color:#d4af7f !important;
}

/* LINEA ANIMADA */
.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:#d4af7f;
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* ACTIVO (PÁGINA ACTUAL) */
.nav-link.active{
    color:#d4af7f !important;
}

.nav-link.active::after{
    width:100%;
}

/* HERO */
.hero{
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-box{
    background:#e8d6bd;
    border-radius:20px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:80%;
}

.texto{
    text-align:center;
    width:50%;
}

.texto h2{
    color:#6b4a3b;
}

.texto button{
    background:#5a2e1f;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:5px;
}

.hero-box img{
    width:220px;
    border-radius:10px;
}
/* BOTON WHATSAPP ELEGANTE 💚 */
.btnWpp{
    background:linear-gradient(135deg,#25D366,#1ebe5d);
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:12px;
    font-weight:bold;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(37,211,102,0.25);
}
.item{
    display:block;
    text-decoration:none;
    color:inherit;
    transition:0.3s;
}

.item:hover{
    transform:translateY(-6px);
}

.item img{
    transition:0.3s;
}

.item:hover img{
    transform:scale(1.05);
}

.box{
    transition:0.3s;
}

.item:hover .box{
    background:#3e2723;
}

.carousel-item{
    position:relative;
}
/* HACER LOS BOTONES MÁS GRANDES 🔥 */
.carousel-control-prev,
.carousel-control-next{
    width:15%; /* antes era muy pequeño */
    opacity:1;
}

/* ICONOS MÁS GRANDES */
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,0.5);
    border-radius:50%;
    width:45px;
    height:45px;
    background-size:60%;
}

/* MEJOR TOQUE EN CELULAR 📱 */
@media (max-width:768px){
    .carousel-control-prev,
    .carousel-control-next{
        width:25%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:55px;
        height:55px;
    }
}
.overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:10;
    pointer-events:auto;
}

/* ICONO */
.btnWpp i{
    font-size:18px;
}

/* HOVER */
.btnWpp:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

/* FLECHAS */
.flecha{
    border:none;
    background:rgba(90,46,31,0.7);
    font-size:35px;
    color:white;
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:0.3s;
}
.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(90,46,31,0.8);
    border-radius:50%;
    padding:20px;
}

/* HOVER 🔥 */
.flecha:hover{
    background:#5a2e1f;
    transform:scale(1.1);
}

/* PRODUCTOS */
.producto{
    background:white;
    border:2px solid #5a2e1f;
    border-radius:20px;
    padding:15px;
    margin:10px;
    text-align:center;
}

.producto img{
    width:100%;
    border-radius:10px;
}

.producto button{
    margin-top:10px;
    background:#5a2e1f;
    color:white;
    border:none;
    padding:8px 15px;
    border-radius:5px;
}

/* DESTACADOS */
#destacados{
    background:#e5c79f;
    padding:30px;
    text-align:center;
}

.item img{
    width:120px;
    height:120px;
    border-radius:50%;
    border:4px solid white;
}

.box{
    background:#5a2e1f;
    color:white;
    padding:10px;
    border-radius:15px;
    margin-top:10px;
}

.box button{
    margin-top:5px;
    background:white;
    border:none;
    padding:5px 10px;
}

/* FOOTER */
#footer{
    background:#5a2e1f;
    color:white;
    padding:10px;
}

/* CARRUSEL */
.carousel-item img{
    height:350px;
    object-fit:cover;
    border-radius:20px;
}

/* TEXTO ENCIMA */
.overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    background:#e8d6bd;
    padding:30px;
    border-radius:20px;
    text-align:center;
    width:60%;
}

.overlay h2{
    color:#6b4a3b;
}

.overlay button{
    background:#5a2e1f;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:5px;
    margin-top:10px;
}

/* ===== RESPONSIVE GENERAL ===== */
/* ===== MOBILE FIRST ===== */

body{
    font-size:14px;
}

/* HEADER */
#encabezado{
    flex-direction:row;
    justify-content:space-between;
    padding:10px;
}

#nombre{
    font-size:18px;
}

/* ICONOS */
#iconos i{
    font-size:18px;
    margin-left:10px;
}


/* ===== RESPONSIVE NOSOTROS ===== */

@media (max-width: 768px){

    .titulo-izq,
    .titulo-der{
        text-align:center;
        font-size:26px;
    }

    .caja{
        width:100%;
    }

    .derecha{
        width:100%;
        margin-left:0;
    }

    .frase{
        font-size:16px;
        padding:0 10px;
    }

    .caja p{
        font-size:14px;
    }
}

/* HERO */
.hero-box{
    flex-direction:column;
    width:100%;
    padding:20px;
    border-radius:15px;
}

.texto h2{
    font-size:20px;
}

.hero-box img{
    width:100%;
    margin-top:10px;
}

/* PRODUCTOS */
.producto{
    width:100%;
    margin-bottom:15px;
    border-radius:15px;
    padding:10px;
}

.producto img{
    width:100%;
    height:180px;
    object-fit:cover;
}

/* DESTACADOS */
#destacados{
    padding:20px 10px;
}

.item{
    margin-bottom:25px;
}

.item img{
    width:90px;
    height:90px;
}

.box{
    border-radius:12px;
    padding:8px;
}

.box p{
    font-size:14px;
}

/* FOOTER */
#footer{
    flex-direction:column;
    gap:8px;
    font-size:13px;
}

.whatsapp{
    position:fixed;
    bottom:15px;
    right:15px;
    background:#25D366;
    color:white;
    padding:12px;
    border-radius:50%;
    font-size:20px;
}
.producto img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
}

.producto{
    background:white;
    border-radius:20px;
    padding:10px;
    text-align:center;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.producto:hover{
    transform:translateY(-5px);
}

.btnPro{
    margin-top:12px;
    width:100%;
    background:linear-gradient(135deg, #e8d6bd, #d4af7f);
    color:#5a2e1f;
    border:none;
    padding:10px;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
}

.btnPro:hover{
    background:#5a2e1f;
    color:white;
}

.item img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:15px;
}

.tituloDestacados{
    text-align:center;
    font-size:28px;
    color:#5a2e1f;
    font-weight:bold;
}

.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    z-index:1000;
    transition:0.3s;
}

/* HOVER 🔥 */
.whatsapp:hover{
    transform:scale(1.1);
    background:#1ebe5d;
}