* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #fff6e8;
    color: #222;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #000000aa;
    position: relative;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo span {
    color: darkorange;
}

/* ===== NAV DESKTOP ===== */
.nav {
    display: flex;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.nav a.active {
    color: darkorange;
    border-bottom: 2px solid darkorange;
}

/* ===== HERO ===== */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-text h1 {
    font-size: 48px;
}

.hero-text span {
    color: darkorange;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: darkorange;
    color: white;
    border-radius: 25px;
    text-decoration: none;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
}

.hero-img img{
    max-width: 450px;
    width: 100%;
    height: auto;
}


/*CREPASSSSSSSSSSSSSSSSS*/
.menu-crepas {
    padding: 3rem 1rem;
    text-align: center;
}

.menu-crepas h2 {
    margin-bottom: 2rem;
}

.crepas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.crepa-item {
    background: darkorange;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.crepa-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.crepa-item p {
    padding: 0.75rem;
    font-weight: 600;
}

.hidden {
    display: none;
}

.ver-mas {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    border: none;
    background: #222;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
}

/*SERVICIOSSS*/
/* ============================= */
/*        HERO SERVICIOS        */
/* ============================= */

.hero-servicios {
    padding: 100px 40px 60px;
    text-align: center;
    background: #fff3e6;
}

.hero-servicios h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-servicios p {
    font-size: 18px;
    color: #555;
}


/* ============================= */
/*          SERVICIOS           */
/* ============================= */

.servicios {
    padding: 80px 40px;
    background: darkorange;
    text-align: center;
}

.servicios h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: white;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.servicio {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icono */
.servicio i {
    font-size: 30px;
    margin-bottom: 15px;
    color: darkorange;
    display: block;
}

.servicio h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.servicio p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Hover elegante */
.servicio:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}




/* ===== FOOTER ===== */
.footer {
    background: #222;
    color: white;
    padding: 30px;
    text-align: center;
}

.socials a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

/* ===== MENU HAMBURGUESA ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}


@media (max-width: 768px) {

    /* ===== HEADER ===== */
    .header {
        flex-direction: row;
        padding: 15px 25px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        z-index: 999;
    }

    .nav a {
        color: #222;
        margin: 15px 0;
        font-size: 18px;
    }

    .nav.active {
        display: flex;
    }

    /* ===== HERO ===== */
    .hero {
        padding: 40px;
        text-align: center;
    }







    /* ===== MENU CREPAS (TABLET) ===== */
    .crepas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio {
        text-align: center;
    }
}






/* ===== MENU CREPAS (CELULAR) ===== */
@media (max-width: 480px) {
    .crepas-grid {
        grid-template-columns: 1fr;
    }
}



/* ============================= */
/*        HERO PRODUCTOS        */
/* ============================= */

.hero-productos {
    padding: 90px 40px 60px;
    text-align: center;
    background: #fff3e6;
}

.hero-productos h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-productos p {
    color: #666;
    font-size: 18px;
}


/* ============================= */
/*     CONTENEDOR PRINCIPAL     */
/* ============================= */

.productos-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 60px 60px;
}


/* ============================= */
/*          FILTRO LATERAL      */
/* ============================= */

.filtro {
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 16px;
    height: fit-content;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.filtro h3 {
    margin-bottom: 20px;
}

.filtro ul {
    list-style: none;
}

.filtro li {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.filtro li:hover {
    background: #fff3e6;
}

.filtro li.active {
    background: darkorange;
    color: white;
}


/* ============================= */
/*        GRID PRODUCTOS        */
/* ============================= */

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.producto-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.producto-item h4 {
    padding: 15px;
    font-size: 18px;
}

.producto-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


/* ============================= */
/*           RESPONSIVE         */
/* ============================= */

@media (max-width: 900px) {

    .productos-container {
        grid-template-columns: 1fr;
    }

    .filtro {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }

    .filtro ul {
        display: flex;
        gap: 10px;
    }

    .filtro li {
        white-space: nowrap;
    }
}


/* ===== ANIMACIÓN FILTRO ===== */

.producto-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.producto-item.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
}

.productos-grid {
    position: relative;
}

/*CONTACTO.HTML*/
.contacto-container {
    padding: 80px 60px;
    text-align: center;
}

.contacto-info-full h2 {
    margin-bottom: 50px;
    font-size: 32px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: white;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.info-card i {
    font-size: 28px;
    color: darkorange;
    margin-bottom: 15px;
}

.info-card h4 {
    margin-bottom: 10px;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* BOTÓN WHATSAPP */
.btn-whatsapp {
    display: inline-block;
    padding: 14px 35px;
    background: #25D366;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}


/*mapa*/
.mapa {
    padding: 60px;
}

.mapa iframe {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

@media (max-width: 768px){

.hero{
    flex-direction: column;
    text-align: center;
}

.hero-img img{
    max-width: 300px;
    margin-top: 20px;
}

}