:root {
    --rosa: #ff69ac;
    --rosa-fuerte: #ff4d94;
    --rosa-claro: #ffe3ef;
    --durazno: #ffb36a;
    --amarillo: #ffe9a9;
    --cielo: #dff4ff;
    --lila: #eee5ff;
    --verde: #d9f7dd;
    --texto: #454257;
    --texto-suave: #6e6b81;
    --blanco: rgba(255, 255, 255, 0.82);
    --borde: rgba(255, 255, 255, 0.72);
    --sombra: 0 18px 45px rgba(173, 93, 141, 0.14);
    --sombra-suave: 0 10px 28px rgba(91, 82, 124, 0.10);
    --radio-xl: 32px;
    --radio-lg: 24px;
    --radio-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Fredoka', Arial, sans-serif;
    color: var(--texto);
    background:
        radial-gradient(circle at 0% 10%, #fff1f8 0, transparent 28%),
        radial-gradient(circle at 100% 0%, #fff2d9 0, transparent 28%),
        radial-gradient(circle at 10% 100%, #e8f8ff 0, transparent 26%),
        linear-gradient(180deg, #fffafc 0%, #fffdf8 36%, #f8fbff 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

main {
    width: min(100%, 1320px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.oculto {
    display: none !important;
}

.fondo-animado {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.burbuja,
.estrella {
    position: absolute;
    opacity: 0.45;
}

.burbuja {
    border-radius: 50%;
    filter: blur(4px);
    animation: flotar-suave 14s ease-in-out infinite;
}

.burbuja-1 {
    width: 180px;
    height: 180px;
    left: -50px;
    top: 110px;
    background: linear-gradient(145deg, rgba(255, 182, 217, 0.45), rgba(255, 233, 169, 0.35));
}

.burbuja-2 {
    width: 130px;
    height: 130px;
    right: 8%;
    top: 240px;
    background: linear-gradient(145deg, rgba(223, 244, 255, 0.55), rgba(238, 229, 255, 0.50));
    animation-delay: -3s;
}

.burbuja-3 {
    width: 220px;
    height: 220px;
    right: -60px;
    bottom: 12%;
    background: linear-gradient(145deg, rgba(255, 227, 239, 0.65), rgba(255, 179, 106, 0.30));
    animation-delay: -6s;
}

.burbuja-4 {
    width: 120px;
    height: 120px;
    left: 14%;
    bottom: 20%;
    background: linear-gradient(145deg, rgba(217, 247, 221, 0.60), rgba(223, 244, 255, 0.45));
    animation-delay: -9s;
}

.estrella {
    color: #ff92bf;
    font-size: 28px;
    animation: brillar 4s ease-in-out infinite;
}

.estrella-1 {
    top: 18%;
    left: 28%;
}

.estrella-2 {
    top: 58%;
    right: 18%;
    animation-delay: -1.5s;
}

.estrella-3 {
    bottom: 13%;
    left: 43%;
    animation-delay: -3s;
}

.franja-superior {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    background: linear-gradient(90deg, #ff9bc2, #ffb58b, #ffa3cf);
}

.header-principal {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 26px rgba(125, 102, 160, 0.06);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--rosa-fuerte);
}

.logo-icono {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1f8, #fff5de);
    box-shadow: var(--sombra-suave);
}

.menu-principal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-principal a {
    text-decoration: none;
    color: var(--texto);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 999px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.menu-principal a:hover {
    background: linear-gradient(135deg, #ffe6f0, #fff2de);
    color: var(--rosa-fuerte);
    transform: translateY(-1px);
}

.boton-menu {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1f8, #fff3df);
    color: var(--rosa-fuerte);
    box-shadow: var(--sombra-suave);
    cursor: pointer;
    font-size: 24px;
}

.hero {
    position: relative;
    padding: 56px 24px 36px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 28px;
    min-height: 630px;
    padding: 42px;
    border-radius: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 252, 0.74));
    border: 1px solid var(--borde);
    box-shadow: var(--sombra);
    overflow: hidden;
}

.hero-inner::before,
.hero-inner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(0);
}

.hero-inner::before {
    width: 280px;
    height: 280px;
    top: -70px;
    right: 14%;
    background: radial-gradient(circle, rgba(255, 233, 169, 0.55), transparent 70%);
}

.hero-inner::after {
    width: 260px;
    height: 260px;
    bottom: -95px;
    left: -30px;
    background: radial-gradient(circle, rgba(223, 244, 255, 0.78), transparent 70%);
}

.hero-contenido,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-etiqueta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--rosa-fuerte);
    font-weight: 600;
    box-shadow: var(--sombra-suave);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--texto);
}

.hero h1 span {
    display: inline-block;
    color: var(--rosa-fuerte);
    text-shadow: 0 5px 18px rgba(255, 105, 172, 0.18);
}

.hero-texto {
    max-width: 560px;
    margin: 24px 0 30px;
    color: var(--texto-suave);
    line-height: 1.7;
    font-size: 1.18rem;
}

.hero-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.boton-principal,
.boton-secundario,
.boton-whatsapp,
.enlace-contacto,
.redes-enlaces a {
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.boton-principal,
.boton-secundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    padding: 15px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
}

.boton-principal {
    color: white;
    background: linear-gradient(135deg, #ff5f9d, #ff9b64);
    box-shadow: 0 12px 30px rgba(255, 105, 172, 0.30);
}

.boton-secundario {
    color: var(--texto);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 195, 218, 0.7);
    box-shadow: var(--sombra-suave);
}

.boton-principal:hover,
.boton-secundario:hover,
.boton-whatsapp:hover,
.enlace-contacto:hover,
.redes-enlaces a:hover {
    transform: translateY(-2px);
}

.hero-beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-beneficios span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--texto-suave);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--sombra-suave);
}

.hero-visual {
    min-height: 470px;
}

.visual-central {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 248, 0.82));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--sombra);
    border: 1px solid rgba(255, 255, 255, 0.9);
    animation: pulso 6s ease-in-out infinite;
}

.visual-anillo {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 147, 195, 0.4);
    animation: girar 18s linear infinite;
}

.visual-juguete {
    font-size: 4.5rem;
    margin-bottom: 8px;
}

.visual-corazon {
    position: absolute;
    top: 18px;
    right: 34px;
    font-size: 1.3rem;
}

.visual-central p {
    width: 70%;
    margin: 0;
    color: var(--texto-suave);
    font-weight: 600;
}

.globo {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.75;
}

.globo-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 203, 222, 0.85), rgba(255, 233, 169, 0.7));
    top: 14px;
    left: 12%;
}

.globo-2 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(223, 244, 255, 0.9), rgba(217, 247, 221, 0.85));
    top: 36%;
    right: 9%;
}

.globo-3 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(238, 229, 255, 0.9), rgba(255, 214, 238, 0.75));
    bottom: 8%;
    left: 18%;
}

.tarjeta-flotante {
    position: absolute;
    width: 220px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: var(--sombra-suave);
    border: 1px solid rgba(255, 255, 255, 0.85);
    animation: flotar-cards 6s ease-in-out infinite;
}

.tarjeta-flotante span {
    font-size: 1.7rem;
}

.tarjeta-flotante strong {
    display: block;
    margin: 8px 0 6px;
    color: var(--texto);
    font-size: 1.05rem;
}

.tarjeta-flotante p {
    margin: 0;
    color: var(--texto-suave);
    line-height: 1.5;
    font-size: 0.95rem;
}

.tarjeta-uno {
    top: 20px;
    right: 8%;
}

.tarjeta-dos {
    left: 0;
    top: 44%;
    animation-delay: -2s;
}

.tarjeta-tres {
    right: 4%;
    bottom: 10px;
    animation-delay: -4s;
}

.onda-separadora {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.onda-separadora span {
    width: 54px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd7e9, #fff0c2);
    animation: vaiven 2.6s ease-in-out infinite;
}

.onda-separadora span:nth-child(2) {
    animation-delay: -0.5s;
}

.onda-separadora span:nth-child(3) {
    animation-delay: -1s;
}

.beneficios-tienda,
.categorias-visuales,
.seccion-catalogo,
.contacto {
    padding: 24px;
}

.beneficios-tienda {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 6px;
}

.beneficio-card,
.contacto-card,
.categoria-card,
.producto,
.modal-contenido,
.herramientas-panel {
    background: var(--blanco);
    border: 1px solid var(--borde);
    backdrop-filter: blur(10px);
}

.beneficio-card {
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--sombra-suave);
}

.beneficio-icono {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff0f7, #fff2dd);
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.beneficio-card h3,
.contacto-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.beneficio-card p,
.contacto-card p,
.footer-texto {
    margin: 0;
    color: var(--texto-suave);
    line-height: 1.65;
}

.encabezado-seccion {
    text-align: center;
    margin-bottom: 28px;
}

.subtitulo {
    margin: 0 0 8px;
    color: var(--rosa-fuerte);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.encabezado-seccion h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.categoria-card {
    border: 0;
    cursor: pointer;
    border-radius: 26px;
    min-height: 148px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    box-shadow: var(--sombra-suave);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.categoria-card:nth-child(4n+1) {
    background: linear-gradient(145deg, #e9f8ff, rgba(255,255,255,0.92));
}

.categoria-card:nth-child(4n+2) {
    background: linear-gradient(145deg, #fff0f7, rgba(255,255,255,0.92));
}

.categoria-card:nth-child(4n+3) {
    background: linear-gradient(145deg, #fff6df, rgba(255,255,255,0.92));
}

.categoria-card:nth-child(4n+4) {
    background: linear-gradient(145deg, #effced, rgba(255,255,255,0.92));
}

.categoria-card:hover,
.producto:hover,
.contacto-card:hover,
.beneficio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(131, 102, 165, 0.16);
}

.categoria-card span {
    font-size: 2.8rem;
}

.categoria-card strong {
    color: var(--texto);
    font-size: 1.08rem;
}

.herramientas-panel {
    padding: 20px;
    border-radius: 28px;
    box-shadow: var(--sombra-suave);
    margin-bottom: 24px;
}

.herramientas {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 12px;
    margin-bottom: 16px;
}

.herramientas input,
.herramientas select {
    min-height: 54px;
    width: 100%;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 205, 228, 0.95);
    background: rgba(255, 255, 255, 0.96);
    color: var(--texto);
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.herramientas input:focus,
.herramientas select:focus {
    border-color: rgba(255, 105, 172, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 105, 172, 0.10);
}

.filtros-rapidos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filtro-rapido {
    padding: 11px 18px;
    border: 1px solid rgba(255, 205, 228, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--texto);
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--sombra-suave);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.filtro-rapido:hover {
    transform: translateY(-2px);
}

.filtro-rapido.activo {
    background: linear-gradient(135deg, #ff67a9, #ffab66);
    color: white;
    border-color: transparent;
}

#lista-productos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.producto {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 16px;
    box-shadow: var(--sombra-suave);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.producto-imagen-wrapper {
    position: relative;
    margin-bottom: 14px;
}

.producto img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 22px;
}

.producto-insignias {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.insignia {
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.insignia-oferta {
    background: linear-gradient(135deg, #ff5f84, #ff8554);
}

.insignia-destacado {
    background: linear-gradient(135deg, #ffb942, #ff8d3f);
}

.insignia-nuevo {
    background: linear-gradient(135deg, #63c1ff, #5a88ff);
}

.producto h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.categoria {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 240, 247, 0.95);
    color: var(--rosa-fuerte);
    font-size: 0.9rem;
    font-weight: 600;
}

.producto-descripcion {
    margin: 0 0 14px;
    color: var(--texto-suave);
    line-height: 1.6;
    min-height: 48px;
}

.precio-area {
    margin-bottom: 10px;
}

.precio-area del,
.modal-precio-normal {
    color: #9d98ad;
    font-weight: 500;
}

.precio {
    margin: 4px 0 0;
    color: var(--rosa-fuerte);
    font-size: 1.55rem;
    font-weight: 700;
}

.stock {
    margin: 0 0 12px;
    font-weight: 700;
}

.disponible {
    color: #2b9f54;
}

.agotado {
    color: #e05567;
}

.boton-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, #2dd673, #1cb65f);
    color: white;
    box-shadow: 0 10px 20px rgba(45, 214, 115, 0.22);
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contacto-card {
    padding: 26px;
    border-radius: 28px;
    box-shadow: var(--sombra-suave);
}

.contacto-card-destacado {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(236,255,245,0.9));
}

.contacto-icono {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 14px;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #fff0f7, #fff2dd);
}

.enlace-contacto {
    display: inline-flex;
    margin-top: 14px;
    padding: 11px 16px;
    border-radius: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, #fff0f7, #fff6e4);
    color: var(--rosa-fuerte);
    font-weight: 700;
}

.redes {
    margin-top: 28px;
    text-align: center;
}

.redes h3 {
    margin: 0 0 14px;
}

.redes-enlaces {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.redes-enlaces a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--texto);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--sombra-suave);
}

footer {
    padding: 30px 16px 40px;
    text-align: center;
    color: var(--texto-suave);
}

footer p {
    margin: 0;
}

.footer-texto {
    margin-top: 8px;
}

.modal-producto {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(70, 51, 88, 0.45);
    backdrop-filter: blur(5px);
}

.modal-contenido {
    position: relative;
    width: min(980px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 24px;
    border-radius: 30px;
    box-shadow: var(--sombra);
}

.cerrar-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff0f7, #fff4df);
    color: var(--rosa-fuerte);
    cursor: pointer;
    font-size: 1.8rem;
    box-shadow: var(--sombra-suave);
}

.modal-imagen img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
}

.modal-categoria {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 240, 247, 0.95);
    color: var(--rosa-fuerte);
    font-weight: 700;
}

.modal-informacion h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.modal-descripcion {
    margin: 0 0 18px;
    color: var(--texto-suave);
    line-height: 1.7;
}

.modal-precio,
.modal-precio-oferta {
    margin: 0;
    color: var(--rosa-fuerte);
    font-size: 2rem;
    font-weight: 700;
}

#modal-stock {
    margin: 10px 0 18px;
    font-weight: 700;
}

@keyframes flotar-suave {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -24px, 0) scale(1.04); }
}

@keyframes flotar-cards {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulso {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.03); }
}

@keyframes girar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes vaiven {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(0.72); opacity: 0.72; }
}

@keyframes brillar {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.25); opacity: 0.9; }
}

@media (max-width: 1080px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: unset;
        padding: 34px 24px;
    }

    .hero-contenido {
        text-align: center;
    }

    .hero-texto {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-botones,
    .hero-beneficios {
        justify-content: center;
    }

    .hero-visual {
        min-height: 460px;
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .beneficios-tienda,
    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .categorias-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .header-principal {
        padding: 14px 16px;
        border-radius: 0 0 22px 22px;
    }

    .logo {
        max-width: calc(100% - 60px);
        font-size: 1.08rem;
    }

    .logo-icono {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .boton-menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .menu-principal {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        padding: 12px;
        gap: 4px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        box-shadow: var(--sombra);
        border: 1px solid var(--borde);
    }

    .menu-principal.abierto {
        display: flex;
    }

    .menu-principal a {
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .hero {
        padding: 26px 12px 24px;
    }

    .hero-inner {
        padding: 26px 16px;
        border-radius: 28px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.35rem);
    }

    .hero-texto {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-beneficios span {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        min-height: 390px;
    }

    .visual-central {
        width: 210px;
        height: 210px;
    }

    .visual-juguete {
        font-size: 3.4rem;
    }

    .visual-central p {
        width: 78%;
        font-size: 0.95rem;
    }

    .tarjeta-flotante {
        width: 170px;
        padding: 12px 14px;
    }

    .tarjeta-flotante strong {
        font-size: 0.92rem;
    }

    .tarjeta-flotante p {
        font-size: 0.82rem;
    }

    .tarjeta-uno {
        right: 0;
    }

    .tarjeta-dos {
        left: 0;
        top: auto;
        bottom: 35px;
    }

    .tarjeta-tres {
        right: 0;
        bottom: 0;
    }

    .beneficios-tienda,
    .categorias-visuales,
    .seccion-catalogo,
    .contacto {
        padding: 16px 12px;
    }

    .herramientas {
        grid-template-columns: 1fr;
    }

    #lista-productos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .producto {
        padding: 12px;
        border-radius: 22px;
    }

    .producto img {
        height: 160px;
        border-radius: 18px;
    }

    .producto h3 {
        font-size: 1rem;
    }

    .producto-descripcion {
        font-size: 0.92rem;
        min-height: auto;
    }

    .precio {
        font-size: 1.22rem;
    }

    .boton-whatsapp {
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .modal-producto {
        padding: 12px;
    }

    .modal-contenido {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
        border-radius: 24px;
    }

    .modal-imagen img {
        height: 280px;
        border-radius: 20px;
    }
}

@media (max-width: 520px) {
    .franja-superior {
        font-size: 12px;
        padding: 9px 12px;
    }

    .hero-botones {
        flex-direction: column;
    }

    .boton-principal,
    .boton-secundario {
        width: 100%;
    }

    .categorias-grid,
    #lista-productos {
        grid-template-columns: 1fr;
    }

    .categoria-card {
        min-height: 126px;
    }

    .producto img {
        height: 220px;
    }
}

/* =====================================================
   PRESENTACIÓN PREMIUM: SECCIONES CON IDENTIDAD PROPIA
   ===================================================== */

main {
    width: min(100%, 1380px);
    padding: 0 18px 34px;
}

.hero {
    padding-top: 34px;
}

.hero-inner {
    min-height: 700px;
    padding: 58px 56px;
    background:
        radial-gradient(circle at 16% 18%, rgba(255,255,255,.95) 0 12%, transparent 33%),
        radial-gradient(circle at 88% 20%, rgba(255,238,184,.85) 0 8%, transparent 28%),
        radial-gradient(circle at 82% 82%, rgba(221,244,255,.78) 0 10%, transparent 31%),
        linear-gradient(135deg, #ffe8f3 0%, #fff4df 50%, #e9f7ff 100%);
}

.hero-contenido {
    max-width: 720px;
}

.hero-mini {
    margin: 0 0 10px;
    font-size: .86rem;
    letter-spacing: .22em;
    font-weight: 700;
    color: #8d7890;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(4.1rem, 6.4vw, 7.4rem);
    line-height: .92;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.hero-bienvenidos,
.hero-marca,
.hero-cierre {
    display: block;
}

.hero-bienvenidos {
    color: #474155;
    font-size: .78em;
}

.hero-marca {
    margin-top: 10px;
    color: #ff4f98 !important;
    text-shadow:
        0 6px 0 rgba(255,255,255,.75),
        0 18px 34px rgba(255,79,152,.20) !important;
}

.hero-cierre {
    display: inline;
    color: #ff9c58;
}

.hero-frase {
    margin: 24px 0 0;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.35;
    font-weight: 600;
    color: #5d546b;
}

.hero-texto {
    margin-top: 12px;
    font-size: 1.12rem;
}

.hero-botones {
    margin-top: 30px;
}

.seccion-color {
    position: relative;
    margin: 28px 0;
    padding: 58px 38px;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.78);
    box-shadow: 0 20px 55px rgba(98, 84, 126, .09);
}

.seccion-color::before,
.seccion-color::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.seccion-color::before {
    width: 210px;
    height: 210px;
    top: -105px;
    right: -60px;
    background: rgba(255,255,255,.40);
}

.seccion-color::after {
    width: 150px;
    height: 150px;
    bottom: -70px;
    left: -45px;
    background: rgba(255,255,255,.30);
}

.seccion-beneficios {
    background:
        radial-gradient(circle at 12% 16%, rgba(255,255,255,.70), transparent 26%),
        linear-gradient(135deg, #e8f8ff 0%, #eef4ff 48%, #f3edff 100%);
}

.seccion-categorias {
    background:
        radial-gradient(circle at 88% 14%, rgba(255,255,255,.75), transparent 24%),
        linear-gradient(135deg, #fff1f7 0%, #fff3e4 52%, #fff9de 100%);
}

.seccion-productos {
    background:
        radial-gradient(circle at 8% 8%, rgba(255,255,255,.78), transparent 25%),
        linear-gradient(135deg, #effcf4 0%, #f1fbff 48%, #f8f4ff 100%);
}

.seccion-contacto {
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.75), transparent 26%),
        linear-gradient(135deg, #fff1e6 0%, #fff0f6 48%, #f6efff 100%);
}

.seccion-color .encabezado-seccion h2 {
    color: #484154;
}

.seccion-beneficios .beneficio-card {
    background: rgba(255,255,255,.80);
}

.seccion-categorias .categoria-card,
.seccion-productos .producto,
.seccion-contacto .contacto-card {
    background: rgba(255,255,255,.86);
}

@media (max-width: 1080px) {
    .hero-inner {
        min-height: auto;
        padding: 46px 34px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 8vw, 5.8rem);
    }
}

@media (max-width: 780px) {
    main {
        padding: 0 8px 22px;
    }

    .hero-inner {
        padding: 34px 20px;
    }

    .hero h1 {
        font-size: clamp(3rem, 13vw, 4.7rem);
        line-height: .94;
    }

    .hero-bienvenidos {
        font-size: .74em;
    }

    .hero-frase {
        font-size: 1.12rem;
    }

    .seccion-color {
        margin: 18px 4px;
        padding: 42px 18px;
        border-radius: 28px;
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: clamp(2.55rem, 14vw, 4rem);
    }

    .hero-mini {
        font-size: .72rem;
        letter-spacing: .16em;
    }

    .hero-etiqueta {
        font-size: .9rem;
        padding: 10px 14px;
    }

    .hero-frase {
        margin-top: 18px;
        font-size: 1.02rem;
    }
}

/* =====================================================
   PORTADA FOTOGRÁFICA + MAPA INCRUSTADO (v12)
===================================================== */
.hero-banner {
    padding: 26px 24px 30px;
}

.hero-banner-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 38px;
    box-shadow: 0 24px 55px rgba(95, 74, 126, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: #eef7ff;
}

.hero-banner-media img {
    width: 100%;
    aspect-ratio: 2.5 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: portada-aparecer 900ms ease both;
}

.hero-banner-brillo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 38%,
        rgba(255, 255, 255, 0.18) 47%,
        transparent 57%,
        transparent 100%
    );
    transform: translateX(-120%);
    animation: brillo-portada 7s ease-in-out 1.2s infinite;
}

.hero-presentacion {
    position: relative;
    width: min(100%, 980px);
    margin: -42px auto 0;
    padding: 34px 34px 30px;
    text-align: center;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 50px rgba(127, 88, 135, 0.16);
    z-index: 2;
}

.hero-presentacion .hero-etiqueta {
    margin-bottom: 14px;
}

.hero-presentacion h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 6.6rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    color: #484457;
}

.hero-presentacion h1 span {
    display: block;
    margin-top: 8px;
    color: #ff4f99;
    text-shadow: 0 8px 25px rgba(255, 79, 153, 0.20);
}

.hero-presentacion .hero-frase {
    margin: 22px 0 10px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 700;
    color: #7a5a90;
}

.hero-presentacion .hero-texto {
    max-width: 720px;
    margin: 0 auto 24px;
}

.hero-presentacion .hero-botones,
.hero-presentacion .hero-beneficios {
    justify-content: center;
}

.mapa-seccion {
    margin-top: 30px;
    padding: 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 38px rgba(100, 84, 129, 0.12);
}

.mapa-encabezado {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.mapa-encabezado h3 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.mapa-encabezado .subtitulo {
    margin-bottom: 5px;
}

.mapa-icono {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 1.7rem;
    background: linear-gradient(135deg, #fff0f7, #eef8ff);
    box-shadow: 0 8px 20px rgba(80, 71, 111, 0.10);
}

.mapa-contenedor {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #f2f8ff, #fff5fa);
}

.mapa-contenedor iframe {
    display: block;
    width: 100%;
    height: 430px;
    border: 0;
}

.mapa-aviso {
    margin: 14px 0 0;
    text-align: center;
    color: #7f798d;
}

.mapa-sin-datos .mapa-contenedor {
    display: none;
}

.contacto-ayuda {
    margin-top: 8px !important;
    font-size: 0.92rem;
}

@keyframes portada-aparecer {
    from { opacity: 0; transform: scale(1.025); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes brillo-portada {
    0%, 70% { transform: translateX(-120%); }
    90%, 100% { transform: translateX(120%); }
}

@media (max-width: 780px) {
    .hero-banner {
        padding: 16px 12px 24px;
    }

    .hero-banner-media {
        border-radius: 26px;
    }

    .hero-banner-media img {
        aspect-ratio: auto;
        height: 390px;
        object-fit: cover;
        object-position: center;
    }

    .hero-presentacion {
        width: calc(100% - 18px);
        margin-top: -26px;
        padding: 26px 18px 24px;
        border-radius: 28px;
    }

    .hero-presentacion h1 {
        font-size: clamp(2.35rem, 11vw, 4rem);
    }

    .hero-presentacion .hero-frase {
        font-size: 1.25rem;
    }

    .mapa-seccion {
        padding: 16px;
        border-radius: 24px;
    }

    .mapa-contenedor iframe {
        height: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner-media img,
    .hero-banner-brillo {
        animation: none !important;
    }
}

/* =========================================================
   PORTADA INTEGRADA - IMAGEN ORIGINAL SIN DIFUMINADO
   ========================================================= */
.hero-banner {
    padding: 26px 16px 34px;
}

.hero-presentacion {
    position: relative;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0;
    text-align: center;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 50px rgba(127, 88, 135, 0.16);
    overflow: hidden;
    z-index: 2;
}

.hero-banner-media {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #eef7ff;
}

.hero-banner-media img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    animation: portada-aparecer 700ms ease both;
    filter: none !important;
}

.hero-banner-brillo {
    display: none !important;
}

.hero-presentacion-contenido {
    padding: 18px 34px 30px;
    background: #ffffff;
}

.hero-presentacion .hero-frase {
    margin: 0 0 10px;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    font-weight: 700;
    color: #76518c;
    line-height: 1.16;
}

.hero-presentacion .hero-texto {
    max-width: 720px;
    margin: 0 auto 24px;
    color: #777187;
    font-size: 1.05rem;
    line-height: 1.65;
}

.hero-presentacion .hero-botones,
.hero-presentacion .hero-beneficios {
    justify-content: center;
}

.hero-presentacion .hero-beneficios {
    margin-top: 16px;
}

@media (max-width: 780px) {
    .hero-banner {
        padding: 16px 10px 24px;
    }

    .hero-presentacion {
        width: 100%;
        margin: 0 auto;
        border-radius: 24px;
    }

    .hero-banner-media {
        border-radius: 0;
    }

    .hero-banner-media img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .hero-presentacion-contenido {
        padding: 16px 16px 24px;
    }

    .hero-presentacion .hero-frase {
        font-size: clamp(1.35rem, 6vw, 1.8rem);
    }

    .hero-presentacion .hero-texto {
        font-size: 0.98rem;
        margin-bottom: 20px;
    }
}
