/* ===================== GLOBAL STYLES ===================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        width: 100%;
        overflow-x: hidden;
        font-family: "Poppins", sans-serif;
        background-color: #000;
        color: #fff;
    }

    /* ---------------- HEADER ---------------- */
    header {
        width: 100%;
        padding: 20px 40px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav ul {
        list-style: none;
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        transition: 0.3s;
    }

    .btn-work {
    padding: 12px 28px;
    background: linear-gradient(45deg, #ff009d, #ffa60000);
    border-radius: 30px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 0 18px #ff009d;
    transition: 0.3s;
}
.btn-work:hover {
    transform: scale(1.06);
    box-shadow: 0 0 28px #ff4cc5;
}


    /* ---------------- HERO ---------------- */
    .hero {
        height: 100vh;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .hero > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%) contrast(120%);
        opacity: 0.85;
    }
.hero > img {
    filter: grayscale(0%) contrast(100%) brightness(0.8);
    opacity: 0.75;
}

    /* ---------------- TEXTO ---------------- */
    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 5;
        width: 100%;
        max-width: 100%;
    }

    .hero-text .name {
    font-size: 6.5vw;
    font-weight: 800;
    line-height: 0.9;
    max-width: 700px;
    margin: auto;
    text-transform: uppercase;
    text-shadow: 0 0 30px #ff009d, 0 0 15px #ff009d;
    letter-spacing: 0.4rem;
}


    .subtitle {
    margin-top: 30px;
    background: #ff009d;
    padding: 12px 45px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: .1rem;
    font-size: 1.1rem;
    box-shadow: 0 0 20px #ff009d;
    text-transform: uppercase;
}


    /* ---------------- FLOATING ASSETS ---------------- */
    .floating {
    position: absolute;
    z-index: 4;
    width: 130px;
    opacity: 0.95;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 0 12px rgba(255, 0, 162, 1));
    filter: grayscale(0.4) !important;
}


    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-18px); }
        100% { transform: translateY(0px); }
    }

    /* posiciones */
    .toy1 { top: 50%; left: 5%; animation-delay: 0s;    width: 203px !important;
    height: 230px !important;    opacity: 0.95 !important;
     }
    .toy2 { top: 65%; right: 10%; animation-delay: 1s;    width: 230px !important;
    height: 230px !important;    opacity: 0.95 !important;
      }
    .toy3 { top: 35%; right: 40%; animation-delay: 2s; }

    /* ------------------- MOBILE ------------------- */
    @media (max-width: 768px) {
        .floating { width: 80px; }

        .name { font-size: 14vw; }
        .subtitle { font-size: 4vw; padding: 8px 25px; }
    }
    .nav-glass {
    background: rgba(255, 255, 255, 0.10);
    padding: 16px 45px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 30px rgba(255, 0, 162, 0.25);
}
.nav-glass a:hover {
    color: #ff58d7 !important;
    opacity: 1 !important;
}

/* ===================== SECCIÓN PRODUCTOS ===================== */

.best-products {
    padding: 100px 40px;
    background-color: #000;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 0 20px #ff009d;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 50px;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.product-card {
    position: relative;
    width: 320px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 25px rgba(255, 0, 157, 0.3);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255, 0, 157, 0.5);
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.product-large {
    width: 380px;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(5px);
}

.tag-hot {
    background: rgba(255, 0, 99, 0.8);
}

.tag-exclusive {
    background: rgba(255, 0, 157, 0.8);
}

.tag-new {
    background: rgba(255, 100, 200, 0.8);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.9rem;
    color: #ccc;
}
.product-card .ver-tienda-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #E91E63; /* color elegante estilo sex-shop */
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    opacity: 0;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
/* Hover del botón */
.product-card .ver-tienda-btn:hover {
    background: #ad1044;
    transform: translateX(-50%) scale(1.05);
}

/*=== EFECTO AL HACER HOVER EN LA CARD ===*/
.product-card:hover .ver-tienda-btn {
    bottom: 20px;   /* sube desde abajo */
    opacity: 1;
}
/* ===================== CINTA INFINITA ===================== */

.infinite-strip {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 20px 0;
}

.strip-track {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll 20s linear infinite;
}

/* duplicamos items en HTML para efecto seamless */
.strip-track .item {
    flex: 0 0 auto;
}

/* keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.item {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
    text-align: center;
}

.item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px #ff009d);
    opacity: 0.9;
}

.item span {
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 0 0 8px #ff009d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* responsive */
@media (max-width: 768px) {
    .item {
        width: 180px;
    }
    .item img {
        width: 70px;
        height: 70px;
    }
}
/* ===================== ENCONTRANOS EN ===================== */

.find-us {
    padding: 100px 40px;
    background: #000;
    text-align: center;
}

.find-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 0 25px #ff009d;
    margin-bottom: 10px;
}

.find-subtitle {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 40px;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 157, 0.3);
    box-shadow: 0 0 25px rgba(255, 0, 157, 0.4);
}

@media (max-width: 768px) {
    .map-container {
        height: 320px;
    }
    .find-title {
        font-size: 9vw;
    }
}
/* ===================== SMOOTH SCROLL ===================== */
html {
    scroll-behavior: smooth;
}

/* ===================== ANIMACIONES LENTAS ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
}


.fade-out {
    opacity: 1;
    transform: translateY(0);
    animation: fadeOutAnim 1.8s forwards;
}

@keyframes fadeInAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutAnim {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Animaciones lentas para objetos flotantes */
.floating {
    animation: float 8s ease-in-out infinite !important;
}

/* ===================== NOSOTROS ===================== */
.about-section {
    padding: 100px 40px;
    background: #111;
    text-align: center;
}

.about-section h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 0 25px #ff009d;
    margin-bottom: 20px;
}

.about-section p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================== FOOTER ===================== */
footer {
    background: #000;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    border-top: 2px solid rgba(255, 0, 157, 0.3);
}

footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #ff009d;
}

footer p, footer a {
    font-size: 0.95rem;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

footer a:hover {
    color: #ff58d7;
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials a {
    color: #fff;
    font-size: 1.3rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #ff009d;
}

/* *********************** */
.nosotrosImg{
    filter: invert(1);
    position: absolute;
    opacity: 0.1;
}
.nosotrosImg1{
    left: 0;
    top: -40px;
}
.nosotrosImg2{
    right: 0;
    top: -40px;
}