* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fffaf7;
    color: #29252a;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ================= HEADER ================= */

.header {
    height: 78px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: white;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 35px;
}

.logo strong {
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
}

.logo small {
    color: #a54b68;
    font-size: 10px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: .3s;
}

.nav a:hover,
.nav a.activo {
    color: #c02f67;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.header-actions button {
    border: none;
    background: #f8f3f3;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    cursor: pointer;

    font-size: 15px;

    position: relative;

    transition: .3s;
}

.header-actions button:hover {
    background: #c02f67;
    color: white;
}

.cart span {
    position: absolute;

    top: -3px;
    right: -2px;

    width: 17px;
    height: 17px;

    background: #f5b83d;
    color: white;

    border-radius: 50%;

    font-size: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-mobile {
    display: none;
}


/* ================= HERO ================= */

.hero {
    height: 92vh;
    min-height: 650px;

    margin-top: 78px;

    position: relative;

    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;

    position: relative;
}

.slide {
    position: absolute;

    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity .8s ease,
        transform 6s ease;

    display: flex;
    align-items: center;
}

.slide.activo {
    opacity: 1;
    z-index: 2;

    transform: scale(1);
}

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20,10,20,.82) 0%,
            rgba(20,10,20,.62) 38%,
            rgba(20,10,20,.15) 75%,
            rgba(20,10,20,.05) 100%
        );
}

.slide-content {
    position: relative;
    z-index: 3;

    width: 90%;
    max-width: 1200px;

    margin: auto;

    color: white;
}

.etiqueta {
    display: inline-block;

    padding: 9px 16px;

    border-radius: 50px;

    background: rgba(255,255,255,.16);

    border: 1px solid rgba(255,255,255,.3);

    backdrop-filter: blur(8px);

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1.5px;

    margin-bottom: 22px;
}

.slide h1 {
    font-size: clamp(45px, 6vw, 82px);

    line-height: .98;

    max-width: 780px;

    margin-bottom: 25px;

    letter-spacing: -2px;
}

.slide h1 strong {
    color: #ffd166;
}

.slide p {
    max-width: 550px;

    font-size: 18px;

    line-height: 1.6;

    color: rgba(255,255,255,.88);

    margin-bottom: 35px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-principal {
    background: #c82f68;

    padding: 15px 24px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: bold;

    display: flex;
    align-items: center;
    gap: 12px;

    transition: .3s;
}

.btn-principal:hover {
    background: #e33b78;
    transform: translateY(-2px);
}

.btn-secundario {
    padding: 14px 23px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.5);

    background: rgba(255,255,255,.1);

    backdrop-filter: blur(5px);

    font-size: 14px;
    font-weight: bold;

    transition: .3s;
}

.btn-secundario:hover {
    background: white;
    color: #333;
}


/* ================= FLECHAS ================= */

.slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.4);

    background: rgba(0,0,0,.2);

    backdrop-filter: blur(8px);

    color: white;

    cursor: pointer;

    z-index: 10;

    transition: .3s;
}

.slider-btn:hover {
    background: white;
    color: #333;
}

.anterior {
    left: 30px;
}

.siguiente {
    right: 30px;
}


/* ================= DOTS ================= */

.slider-dots {
    position: absolute;

    z-index: 10;

    bottom: 115px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    border: none;

    background: rgba(255,255,255,.5);

    cursor: pointer;

    transition: .3s;
}

.dot.activo {
    width: 30px;

    border-radius: 10px;

    background: white;
}


/* ================= HERO INFO ================= */

.hero-info {
    position: absolute;

    z-index: 10;

    bottom: 0;
    left: 0;
    right: 0;

    min-height: 90px;

    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 80px;

    background: rgba(20,10,20,.55);

    backdrop-filter: blur(12px);

    color: white;
}

.hero-info > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-info i {
    font-size: 20px;
    color: #ffd166;
}

.hero-info span {
    display: flex;
    flex-direction: column;
}

.hero-info strong {
    font-size: 13px;
}

.hero-info small {
    color: rgba(255,255,255,.65);
    margin-top: 3px;
}


/* ================= SECCIONES ================= */

section:not(.hero) {
    padding: 100px 7%;
}

.titulo-seccion {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.titulo-seccion > span,
.section-header > div > span {
    color: #c02f67;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.titulo-seccion h2 {
    margin-top: 12px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;
}

.titulo-seccion h2 strong {
    color: #c02f67;
}

.titulo-seccion p {
    color: #777;

    margin-top: 16px;

    line-height: 1.7;
}


/* ================= CATEGORIAS ================= */

.categorias {
    background: #fffaf7;
}

.categoria-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.categoria-card {
    padding: 30px;

    min-height: 190px;

    border-radius: 22px;

    display: flex;
    align-items: center;

    gap: 20px;

    position: relative;

    overflow: hidden;

    transition: .35s;
}

.categoria-card:hover {
    transform: translateY(-7px);
}

.categoria-card.tienda {
    background: #fff0d6;
}

.categoria-card.regalos {
    background: #fce3ec;
}

.categoria-card.fiestas {
    background: #e5f3ed;
}

.categoria-icon {
    font-size: 45px;
}

.categoria-card span {
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #777;
}

.categoria-card h3 {
    margin: 7px 0;

    font-size: 23px;
}

.categoria-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.categoria-card > i {
    position: absolute;

    right: 25px;
    bottom: 25px;

    color: #777;
}


/* ================= PRODUCTOS ================= */

.productos {
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;

    max-width: 1250px;

    margin: auto auto 45px;
}

.section-header h2 {
    font-size: 40px;
    margin-top: 10px;
}

.section-header > a {
    color: #c02f67;

    font-weight: bold;
    font-size: 13px;
}

.productos-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.producto {
    border: 1px solid #eee;

    border-radius: 20px;

    overflow: hidden;

    transition: .3s;
}

.producto:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.producto-img {
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 75px;

    background: #f9f5f2;

    position: relative;
}

.producto-img span {
    position: absolute;

    top: 15px;
    left: 15px;

    background: #c02f67;
    color: white;

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 9px;
    font-weight: bold;
}

.producto-info {
    padding: 20px;

    position: relative;
}

.producto-info small {
    color: #999;
}

.producto-info h3 {
    margin: 6px 0 10px;
}

.producto-info strong {
    color: #c02f67;
}

.producto-info button {
    position: absolute;

    right: 18px;
    bottom: 18px;

    width: 36px;
    height: 36px;

    border: none;

    border-radius: 50%;

    background: #c02f67;

    color: white;

    cursor: pointer;
}


/* ================= REGALOS ================= */

.regalos-section {
    background: #fff7f2;
}

.regalos-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.regalo-card {
    height: 470px;

    border-radius: 25px;

    overflow: hidden;

    position: relative;

    background-size: cover;
    background-position: center;
}

.desayuno {
    background-image:
        url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1200&q=80");
}

.botella {
    background-image:
        url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1200&q=80");
}

.regalo-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.8),
            transparent 70%
        );
}

.regalo-content {
    position: absolute;

    bottom: 40px;
    left: 40px;
    right: 40px;

    color: white;
}

.regalo-content span {
    font-size: 11px;

    letter-spacing: 2px;

    font-weight: bold;
}

.regalo-content h3 {
    font-size: 40px;

    line-height: 1;

    margin: 12px 0;
}

.regalo-content p {
    max-width: 400px;

    color: rgba(255,255,255,.8);

    line-height: 1.5;

    margin-bottom: 20px;
}

.regalo-content a {
    font-size: 13px;

    font-weight: bold;

    color: #ffd166;
}


/* ================= DECORACIONES ================= */

.decoraciones {
    background: white;
}

.decoraciones-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.deco-card {
    text-align: center;

    padding: 35px 20px;

    border-radius: 20px;

    background: #fff8f4;

    transition: .3s;
}

.deco-card:hover {
    transform: translateY(-5px);
    background: #fce8ef;
}

.deco-icon {
    font-size: 45px;

    margin-bottom: 15px;
}

.deco-card h3 {
    margin-bottom: 10px;
}

.deco-card p {
    color: #777;

    font-size: 13px;

    line-height: 1.5;
}


/* ================= WHATSAPP ================= */

.whatsapp-section {
    background: #c02f67 !important;

    color: white;
}

.whatsapp-content {
    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 25px;
}

.whatsapp-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
}

.whatsapp-content > div:nth-child(2) {
    flex: 1;
}

.whatsapp-content span {
    font-size: 10px;
    letter-spacing: 2px;
}

.whatsapp-content h2 {
    margin: 8px 0;

    font-size: 30px;
}

.whatsapp-content p {
    color: rgba(255,255,255,.8);
}

.whatsapp-btn {
    background: white;

    color: #c02f67;

    padding: 15px 23px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: bold;

    white-space: nowrap;
}


/* ================= FOOTER ================= */

footer {
    background: #241d22;

    color: white;

    padding: 70px 7%;

    display: flex;

    justify-content: space-between;

    gap: 60px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo strong {
    font-size: 22px;
}

.footer-logo p {
    color: #aaa;

    margin-top: 15px;

    line-height: 1.6;

    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    margin-bottom: 5px;
}

.footer-links a {
    color: #aaa;

    font-size: 13px;

    transition: .3s;
}

.footer-links a:hover {
    color: white;
}


/* ================= FLOAT WHATSAPP ================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    z-index: 100;

    box-shadow: 0 8px 25px rgba(0,0,0,.2);

    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .nav {
        display: none;
    }

    .menu-mobile {
        display: block;
    }

    .categoria-grid,
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .decoraciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-info {
        gap: 25px;
        padding: 0 4%;
    }

    .hero-info > div:nth-child(3) {
        display: none;
    }

}


@media (max-width: 700px) {

    .header {
        padding: 0 5%;
    }

    .logo small {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .slide-content {
        width: 82%;
    }

    .slide h1 {
        font-size: 45px;
    }

    .slide p {
        font-size: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .anterior {
        left: 12px;
    }

    .siguiente {
        right: 12px;
    }

    .hero-info {
        justify-content: center;
    }

    .hero-info > div:nth-child(1) {
        display: none;
    }

    .hero-info {
        gap: 0;
    }

    .categoria-grid,
    .productos-grid,
    .regalos-grid,
    .decoraciones-grid {
        grid-template-columns: 1fr;
    }

    section:not(.hero) {
        padding: 70px 5%;
    }

    .section-header {
        display: block;
    }

    .section-header > a {
        display: inline-block;
        margin-top: 15px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .regalo-card {
        height: 400px;
    }

    .whatsapp-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-btn {
        margin-top: 10px;
    }

    footer {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
        flex-wrap: wrap;
    }

}