* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ========================= dot ========================= */
.dot-fiesta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff4fa3;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

/* animaci贸n suave */
.dot-fiesta {
    animation: flotar 2s infinite;
}

@keyframes flotar {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ========================= BASE ========================= */
body {
    background-color: #fffdf9;
    color: #4a4a4a;
    line-height: 1.6;
}

img {
    max-width: 100%;
    margin: auto;
    display: block;
}

/* ========================= TOP BAR ========================= */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background-color: #fff;
    border-bottom: 2px solid #ff4fa3;
}

.logo img {
    height: 45px;
}

.cart {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff4fa3;
    font-weight: bold;
}

.menu-btn {
    background-color: #ff4fa3;
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
}

.menu {
    position: absolute;
    top: 70px;
    right: 18px;
    background: #fff;
    border: 1px solid #ff4fa3;
    border-radius: 6px;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 1000;
}

.menu a {
    padding: 12px 16px;
    text-decoration: none;
    color: #4a4a4a;
    font-weight: bold;
}

.menu a:hover {
    background-color: #ff4fa3;
    color: #fff;
}


/* ========================= HERO GALER脥A ========================= */
.hero-galeria {
    display: flex;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.panel {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.panel-1 {
    background-image: url("../imagenes/GALLETA OREO.jpg");
    clip-path: polygon(0 0, 95% 0, 85% 100%, 0 100%);
}

.panel-2 {
    background-image: url("../imagenes/COCO.jpg");
    clip-path: polygon(15% 0, 95% 0, 85% 100%, 5% 100%);
    margin-left: -8%;
    margin-right: -8%;
    z-index: 2;
}

.panel-3 {
    background-image: url("../imagenes/MAZAPAN.jpg");
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 5% 100%);
}

/* ========================= CONTENT ========================= */
.content {
    padding: 40px 22px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.content h1 {
    font-size: 2rem;
    color: #1f1f1f;
    margin-bottom: 5px;
}

.content h2 {
    font-size: 1.4rem;
    color: #ff4fa3;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.content p {
    font-size: 1rem;
    margin-bottom: 18px;
}

/* ========================= ZONAS ========================= */
.zonas {
    background-color: #1bb3b3;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.titulo{
    font-size: 52px;
    font-weight: bold;
    display: inline-block;

}

.u-logo{
    height: 68px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
}
@media (max-width:768px){
    .u-logo{
        height:42px;
    }
}

@media (max-width:480px){
    .u-logo{
        height:30px;
    }
}

.card {
    border: 3px solid white;
    border-radius: 25px;
    padding: 30px;
    margin: 30px auto;
    max-width: 400px;
}

.card h3 {
    font-size: 28px;
    text-decoration: underline;
    margin-bottom: 20px;
}

/* ========================= LISTAS MEJORADAS ========================= */

.card > ul {
    display: none;
    list-style: none;
    padding-left: 0;
    text-align: left;
}

/* LISTA PRINCIPAL */
.card > ul > li {
    background: rgba(255,255,255,0.15);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

/* icono principal */
.card > ul > li::before {
    content: "🎉";
    margin-right: 8px;
}

/* hover */
.card > ul > li:hover{
    background: rgba(255,255,255,0.25);
    transform: translateX(4px);
}

/* SUBLISTAS */
.card ul ul {
    margin-top: 10px;
    margin-left: 20px;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-left: 3px solid white;
    border-radius: 8px;
    
    

    list-style: none;      /* elimina el marcador */
    padding-left: 10px;    /* controlas el espacio manualmente */
}

/* items sublista */
.card ul ul li {
    font-size: 16px;
    margin-bottom: 6px;
    padding-left: 5px;
    position: relative;
    list-style: none;
}

/* icono sublista */
.card ul ul li::before{
    content: "•";
    color: white;
    font-weight: bold;
    margin-right: 6px;
}

/* ========================= CTA ========================= */
.cta {
    margin-top: 40px;
    font-size: 22px;
    font-weight: bold;
    color: #ff4fa3;
}

/* ========================= SOCIAL ICONS ========================= */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 25px;
}

.social-icons a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.instagram {
    background-color: #ff4fa3;
}

.facebook {
    background-color: #3b5998;
}

.whatsapp {
    background-color: #25d366;
}

/* ========================= UTILIDADES ========================= */
.mostrar {
    display: block !important;
}

/* ========================= FOOTER ========================= */
footer {
    background-color: #473b3f;
    color: #fff;
    padding: 25px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    font-size: 14px;
}

footer ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

footer ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

footer ul li a:hover {
    color: #f4a261;
}

/* ========================= RESPONSIVE DESIGN ========================= */
/* Tablets */
@media (max-width: 1024px) {

    .hero,
    .hero-galeria {
        height: 50vh;
    }

    .content {
        padding: 30px 18px;
    }

    .titulo {
        font-size: 32px;
    }

    .card {
        max-width: 90%;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .top-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo img {
        height: 35px;
    }

    .hero,
    .hero-galeria {
        height: 40vh;
    }

    .hero-galeria {
        flex-direction: column;
        height: auto;
    }

    .panel {
        height: 200px;
        clip-path: none;
        margin: 0;
    }

    .panel-2 {
        margin: 0;
    }

    .content h1 {
        font-size: 1.6rem;
    }

    .content h2 {
        font-size: 1.2rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .titulo {
        font-size: 26px;
    }

    .card {
        padding: 20px;
        margin: 20px auto;
    }

    .card h3 {
        font-size: 22px;
    }

    .card li {
        font-size: 16px;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    footer ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Pantallas muy peque帽as */
@media (max-width: 480px) {
    .hero {
        height: 35vh;
    }

    .panel {
        height: 160px;
    }

    .menu {
        right: 10px;
        min-width: 150px;
    }
}

/* ========================= INFO SECCIONES ========================= */

.info-secciones{
padding:80px 20px;
background:#fff6fb;

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;

max-width:1100px;
margin:auto;
}


.info-card{
    position: relative;
    overflow: hidden;

    padding: 35px;

    border-radius: 20px;

    background: white;

    text-align: center;
}

/* CONTENEDOR SUPERIOR */
.titulo-box{
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 30px;
}

/* ICONO */
.icono{
    font-size: 49px;

    margin-bottom: 8px;

    position: relative;
    z-index: 2;
}

/* TITULO */
.info-card h2{
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    min-height: 90px;
    color: white;
    font-size: 2rem;
    z-index: 2;
     text-shadow:
        -1px -1px 0 #ff4fa3,
         1px -1px 0 #ff4fa3,
        -1px  1px 0 #ff4fa3,
         1px  1px 0 #ff4fa3;
}

/* BROCHAZO SVG */
.brush-bg{
    position: absolute;
    width: 440px;
    height: 360px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url("../imagenes/pincel.webp")
        center/contain
        no-repeat;

    z-index: -1;
}

/* TEXTO */
.info-card p{
    font-size: 16px;

    line-height: 1.7;

    color: #555;

    margin-top: 10px;
}
.info-card p{
font-size:16px;
line-height:1.7;
color:#555;
}




/* ========================= SCROLL ANIMATION ========================= */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* ========================= SABORES INFO ========================= */

.sabores-info{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;

padding:80px 10%;
}

.sabores-texto h1{
font-size:36px;
color:#1f1f1f;
}

.sabores-texto h2{
color:#ff4fa3;
margin-bottom:20px;
}

.sabores-texto p{
font-size:17px;
line-height:1.7;
}

.sabores-imagen img{
width:100%;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
/* responsive */

@media(max-width:768px){

.sabores-info{
grid-template-columns:1fr;
text-align:center;
}

}

/* ========================= SABORES ========================= */

.sabores{
padding:80px 20px;
text-align:center;
}

.titulo-sabores{
font-size:32px;
margin-bottom:40px;
color:#1f1f1f;
}

.sabores-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.sabor-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.35s;
}

.sabor-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 30px rgba(0,0,0,0.12);
}

.sabor-card img{
width:100%;
height:200px;
object-fit:cover;
}

.sabor-card h3{
padding:15px;
font-size:18px;
color:#ff4fa3;
}