/*
Theme Name: Kadence Child
Template: kadence
Version: 1.1
Text Domain: kadence-child
*/

:root {
    --sp-primary: #6d28d9;
    --sp-primary-dark: #5b21b6;
    --sp-primary-light: #8b5cf6;

    --sp-text: #111827;
    --sp-muted: #64748b;

    --sp-bg: #f8fafc;
    --sp-card: #ffffff;

    --sp-border: #e5e7eb;
    --sp-border-purple: #ddd6fe;

    --sp-success: #047857;

    --sp-radius: 18px;

    --sp-shadow:
        0 15px 40px
        rgba(15, 23, 42, 0.08);
}

/* Solo ocultamos el header original de Kadence en Inicio */
#masthead {
    display: none !important;
}

.home .site-main {
    padding: 0;
}

.home .content-area {
    margin: 0;
}

.simpleia-site,
.simpleia-site * {
    box-sizing: border-box;
}

.simpleia-site {
    min-height: 100vh;
    background: var(--sp-bg);
    color: var(--sp-text);
}

.simpleia-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* ============================
   HEADER
============================ */

.simpleia-header {
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid
        rgba(226, 232, 240, 0.85);
    background:
        rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.admin-bar .simpleia-header {
    top: 32px;
}

.simpleia-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.simpleia-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: var(--sp-text);

    font-size: 21px;
    font-weight: 800;

    text-decoration: none;
}

.simpleia-logo:hover {
    color: var(--sp-text);
}

.simpleia-logo strong {
    color: var(--sp-primary);
}

.simpleia-logo__icon {
    display: grid;

    width: 40px;
    height: 40px;

    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--sp-primary),
            var(--sp-primary-light)
        );

    color: #ffffff;

    font-size: 19px;
    font-weight: 900;

    box-shadow:
        0 8px 20px
        rgba(109, 40, 217, 0.25);
}

.simpleia-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.simpleia-nav > a {
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.simpleia-nav > a:hover {
    color: var(--sp-primary);
}

.simpleia-nav .simpleia-header-button {
    padding: 11px 18px;
    border-radius: 10px;
    background: var(--sp-primary);
    color: #ffffff;
}

.simpleia-nav .simpleia-header-button:hover {
    background: var(--sp-primary-dark);
    color: #ffffff;
}

/* ============================
   HERO
============================ */

.simpleia-hero {
    position: relative;

    overflow: hidden;

    padding: 78px 0 75px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, 0.16),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

.simpleia-hero__content {
    max-width: 900px;
    margin: auto;
}

.simpleia-badge {
    display: inline-flex;

    min-height: 31px;
    align-items: center;

    padding: 5px 13px;

    border: 1px solid
        var(--sp-border-purple);

    border-radius: 999px;

    background: #f5f3ff;

    color: var(--sp-primary);

    font-size: 12px;
    font-weight: 800;
}

.simpleia-hero h1 {
    max-width: 900px;

    margin:
        20px auto
        16px;

    color: var(--sp-text);

    font-size:
        clamp(
            44px,
            5.3vw,
            70px
        );

    line-height: 1.04;

    letter-spacing:
        -0.045em;
}

.simpleia-hero h1 span {
    display: block;
    color: var(--sp-primary);
}

.simpleia-hero > .simpleia-container p,
.simpleia-hero__content > p {
    max-width: 690px;
    margin: auto;

    color: var(--sp-muted);

    font-size: 18px;
    line-height: 1.65;
}

/* BUSCADOR */

.simpleia-hero-search {
    display: flex;

    max-width: 720px;

    min-height: 62px;

    align-items: center;

    margin:
        32px auto
        0;

    padding: 6px;

    border:
        1px solid
        #ddd6fe;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 18px 45px
        rgba(109, 40, 217, 0.12);
}

.simpleia-search-icon {
    padding-left: 14px;

    color: #94a3b8;

    font-size: 25px;
}

.simpleia-hero-search input {
    width: 100%;

    min-width: 0;

    padding: 0 14px;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--sp-text);

    font-size: 16px;

    box-shadow: none;
}

.simpleia-hero-search input:focus {
    border: 0;
    outline: 0;
    box-shadow: none;
}

.simpleia-hero-search a {
    display: inline-flex;

    min-height: 48px;

    align-items: center;
    justify-content: center;

    padding: 0 23px;

    border-radius: 11px;

    background: var(--sp-primary);

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
}

.simpleia-hero-search a:hover {
    background: var(--sp-primary-dark);
    color: #ffffff;
}

.simpleia-popular {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 7px 15px;

    margin-top: 20px;

    color: #64748b;

    font-size: 13px;
}

.simpleia-popular a {
    color: #475569;
    font-weight: 700;
    text-decoration: none;
}

.simpleia-popular a:hover {
    color: var(--sp-primary);
}

/* ============================
   SECCIONES
============================ */

.simpleia-tools,
.simpleia-benefits,
.simpleia-faq {
    padding: 78px 0;
}

.simpleia-tools {
    background: #ffffff;
}

.simpleia-section-heading {
    max-width: 730px;

    margin:
        0 auto
        38px;

    text-align: center;
}

.simpleia-section-heading h2 {
    margin:
        14px 0
        10px;

    color: var(--sp-text);

    font-size:
        clamp(
            31px,
            4vw,
            44px
        );

    line-height: 1.12;

    letter-spacing:
        -0.03em;
}

.simpleia-section-heading p {
    margin: 0;

    color: var(--sp-muted);

    font-size: 17px;
}

/* ============================
   FILTROS
============================ */

.simpleia-tool-filters {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 9px;

    margin-bottom: 32px;
}

.simpleia-tool-filters button {
    min-height: 39px;

    padding:
        0 16px;

    border:
        1px solid
        var(--sp-border);

    border-radius:
        999px;

    background: #ffffff;

    color: #475569;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.simpleia-tool-filters button:hover {
    border-color: #c4b5fd;
    color: var(--sp-primary);
}

.simpleia-tool-filters button.is-active {
    border-color: var(--sp-primary);

    background: var(--sp-primary);

    color: #ffffff;
}

/* ============================
   TARJETAS
============================ */

.simpleia-tools-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 16px;
}

.simpleia-tool-card {
    display: flex;

    min-height: 235px;

    flex-direction: column;

    padding: 21px;

    border:
        1px solid
        var(--sp-border);

    border-radius:
        var(--sp-radius);

    background:
        var(--sp-card);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.simpleia-tool-card[hidden] {
    display: none;
}

.simpleia-tool-card:hover {
    transform:
        translateY(-4px);

    border-color:
        #c4b5fd;

    box-shadow:
        var(--sp-shadow);
}

.simpleia-tool-card__top {
    display: flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap: 10px;
}

.simpleia-tool-icon {
    display: grid;

    width: 49px;
    height: 49px;

    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #ede9fe,
            #faf5ff
        );

    color:
        var(--sp-primary);

    font-size: 15px;
    font-weight: 900;
}

.simpleia-tool-status {
    display: inline-flex;

    padding:
        5px 8px;

    border-radius:
        999px;

    font-size: 10px;
    font-weight: 800;
}

.simpleia-tool-status.is-ready {
    background: #ecfdf5;
    color: #047857;
}

.simpleia-tool-status.is-coming {
    background: #fff7ed;
    color: #c2410c;
}

.simpleia-tool-card h3 {
    margin:
        18px 0
        7px;

    color:
        var(--sp-text);

    font-size:
        19px;
}

.simpleia-tool-card p {
    margin:
        0 0
        18px;

    color:
        var(--sp-muted);

    font-size:
        14px;

    line-height:
        1.6;
}

.simpleia-tool-link {
    display: flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap: 10px;

    margin-top:
        auto;

    color:
        var(--sp-primary);

    font-size:
        13px;

    font-weight:
        800;

    text-decoration:
        none;
}

.simpleia-tool-link:hover {
    color:
        var(--sp-primary-dark);
}

.simpleia-tool-link.is-disabled {
    color:
        #94a3b8;
}

.simpleia-no-results {
    max-width: 600px;

    margin:
        35px auto
        0;

    padding: 25px;

    border-radius: 14px;

    background: #f8fafc;

    color: #64748b;

    text-align: center;

    font-weight: 700;
}

/* ============================
   BENEFICIOS
============================ */

.simpleia-benefits {
    background: var(--sp-bg);
}

.simpleia-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 17px;
}

.simpleia-benefits-grid article {
    padding: 27px;

    border:
        1px solid
        var(--sp-border);

    border-radius:
        var(--sp-radius);

    background: #ffffff;
}

.simpleia-benefits-grid article > span {
    font-size: 27px;
}

.simpleia-benefits-grid h3 {
    margin:
        15px 0
        7px;

    font-size: 18px;
}

.simpleia-benefits-grid p {
    margin: 0;

    color: var(--sp-muted);

    font-size: 14px;

    line-height: 1.65;
}

/* ============================
   PROXIMAMENTE
============================ */

.simpleia-coming {
    padding: 20px 0 78px;

    background: var(--sp-bg);
}

.simpleia-coming__box {
    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 35px;

    padding: 42px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #312e81
        );

    color: #ffffff;

    box-shadow:
        var(--sp-shadow);
}

.simpleia-coming-badge {
    display:
        inline-flex;

    padding:
        6px 11px;

    border-radius:
        999px;

    background:
        rgba(
            255,
            255,
            255,
            .12
        );

    color:
        #ddd6fe;

    font-size:
        11px;

    font-weight:
        800;
}

.simpleia-coming__box h2 {
    margin:
        13px 0
        8px;

    color: #ffffff;

    font-size: 31px;
}

.simpleia-coming__box p {
    max-width: 650px;

    margin: 0;

    color: #d1d5db;
}

.simpleia-btn {
    display:
        inline-flex;

    min-height: 48px;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0 21px;

    border-radius:
        11px;

    font-weight:
        800;

    text-decoration:
        none;
}

.simpleia-btn--light {
    background: #ffffff;

    color:
        var(--sp-primary);
}

/* ============================
   FAQ
============================ */

.simpleia-faq {
    background: #ffffff;
}

.simpleia-faq-list {
    max-width: 800px;

    margin: auto;
}

.simpleia-faq-list details {
    margin-bottom: 11px;

    padding:
        18px 20px;

    border:
        1px solid
        var(--sp-border);

    border-radius:
        13px;

    background: #ffffff;
}

.simpleia-faq-list summary {
    color:
        var(--sp-text);

    cursor:
        pointer;

    font-weight:
        800;
}

.simpleia-faq-list p {
    margin:
        13px 0 0;

    color:
        var(--sp-muted);

    line-height:
        1.65;
}

/* ============================
   TABLET
============================ */

@media (max-width: 1024px) {

    .simpleia-tools-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }

    .simpleia-benefits-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}

/* ============================
   MÓVIL
============================ */

@media (max-width: 760px) {

    .admin-bar .simpleia-header {
        top: 46px;
    }

    .simpleia-container {
        width:
            min(
                calc(100% - 28px),
                1200px
            );
    }

    .simpleia-header__inner {
        min-height: 66px;
    }

    .simpleia-nav > a:not(
        .simpleia-header-button
    ) {
        display: none;
    }

    .simpleia-logo {
        font-size: 18px;
    }

    .simpleia-logo__icon {
        width: 36px;
        height: 36px;
    }

    .simpleia-header-button {
        padding:
            9px 13px !important;
    }

    .simpleia-hero {
        padding:
            58px 0
            55px;
    }

    .simpleia-hero h1 {
        font-size:
            clamp(
                37px,
                12vw,
                52px
            );
    }

    .simpleia-hero__content > p {
        font-size:
            16px;
    }

    .simpleia-hero-search {
        min-height:
            auto;

        padding: 5px;
    }

    .simpleia-hero-search a {
        display: none;
    }

    .simpleia-tools,
    .simpleia-benefits,
    .simpleia-faq {
        padding:
            60px 0;
    }

    .simpleia-tools-grid,
    .simpleia-benefits-grid {
        grid-template-columns:
            1fr;
    }

    .simpleia-tool-card {
        min-height:
            210px;
    }

    .simpleia-coming__box {
        align-items:
            flex-start;

        flex-direction:
            column;

        padding:
            29px;
    }

    .simpleia-coming__box
    .simpleia-btn {
        width: 100%;
    }

}

/* ==========================================================
   SIMPLEIATEC PDF - LOGO
========================================================== */

.simpleia-brand {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #111827;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.simpleia-brand:hover {
    transform: translateY(-1px);
}

.simpleia-brand:focus-visible {
    outline: 3px solid rgba(109, 40, 217, 0.2);
    outline-offset: 6px;
    border-radius: 14px;
}

/* ICONO */

.simpleia-brand__mark {
    position: relative;

    display: grid;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    place-items: center;

    overflow: hidden;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #4c1d95 0%,
            #6d28d9 42%,
            #8b5cf6 72%,
            #c084fc 100%
        );

    box-shadow:
        0 10px 25px rgba(109, 40, 217, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.simpleia-brand__mark::before {
    content: "";

    position: absolute;

    width: 62px;
    height: 62px;

    top: -34px;
    left: -22px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.18);

    filter: blur(1px);
}

.simpleia-brand__mark::after {
    content: "";

    position: absolute;

    inset: 3px;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 12px;

    pointer-events: none;
}

/* HOJA PDF */

.simpleia-brand__sheet {
    position: absolute;

    width: 21px;
    height: 27px;

    left: 14px;
    top: 10px;

    border-radius:
        4px 4px 5px 5px;

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 4px 10px
        rgba(49, 16, 101, 0.2);
}

.simpleia-brand__fold {
    position: absolute;

    width: 8px;
    height: 8px;

    left: 27px;
    top: 10px;

    clip-path:
        polygon(
            0 0,
            100% 100%,
            0 100%
        );

    background:
        #ddd6fe;
}

/* LETRA S */

.simpleia-brand__letter {
    position: relative;

    z-index: 5;

    margin-top: 4px;

    color: #6d28d9;

    font-size: 16px;
    font-weight: 950;

    line-height: 1;

    letter-spacing: -1px;
}

/* DESTELLOS */

.simpleia-brand__spark {
    position: absolute;

    z-index: 7;

    display: block;

    border-radius: 999px;

    background: #ffffff;

    opacity: 0.9;
}

.simpleia-brand__spark--1 {
    width: 3px;
    height: 3px;

    top: 8px;
    right: 8px;
}

.simpleia-brand__spark--2 {
    width: 2px;
    height: 2px;

    top: 16px;
    right: 5px;
}

.simpleia-brand__spark--3 {
    width: 2px;
    height: 2px;

    bottom: 7px;
    left: 7px;
}

/* CONTENIDO DEL LOGO */

.simpleia-brand__content {
    display: flex;
    align-items: center;

    gap: 9px;

    min-width: 0;
}

/* SIMPLEIATEC */

.simpleia-brand__name {
    display: inline-flex;
    align-items: baseline;

    white-space: nowrap;

    font-size: 24px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: -1px;
}

.simpleia-brand__simpleia {
    color: #111827;
}

.simpleia-brand__tec {
    position: relative;

    margin-left: 2px;

    background:
        linear-gradient(
            120deg,
            #5b21b6 0%,
            #7c3aed 48%,
            #a855f7 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* PEQUEÑO DETALLE DEBAJO DE TEC */

.simpleia-brand__tec::after {
    content: "";

    position: absolute;

    left: 1px;
    right: 0;

    bottom: -5px;

    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #6d28d9,
            #c084fc
        );

    opacity: 0.65;
}

/* BADGE PDF */

.simpleia-brand__pdf {
    display: inline-flex;

    min-height: 24px;

    align-items: center;
    justify-content: center;

    padding:
        4px 8px 3px;

    border:
        1px solid
        rgba(109, 40, 217, 0.18);

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            #f5f3ff,
            #ede9fe
        );

    color: #6d28d9;

    font-size: 10px;
    font-weight: 900;

    line-height: 1;

    letter-spacing: 0.7px;

    box-shadow:
        0 3px 9px
        rgba(109, 40, 217, 0.08);
}

/* HOVER */

.simpleia-brand:hover
.simpleia-brand__mark {
    box-shadow:
        0 13px 30px
        rgba(109, 40, 217, 0.32),
        inset 0 1px 0
        rgba(255, 255, 255, 0.32);
}

.simpleia-brand:hover
.simpleia-brand__pdf {
    background:
        linear-gradient(
            135deg,
            #ede9fe,
            #ddd6fe
        );
}

/* MOBILE */

@media (max-width: 760px) {

    .simpleia-brand {
        gap: 9px;
    }

    .simpleia-brand__mark {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        border-radius: 13px;
    }

    .simpleia-brand__sheet {
        width: 18px;
        height: 24px;

        left: 12px;
        top: 9px;
    }

    .simpleia-brand__fold {
        width: 7px;
        height: 7px;

        left: 23px;
        top: 9px;
    }

    .simpleia-brand__letter {
        font-size: 14px;
    }

    .simpleia-brand__name {
        font-size: 20px;
    }

    .simpleia-brand__content {
        gap: 6px;
    }

    .simpleia-brand__pdf {
        min-height: 21px;

        padding:
            3px 6px;

        font-size: 8px;
    }
}


/* Header Simpleia global */

.simpleia-header--global {
    width: 100%;
}

body:not(.home) .simpleia-header--global {
    margin-bottom: 0;
}

body:not(.home) .site-main {
    padding-top: 0;
}

/* Evitar que Kadence deje espacio del header antiguo */

.site-header-wrap {
    display: none !important;
}

/* Mantener el header por encima de las herramientas */

.simpleia-header {
    position: sticky;
    top: 0;
    z-index: 99999;
}

/* WordPress admin bar */

.admin-bar .simpleia-header {
    top: 32px;
}

@media (max-width: 782px) {

    .admin-bar .simpleia-header {
        top: 46px;
    }

}

/* ==========================================================
   SIMPLEIATEC FOOTER
========================================================== */

.simpleia-footer {
    position: relative;
    overflow: hidden;
    padding: 76px 0 24px;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(124, 58, 237, 0.18),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #111827 0%,
            #0f172a 100%
        );
    color: #cbd5e1;
}

.simpleia-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    background:
        rgba(109, 40, 217, 0.12);
    filter: blur(10px);
    pointer-events: none;
}

.simpleia-footer__top {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(260px, 1.5fr)
        repeat(4, minmax(140px, 1fr));

    gap: 42px;
}

.simpleia-footer__brand {
    max-width: 320px;
}

.simpleia-brand--footer {
    margin-bottom: 20px;
}

.simpleia-brand--footer
.simpleia-brand__simpleia {
    color: #ffffff;
}

.simpleia-brand--footer
.simpleia-brand__pdf {
    border-color:
        rgba(255, 255, 255, 0.14);
    background:
        rgba(255, 255, 255, 0.08);
    color: #c4b5fd;
}

.simpleia-footer__brand > p {
    margin: 0 0 22px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.75;
}

.simpleia-footer__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.simpleia-footer__trust span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 4px 9px;
    border: 1px solid
        rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background:
        rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
}

.simpleia-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.simpleia-footer__column h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.simpleia-footer__column a,
.simpleia-footer__coming {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color .18s ease,
        transform .18s ease;
}

.simpleia-footer__column a:hover {
    color: #c4b5fd;
    transform: translateX(2px);
}

.simpleia-footer__coming {
    opacity: .55;
}

.simpleia-footer__coming::after {
    content: " · Próximamente";
    color: #7c3aed;
    font-size: 9px;
    font-weight: 800;
}

.simpleia-footer__newsletter {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 58px;
    padding: 30px 32px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.13),
            rgba(255, 255, 255, 0.035)
        );
}

.simpleia-footer__eyebrow {
    display: inline-flex;
    margin-bottom: 7px;
    color: #a78bfa;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.simpleia-footer__newsletter h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 21px;
}

.simpleia-footer__newsletter p {
    max-width: 620px;
    margin: 0;
    color: #94a3b8;
    font-size: 13px;
}

.simpleia-footer__cta {
    display: inline-flex;
    min-height: 46px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 10px;
    background: #7c3aed;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background .2s ease,
        transform .2s ease;
}

.simpleia-footer__cta:hover {
    transform: translateY(-2px);
    background: #6d28d9;
    color: #ffffff;
}

.simpleia-footer__bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 30px;
    padding-top: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.simpleia-footer__bottom p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
}

.simpleia-footer__bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.simpleia-footer__bottom a {
    color: #94a3b8;
    font-size: 12px;
    text-decoration: none;
}

.simpleia-footer__bottom a:hover {
    color: #c4b5fd;
}

/* Ocultamos el footer original de Kadence */
#colophon {
    display: none !important;
}

/* TABLET */

@media (max-width: 1100px) {

    .simpleia-footer__top {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .simpleia-footer__brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }

}

/* MOVIL */

@media (max-width: 700px) {

    .simpleia-footer {
        padding-top: 55px;
    }

    .simpleia-footer__top {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 35px 25px;
    }

    .simpleia-footer__brand {
        grid-column: 1 / -1;
    }

    .simpleia-footer__newsletter {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 42px;
        padding: 25px;
    }

    .simpleia-footer__cta {
        width: 100%;
    }

    .simpleia-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 480px) {

    .simpleia-footer__top {
        grid-template-columns: 1fr;
    }

    .simpleia-footer__brand {
        grid-column: auto;
    }

}


/* ==========================================================
   SIMPLEIATEC 404
========================================================== */

.simpleia-404 {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 70px 0;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, 0.12),
            transparent 35%
        ),
        #f8fafc;
}

.simpleia-404__card {
    max-width: 860px;
    margin: 0 auto;
    padding: 55px 40px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    background: #ffffff;
    box-shadow:
        0 25px 70px rgba(15, 23, 42, 0.08);
}

.simpleia-404__code {
    margin-bottom: 8px;
    color: #6d28d9;
    font-size: clamp(72px, 12vw, 140px);
    font-weight: 950;
    line-height: .85;
    letter-spacing: -0.07em;
    opacity: .12;
}

.simpleia-404 h1 {
    margin: 18px 0 14px;
    color: #111827;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.simpleia-404 h1 span {
    display: block;
    color: #6d28d9;
}

.simpleia-404__card > p {
    max-width: 650px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.simpleia-404__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.simpleia-btn--primary {
    background: #6d28d9;
    color: #ffffff;
}

.simpleia-btn--primary:hover {
    background: #5b21b6;
    color: #ffffff;
}

.simpleia-btn--secondary {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #334155;
}

.simpleia-btn--secondary:hover {
    border-color: #c4b5fd;
    background: #f5f3ff;
    color: #6d28d9;
}

.simpleia-404__suggestions {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.simpleia-404__suggestions h2 {
    margin: 0 0 20px;
    color: #111827;
    font-size: 18px;
}

.simpleia-404__grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.simpleia-404__grid a {
    display: flex;
    min-height: 95px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    text-decoration: none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.simpleia-404__grid a:hover {
    transform: translateY(-3px);
    border-color: #c4b5fd;
    background: #f5f3ff;
    color: #6d28d9;
}

.simpleia-404__grid span {
    color: #6d28d9;
    font-size: 22px;
    font-weight: 900;
}

.simpleia-404__grid strong {
    font-size: 13px;
}

@media (max-width: 700px) {

    .simpleia-404 {
        padding: 40px 0;
    }

    .simpleia-404__card {
        padding: 38px 22px;
    }

    .simpleia-404__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .simpleia-404__actions {
        flex-direction: column;
    }

    .simpleia-404__actions .simpleia-btn {
        width: 100%;
    }

}

/* ==========================================================
   SIMPLEIATEC MAPA DEL SITIO
========================================================== */

.simpleia-sitemap {
    background: #f8fafc;
}

.simpleia-sitemap__hero {
    padding: 72px 0 50px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, .12),
            transparent 38%
        ),
        #ffffff;
}

.simpleia-sitemap__hero h1 {
    margin: 16px 0 12px;

    color: #111827;

    font-size:
        clamp(
            40px,
            6vw,
            62px
        );

    line-height: 1.05;

    letter-spacing: -.04em;
}

.simpleia-sitemap__hero p {
    max-width: 680px;

    margin: 0 auto;

    color: #64748b;

    font-size: 17px;

    line-height: 1.7;
}

.simpleia-sitemap__content {
    padding: 60px 0 80px;
}

.simpleia-sitemap__grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 20px;
}

.simpleia-sitemap__section {
    padding: 25px;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(15, 23, 42, .05);
}

.simpleia-sitemap__section h2 {
    margin: 0 0 18px;

    color: #111827;

    font-size: 18px;
}

.simpleia-sitemap__section ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.simpleia-sitemap__section li {
    border-top: 1px solid #f1f5f9;
}

.simpleia-sitemap__section li:first-child {
    border-top: 0;
}

.simpleia-sitemap__section a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 11px 0;

    color: #475569;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.simpleia-sitemap__section a span {
    color: #a78bfa;
}

.simpleia-sitemap__section a:hover {
    color: #6d28d9;
}

.simpleia-sitemap__note {
    margin-top: 35px;

    padding: 35px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #312e81
        );

    color: #ffffff;

    text-align: center;
}

.simpleia-sitemap__note h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 27px;
}

.simpleia-sitemap__note p {
    max-width: 720px;

    margin:
        0 auto
        22px;

    color: #cbd5e1;

    line-height: 1.7;
}

@media (max-width: 1000px) {

    .simpleia-sitemap__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}

@media (max-width: 600px) {

    .simpleia-sitemap__hero {
        padding:
            55px 0
            40px;
    }

    .simpleia-sitemap__content {
        padding:
            40px 0
            60px;
    }

    .simpleia-sitemap__grid {
        grid-template-columns: 1fr;
    }

    .simpleia-sitemap__note {
        padding: 28px 22px;
    }

}

/* ==========================================================
   PAGINA TODAS LAS HERRAMIENTAS
========================================================== */

.simpleia-tools-page {
    background: #f8fafc;
}

.simpleia-tools-page__hero {
    padding: 72px 0 54px;
    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, .13),
            transparent 38%
        ),
        #ffffff;
}

.simpleia-tools-page__hero h1 {
    margin: 17px 0 12px;

    color: #111827;

    font-size:
        clamp(
            42px,
            6vw,
            66px
        );

    line-height: 1.04;

    letter-spacing: -.045em;
}

.simpleia-tools-page__hero h1 span {
    display: block;
    color: #6d28d9;
}

.simpleia-tools-page__hero p {
    max-width: 700px;
    margin: 0 auto;

    color: #64748b;

    font-size: 17px;
    line-height: 1.7;
}

.simpleia-tools-page__search {
    max-width: 620px;
    margin: 27px auto 0;
}

.simpleia-tools-page__search input {
    width: 100%;
    min-height: 54px;

    padding: 0 18px;

    border: 1px solid #ddd6fe;
    border-radius: 14px;

    background: #ffffff;

    color: #111827;

    font-size: 15px;

    box-shadow:
        0 12px 35px rgba(109, 40, 217, .09);
}

.simpleia-tools-page__search input:focus {
    border-color: #8b5cf6;
    outline: 0;

    box-shadow:
        0 0 0 4px
        rgba(124, 58, 237, .09);
}

.simpleia-tools-page__content {
    padding: 55px 0 80px;
}

.simpleia-tools-page__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 9px;

    margin-bottom: 30px;
}

.simpleia-tools-page__filters button {
    min-height: 40px;

    padding: 0 16px;

    border: 1px solid #e5e7eb;
    border-radius: 999px;

    background: #ffffff;

    color: #475569;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
}

.simpleia-tools-page__filters button:hover {
    border-color: #c4b5fd;
    color: #6d28d9;
}

.simpleia-tools-page__filters button.is-active {
    border-color: #6d28d9;
    background: #6d28d9;
    color: #ffffff;
}

.simpleia-tools-page__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.simpleia-tools-page
.simpleia-tool-card h2 {
    margin: 18px 0 7px;

    color: #111827;

    font-size: 19px;
}

@media (max-width: 1050px) {

    .simpleia-tools-page__grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 800px) {

    .simpleia-tools-page__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 560px) {

    .simpleia-tools-page__hero {
        padding: 55px 0 42px;
    }

    .simpleia-tools-page__content {
        padding: 40px 0 60px;
    }

    .simpleia-tools-page__grid {
        grid-template-columns: 1fr;
    }

}
/* ==========================================================
   FAQ INDEPENDIENTE
========================================================== */

.simpleia-faq-page {
    background: #f8fafc;
}

.simpleia-faq-page__hero {
    padding: 72px 0 52px;
    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, .12),
            transparent 38%
        ),
        #ffffff;
}

.simpleia-faq-page__hero h1 {
    margin: 16px 0 12px;
    color: #111827;
    font-size: clamp(40px, 6vw, 62px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.simpleia-faq-page__hero p {
    max-width: 720px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.simpleia-faq-page__content {
    padding: 58px 0 80px;
}

.simpleia-faq-page__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.simpleia-faq-page__grid > div {
    padding: 25px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
}

.simpleia-faq-page__grid h2 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 20px;
}

.simpleia-faq-page details {
    margin-bottom: 11px;
    padding: 16px 17px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.simpleia-faq-page details:last-child {
    margin-bottom: 0;
}

.simpleia-faq-page summary {
    color: #111827;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
}

.simpleia-faq-page details p {
    margin: 11px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.simpleia-faq-page__contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 30px;
    padding: 35px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #312e81
        );

    color: #ffffff;
}

.simpleia-faq-page__contact h2 {
    margin: 13px 0 7px;
    color: #ffffff;
    font-size: 28px;
}

.simpleia-faq-page__contact p {
    margin: 0;
    color: #cbd5e1;
}

@media (max-width: 760px) {

    .simpleia-faq-page__grid {
        grid-template-columns: 1fr;
    }

    .simpleia-faq-page__contact {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .simpleia-faq-page__contact .simpleia-btn {
        width: 100%;
    }

}
/* ==========================================================
   ESTADO DEL SERVICIO
========================================================== */

.simpleia-status-page {
    background: #f8fafc;
}

.simpleia-status-page__hero {
    padding: 72px 0 52px;
    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, .12),
            transparent 38%
        ),
        #ffffff;
}

.simpleia-status-page__hero h1 {
    margin: 16px 0 12px;
    color: #111827;
    font-size: clamp(40px, 6vw, 62px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.simpleia-status-page__hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
}

.simpleia-status-page__content {
    padding: 58px 0 80px;
}

.simpleia-status-overview {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 28px;

    border: 1px solid #d1fae5;
    border-radius: 20px;

    background: #ecfdf5;
}

.simpleia-status-overview__icon {
    display: grid;

    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    place-items: center;

    border-radius: 50%;

    background: #10b981;

    color: #ffffff;

    font-size: 25px;
    font-weight: 900;
}

.simpleia-status-overview span {
    color: #047857;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.simpleia-status-overview h2 {
    margin: 5px 0 5px;
    color: #064e3b;
    font-size: 23px;
}

.simpleia-status-overview p {
    margin: 0;
    color: #047857;
    font-size: 13px;
}

.simpleia-status-list {
    margin-top: 24px;

    overflow: hidden;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    background: #ffffff;
}

.simpleia-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 18px 22px;

    border-top: 1px solid #f1f5f9;
}

.simpleia-status-item:first-child {
    border-top: 0;
}

.simpleia-status-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.simpleia-status-item strong {
    color: #111827;
    font-size: 14px;
}

.simpleia-status-item > div span {
    color: #94a3b8;
    font-size: 11px;
}

.simpleia-status-badge {
    display: inline-flex;

    min-width: 95px;
    min-height: 28px;

    align-items: center;
    justify-content: center;

    padding: 4px 9px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
}

.simpleia-status-badge.is-up {
    background: #ecfdf5;
    color: #047857;
}

.simpleia-status-badge.is-dev {
    background: #fff7ed;
    color: #c2410c;
}

.simpleia-status-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 28px;
    padding: 32px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #312e81
        );

    color: #ffffff;
}

.simpleia-status-info h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 25px;
}

.simpleia-status-info p {
    max-width: 650px;
    margin: 0;
    color: #cbd5e1;
}

@media (max-width: 700px) {

    .simpleia-status-overview {
        align-items: flex-start;
    }

    .simpleia-status-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .simpleia-status-info {
        align-items: flex-start;
        flex-direction: column;
    }

    .simpleia-status-info .simpleia-btn {
        width: 100%;
    }

}

/* ==========================================================
   LAYOUT GLOBAL DE HERRAMIENTAS
========================================================== */

.simpleia-tool-hero {
    padding: 58px 0 42px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, .12),
            transparent 38%
        ),
        #ffffff;
}

.simpleia-tool-hero h1 {
    margin: 15px 0 10px;

    color: #111827;

    font-size:
        clamp(
            38px,
            5vw,
            58px
        );

    line-height: 1.05;

    letter-spacing: -.04em;
}

.simpleia-tool-hero p {
    max-width: 720px;

    margin: 0 auto;

    color: #64748b;

    font-size: 17px;

    line-height: 1.7;
}


.simpleia-tool-help {
    padding: 55px 0 75px;

    background: #f8fafc;
}

.simpleia-tool-help__grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 20px;
}

.simpleia-tool-help__card {
    padding: 28px;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    background: #ffffff;
}

.simpleia-tool-help__card h2 {
    margin: 0 0 18px;

    color: #111827;

    font-size: 20px;
}

.simpleia-tool-help__card ol,
.simpleia-tool-help__card ul {
    margin: 0;

    padding-left: 21px;
}

.simpleia-tool-help__card li {
    margin-bottom: 10px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.65;
}

.simpleia-tool-help__card li:last-child {
    margin-bottom: 0;
}

@media (max-width: 700px) {

    .simpleia-tool-help__grid {
        grid-template-columns: 1fr;
    }

}










