/* =========================================================
   WONDERWORLD HOME – Hero + Sección inferior (AZUL)
   Scoped a .ww-home para no tocar otras páginas
   ========================================================= */

/* RESET local al home */
.ww-home *,
.ww-home *::before,
.ww-home *::after {
    box-sizing: border-box;
}

body.ww-body.ww-home {
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #1e2445;
}

/* ================= HEADER + NAVBAR ================= */

.ww-home .ww-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* Nav principal */
.ww-home .ww-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-block: 0.45rem;
}

/* Marca / logo */

.ww-home .ww-brand {
    text-decoration: none;
}

.ww-home .ww-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: #0b2147;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e0f2ff;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.4);
}

.ww-home .ww-logo-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.ww-home .ww-logo-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ww-home .ww-logo-text span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Toggler personalizado */

.ww-home .ww-navbar-toggler {
    border-color: rgba(15, 23, 42, 0.25);
    padding: 0.2rem 0.45rem;
}

.ww-home .ww-navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(11, 99, 214, 0.32);
}

.ww-home .ww-navbar-toggler-icon {
    background-image: none;
    width: 1.3rem;
    height: 1.3rem;
    position: relative;
}

.ww-home .ww-navbar-toggler-icon::before,
.ww-home .ww-navbar-toggler-icon::after,
.ww-home .ww-navbar-toggler-icon span {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background-color: #0b2147;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.ww-home .ww-navbar-toggler-icon::before {
    top: 0;
}

.ww-home .ww-navbar-toggler-icon::after {
    bottom: 0;
}

.ww-home .ww-navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

/* Nav-links */

.ww-home .ww-navbar .nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: #222842;
    padding-inline: 0.5rem;
    padding-block: 0.2rem;
    margin-inline: 0.1rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ww-home .ww-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #0b2147;
    transition: width 0.25s ease-out;
}

.ww-home .ww-navbar .nav-link:hover {
    color: #0b2147;
    transform: translateY(-1px);
}

.ww-home .ww-navbar .nav-link.active {
    color: #0b2147;
    font-weight: 600;
}

.ww-home .ww-navbar .nav-link.active::after {
    width: 100%;
}

/* CTA catálogo en navbar */
.ww-home .ww-nav-cta {
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: #0b63d6;
    color: #e6f2ff !important;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.3rem;
    box-shadow: 0 10px 20px rgba(11, 99, 214, 0.4);
}

.ww-home .ww-nav-cta::after {
    display: none;
}

.ww-home .ww-nav-cta:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* ================= MAIN WRAPPER ================= */

.ww-home .ww-main {
    min-height: 100vh;
}

/* ================= HERO ================= */

.ww-home .ww-hero {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.25) 0, transparent 52%),
        radial-gradient(circle at bottom right, rgba(15, 76, 129, 0.46) 0, transparent 55%),
        linear-gradient(135deg, #0b63d6 0%, #1d9bf0 42%, #4fd1ff 100%);
    padding: 4rem 1.5rem 3.4rem;
    overflow: hidden;
}

.ww-home .ww-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    min-height: calc(100vh - 5.5rem);
    display: grid;
    /* ligeramente más ancha la columna del carrusel */
    grid-template-columns: minmax(0, 1.0fr) minmax(0, 1.2fr);
    gap: 3.2rem;
    align-items: center;
}

/* adornos */

.ww-home .ww-hero::before,
.ww-home .ww-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    filter: blur(2px);
    z-index: 0;
}

.ww-home .ww-hero::before {
    width: 150px;
    height: 150px;
    top: 70px;
    left: -40px;
}

.ww-home .ww-hero::after {
    width: 220px;
    height: 220px;
    bottom: -90px;
    right: -40px;
}

/* Texto hero */

.ww-home .ww-hero-text {
    position: relative;
    z-index: 1;
}

.ww-home .ww-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(11, 33, 71, 0.92);
    color: #e0f2ff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.ww-home .ww-hero-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4fd1ff;
}

.ww-home .ww-hero-title {
    margin: 0 0 0.7rem;
    font-size: clamp(2.6rem, 3.9vw + 1rem, 3.9rem);
    line-height: 1.04;
    color: #ffffff;
}

.ww-home .ww-hero-subtitle {
    margin: 0 0 1.8rem;
    max-width: 34rem;
    font-size: 0.98rem;
    color: #e6f2ff;
}

/* Botones hero */

.ww-home .ww-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.3rem;
}

.ww-home .ww-btn-primary,
.ww-home .ww-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    border: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out,
        background 0.15s ease-out,
        color 0.15s ease-out;
}

.ww-home .ww-btn-primary {
    background: #0b63d6;
    color: #e7f3ff;
    box-shadow: 0 20px 38px rgba(11, 99, 214, 0.6);
}

.ww-home .ww-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 52px rgba(11, 99, 214, 0.78);
}

.ww-home .ww-btn-outline {
    background: transparent;
    border: 2px solid #e0f2ff;
    color: #e0f2ff;
}

.ww-home .ww-btn-outline:hover {
    background: #e0f2ff;
    color: #0b2147;
}

.ww-home .ww-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    font-size: 0.78rem;
}

.ww-home .ww-hero-chip {
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #1b2a4b;
}

/* ================= CAROUSEL / SLIDER HERO ================= */

.ww-home .ww-hero-media {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.ww-home .ww-slider-frame {
    position: relative;
    width: 100%;
    max-width: 100%;          
    transform-origin: center;
    animation: ww-home-float 8s ease-in-out infinite;
}

@keyframes ww-home-float {
    0%   { transform: translateY(0) scale(1); }
    50%  { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

.ww-home .ww-slider-shadow {
    position: absolute;
    bottom: -32px;
    left: 8%;
    width: 84%;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.32);
    filter: blur(14px);
    z-index: -1;
}

.ww-home .ww-slider {
    width: 100%;             
    border-radius: 28px;
    background: #ffffff;
    padding: 1.7rem 1.7rem 2.3rem;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
    overflow: visible;
    position: relative;
}

.ww-home .ww-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    pointer-events: none;
}

.ww-home .ww-slider-track {
    width: 100%;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
    aspect-ratio: 16 / 9;
    min-height: 340px;
}

/* Slides */

.ww-home .ww-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
    pointer-events: none;
}

.ww-home .ww-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Ken Burns solo en el slide activo */
.ww-home .ww-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
}

.ww-home .ww-slide.is-active img {
    animation: ww-kenburns 10s ease-in-out forwards;
}

@keyframes ww-kenburns {
    0% {
        transform: scale(1.02) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.08) translate3d(2%, -2%, 0);
    }
}

/* Dots HERO */

.ww-home .ww-slider-dots {
    position: relative;
    margin-top: 1.3rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.ww-home .ww-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ww-home .ww-dot.is-active {
    width: 20px;
    background: #0b63d6;
    transform: translateY(-1px);
}

/* Flechas HERO */

.ww-home .ww-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.78);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.ww-home .ww-arrow svg {
    width: 18px;
    height: 18px;
}

.ww-home .ww-arrow-prev { left: 14px; }
.ww-home .ww-arrow-next { right: 14px; }

.ww-home .ww-arrow:hover {
    background: #0b2147;
    transform: translateY(-50%) scale(1.07);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
}

/* Badge superior del carrusel hero */

.ww-home .ww-slider-tag {
    position: absolute;
    top: 14px;
    left: 20px;
    padding: 0.35rem 0.95rem;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(11, 33, 71, 0.98);
    color: #e0f2ff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 3;
}

.ww-home .ww-slider-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4fd1ff;
}

/* Placeholder */

.ww-home .ww-slider-placeholder {
    border-radius: 26px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.93);
    text-align: center;
    color: #6a738c;
}

/* ================= SECCIÓN INFERIOR ================= */

.ww-home .ww-section-main {
    padding: 2.6rem 1.2rem 3rem;
    background: radial-gradient(circle at top right, rgba(226, 239, 255, 0.8) 0, #e6f2ff 40%, #e0f2ff 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ww-home .ww-section-header {
    max-width: 1180px;
    margin: 0 auto 2.1rem;
    text-align: center;
}

.ww-home .ww-section-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    background: #0b2147;
    color: #e0f2ff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.ww-home .ww-section-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4fd1ff;
}

.ww-home .ww-section-header h2 {
    margin: 0 0 0.4rem;
    font-size: 2rem;
    color: #0b2147;
}

.ww-home .ww-section-header p {
    margin: 0;
    font-size: 0.92rem;
    color: #444;
}

/* GRID PRINCIPAL
   Fila 1: cats cats (full width)
   Fila 2: process | about
*/

.ww-home .ww-section-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    grid-template-rows: auto auto;
    grid-template-areas:
        "cats cats"
        "process about";
    gap: 1.8rem;
    align-items: stretch;
}

/* Cards genéricas */

.ww-home .ww-card {
    position: relative;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
    padding: 1.8rem 1.9rem 1.9rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

/* header de cards */

.ww-home .ww-card-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ww-home .ww-card-tag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2147 0%, #0b63d6 100%);
    color: #e0f2ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.28);
}

.ww-home .ww-card-title-row h3 {
    margin: 0 0 0.2rem;
    font-size: 1.25rem;
    color: #0b2147;
}

.ww-home .ww-card-title-row p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

/* ========== CATEGORÍAS – CARD 1 ========== */

.ww-home .ww-card-cats {
    grid-area: cats;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    min-height: 420px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f6ff 42%, #e3f1ff 100%);
    border-radius: 24px;
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.12);
}

.ww-home .ww-cats-carousel {
    position: relative;
    margin-top: 0.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ww-home .ww-cats-track {
    position: relative;
    min-height: 320px;
    flex: 1;
}

/* slide interno */

.ww-home .ww-cat-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.ww-home .ww-cat-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* card interna (categoría) */

.ww-home .ww-category-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    text-decoration: none;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.14);
    transition:
        transform 0.18s ease-out,
        box-shadow 0.18s ease-out,
        border-color 0.18s ease-out;
    height: 100%;
}

.ww-home .ww-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 46px rgba(15, 23, 42, 0.2);
    border-color: rgba(11, 99, 214, 0.6);
}

.ww-home .ww-category-image {
    position: relative;
    flex: 1.55;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.ww-home .ww-category-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-out;
}

.ww-home .ww-category-card:hover .ww-category-image img {
    transform: scale(1.06);
}

.ww-home .ww-category-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b2147;
    color: #e0f2ff;
    font-weight: 700;
    font-size: 1.4rem;
}

.ww-home .ww-category-name-bar {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 14px;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ww-home .ww-category-name-bar span {
    font-size: 0.98rem;
    font-weight: 600;
    color: #0b2147;
}

.ww-home .ww-category-body {
    flex: 1.3;
    padding: 1.4rem 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
}

.ww-home .ww-category-body h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #0b2147;
}

.ww-home .ww-category-body p {
    margin: 0;
    font-size: 0.9rem;
    color: #555e7a;
}

.ww-home .ww-category-body small {
    font-size: 0.8rem;
    color: #718198;
}

.ww-home .ww-empty {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #8a90a7;
}

/* Flechas / dots del carrusel de categorías */

.ww-home .ww-cats-arrows {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ww-home .ww-cats-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.38);
    pointer-events: auto;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.ww-home .ww-cats-arrow svg {
    width: 18px;
    height: 18px;
}

.ww-home .ww-cats-arrow-prev { left: 10px; }
.ww-home .ww-cats-arrow-next { right: 10px; }

.ww-home .ww-cats-arrow:hover {
    background: #0b63d6;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 16px 30px rgba(11, 99, 214, 0.55);
}

.ww-home .ww-cats-dots {
    margin-top: 1.1rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.ww-home .ww-cats-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(11, 99, 214, 0.35);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ww-home .ww-cats-dot.is-active {
    width: 18px;
    background: #0b63d6;
    transform: translateY(-1px);
}

/* ========== TE AYUDAMOS – CARD 2 ========== */

.ww-home .ww-card-process {
    grid-area: process;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 210px;
    background: radial-gradient(circle at top left, #f4f8ff 0, #e6f2ff 40%, #dbeafe 100%);
    overflow: hidden;
    position: relative;
    padding-bottom: 1.6rem;
}

.ww-home .ww-card-process::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.35) 0, transparent 70%);
    opacity: 0.8;
}

.ww-home .ww-card-process-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.ww-home .ww-card-process-text h3 {
    margin: 0 0 0.15rem;
    font-size: 1.2rem;
    color: #0b2147;
}

.ww-home .ww-card-process-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b587a;
}

.ww-home .ww-card-process-badge {
    margin-left: auto;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(11, 33, 71, 0.06);
    color: #0b2147;
    white-space: nowrap;
}

/* Timeline */

.ww-home .ww-process-timeline {
    position: relative;
    z-index: 1;
    margin-top: 0.3rem;
    padding-left: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.ww-home .ww-process-timeline::before {
    content: "";
    position: absolute;
    top: 0.3rem;
    bottom: 0.3rem;
    left: 21px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.15), rgba(59, 130, 246, 0.25));
}

.ww-home .ww-process-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.5rem 0.8rem 0.55rem 0.2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out,
        border-color 0.15s ease-out,
        background 0.15s ease-out;
}

.ww-home .ww-process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.45);
    background: rgba(255, 255, 255, 0.98);
}

.ww-home .ww-process-icon {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #ffffff 0, #3b82f6 50%, #1d4ed8 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e0f2ff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.45);
    flex-shrink: 0;
}

.ww-home .ww-process-icon span {
    position: relative;
}

.ww-home .ww-process-content h4 {
    margin: 0 0 0.15rem;
    font-size: 0.95rem;
    color: #0b2147;
}

.ww-home .ww-process-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #4b587a;
}

/* Footer CTA */

.ww-home .ww-process-footer {
    position: relative;
    z-index: 1;
    margin-top: 0.7rem;
    padding-top: 0.6rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.6);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.ww-home .ww-process-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: #334155;
}

.ww-home .ww-btn-process {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: #0b63d6;
    color: #e7f3ff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 20px rgba(11, 99, 214, 0.55);
    cursor: pointer;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

.ww-home .ww-btn-process:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 26px rgba(11, 99, 214, 0.68);
    background: #0b5acc;
}

/* ========== SOBRE WONDERWORLD – CARD 3 ========== */

.ww-home .ww-card-about {
    grid-area: about;
    display: flex;
    flex-direction: column;
    min-height: 210px;
    background: linear-gradient(135deg, #ffffff 0, #f5f7ff 40%, #e4f1ff 100%);
}

.ww-home .ww-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 1.4rem;
    margin-top: 0.4rem;
}

.ww-home .ww-about-text p {
    font-size: 0.9rem;
    color: #404a67;
    margin: 0 0 0.7rem;
}

.ww-home .ww-about-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ww-home .ww-about-contact h4 {
    margin: 0 0 0.4rem;
    font-size: 0.96rem;
    color: #0b2147;
}

.ww-home .ww-contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ww-home .ww-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #333;
}

.ww-home .ww-contact-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0b2147;
    color: #e0f2ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ww-home .ww-contact-icon svg {
    width: 14px;
    height: 14px;
}

.ww-home .ww-contact-icon--whatsapp {
    background: #25D366;
    color: #fff;
}

.ww-home .ww-contact-line a {
    color: #0b2147;
    text-decoration: underline;
}

/* Bloque catálogo */

.ww-home .ww-catalog-block {
    margin-top: 0.35rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: #0b2147;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ww-home .ww-catalog-block::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0, transparent 70%);
    opacity: 0.9;
}

.ww-home .ww-catalog-tag {
    display: inline-flex;
    padding: 0.12rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.ww-home .ww-catalog-block h5 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
}

.ww-home .ww-catalog-block p {
    margin: 0 0 0.7rem;
    font-size: 0.8rem;
    max-width: 18rem;
}

.ww-home .ww-btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #4fd1ff;
    color: #0b2147;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.45);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

.ww-home .ww-btn-catalog:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.6);
    background: #7fe1ff;
}

.ww-home .ww-btn-catalog-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0b2147;
    color: #e0f2ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ww-home .ww-btn-catalog-icon svg {
    width: 14px;
    height: 14px;
}

/* FOOTER */

.ww-home .ww-footer {
    padding: 1.6rem 1.5rem 2.4rem;
    text-align: center;
    font-size: 0.8rem;
    color: #7a8198;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .ww-home .ww-hero {
        padding: 2.8rem 1.1rem 2.4rem;
    }

    .ww-home .ww-hero-inner {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .ww-home .ww-hero-text { order: 2; }
    .ww-home .ww-hero-media { order: 1; }

    .ww-home .ww-slider-frame {
        max-width: 560px;
    }

    /* Cards: stack en una sola columna */
    .ww-home .ww-section-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "cats"
            "process"
            "about";
    }

    .ww-home .ww-card-cats {
        min-height: 380px;
    }

    .ww-home .ww-card-about,
    .ww-home .ww-card-process {
        min-height: 0;
    }
}

@media (max-width: 720px) {
    .ww-home .ww-card {
        padding: 1.5rem 1.3rem 1.5rem;
    }

    .ww-home .ww-category-card {
        flex-direction: column;
    }

    .ww-home .ww-category-image {
        aspect-ratio: 16 / 10;
    }

    .ww-home .ww-about-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ww-home .ww-card-process-header {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .ww-home .ww-card-process-badge {
        margin-left: 0;
    }

    .ww-home .ww-process-step {
        padding-right: 0.6rem;
    }
}

@media (max-width: 480px) {
    .ww-home .ww-hero-title {
        font-size: 2.2rem;
    }
}
