/* ============================================================
   AINEDER SOFTWARE
   APP.CSS GLOBAL
   ============================================================ */


/* ============================================================
   VARIABLES CORPORATIVAS
   ============================================================ */

:root {
    /* Colores corporativos */
    --aineder-navy: #001E4D;
    --aineder-night: #001535;
    --aineder-white: #F7F8FA;
    --aineder-silver: #D6D8DA;
    --aineder-metal: #A7A9AC;
    --aineder-graphite: #4A4F55;
    --aineder-black: #0A0F18;
    /* Azules de apoyo */
    --aineder-blue: #087CFF;
    --aineder-blue-hover: #066BD9;
    --aineder-blue-soft: #188CFF;
    --aineder-blue-light: #EAF4FF;
    /* Estados */
    --success: #1FA66A;
    --success-light: #E9F8F0;
    --warning: #E9A23B;
    --warning-light: #FFF6E8;
    --danger: #DC4C4C;
    --danger-light: #FDEDED;
    /* Fondos */
    --background-main: #F7F8FA;
    --background-soft: #F2F5F9;
    --background-white: #FFFFFF;
    /* Texto */
    --text-primary: #14233B;
    --text-secondary: #657285;
    --text-muted: #8A95A5;
    /* Bordes */
    --border-light: #E5EAF0;
    --border-medium: #D5DCE5;
    /* Sombras */
    --shadow-xs: 0 2px 8px rgba(0, 30, 77, .04);
    --shadow-sm: 0 8px 22px rgba(0, 30, 77, .07);
    --shadow-md: 0 16px 40px rgba(0, 30, 77, .10);
    --shadow-lg: 0 30px 70px rgba(0, 30, 77, .16);
    /* Radios */
    --radius-sm: 7px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    /* Layout */
    --container-width: 1320px;
    /* Transiciones */
    --transition-fast: .18s ease;
    --transition-normal: .28s ease;
}


/* ============================================================
   RESET GENERAL
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    min-width: 320px;
    background: var(--background-main);
    color: var(--text-primary);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg {
    max-width: 100%;
}

img {
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    line-height: 1.15;
}

p {
    color: var(--text-secondary);
}


/* ============================================================
   APP
   ============================================================ */

#app {
    min-height: 100vh;
}

.app-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.page-content {
    min-height: calc(100vh - 110px);
}


/* ============================================================
   CONTENEDORES
   ============================================================ */

.container {
    width: min( var(--container-width), calc(100% - 70px) );
    margin-left: auto;
    margin-right: auto;
}

.container-small {
    width: min( 920px, calc(100% - 70px) );
    margin-left: auto;
    margin-right: auto;
}

.container-narrow {
    width: min( 720px, calc(100% - 70px) );
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   SECCIONES
   ============================================================ */

.section {
    padding: 100px 0;
}

.section-small {
    padding: 65px 0;
}

.section-large {
    padding: 135px 0;
}

.section-white {
    background: white;
}

.section-soft {
    background: var(--background-soft);
}

.section-dark {
    background: var(--aineder-night);
    color: white;
}

.section-navy {
    background: var(--aineder-navy);
    color: white;
}


/* ============================================================
   ENCABEZADOS DE SECCIÓN
   ============================================================ */

.section-header {
    max-width: 720px;
    margin-bottom: 55px;
}

    .section-header.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

.section-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--aineder-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 18px;
    font-size: clamp(36px, 4vw, 58px);
    letter-spacing: -2px;
}

    .section-title span {
        color: var(--aineder-blue);
    }

.section-description {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.75;
}

.section-dark .section-title,
.section-navy .section-title {
    color: white;
}

.section-dark .section-description,
.section-navy .section-description {
    color: #B7C3D3;
}

/* ============================================================
   HEADER CORPORATIVO AINEDER - PREMIUM
   ============================================================ */

.site-header {
    position: relative;
    z-index: 1000;
    height: 108px;
    overflow: visible;
    background: radial-gradient( circle at 15% 0%, rgba(24, 140, 255, .16), transparent 26% ), radial-gradient( circle at 88% 100%, rgba(8, 124, 255, .10), transparent 28% ), linear-gradient( 135deg, rgba(0, 15, 40, .995), rgba(0, 30, 77, .985) );
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 45px rgba(0, 10, 30, .22), inset 0 -1px 0 rgba(8, 124, 255, .08);
}

    .site-header::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: min(720px, 65%);
        height: 1px;
        transform: translateX(-50%);
        background: linear-gradient( 90deg, transparent, rgba(8, 124, 255, .5), rgba(24, 140, 255, .8), rgba(8, 124, 255, .5), transparent );
        pointer-events: none;
    }

    .site-header.fixed {
        position: sticky;
        top: 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: radial-gradient( circle at 15% 0%, rgba(24, 140, 255, .14), transparent 26% ), linear-gradient( 135deg, rgba(0, 15, 40, .965), rgba(0, 30, 77, .95) );
    }


/* ============================================================
   GLOW DEL HEADER
   ============================================================ */

.site-header-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .6;
}

.site-header-glow-left {
    top: -110px;
    left: 4%;
    width: 230px;
    height: 230px;
    background: rgba(8, 124, 255, .16);
}

.site-header-glow-right {
    top: -120px;
    right: 7%;
    width: 260px;
    height: 260px;
    background: rgba(24, 140, 255, .11);
}


/* ============================================================
   CONTENEDOR DEL HEADER
   ============================================================ */

.site-header-inner {
    position: relative;
    z-index: 2;
    width: min( var(--container-width), calc(100% - 60px) );
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}


/* ============================================================
   LOGO
   ============================================================ */

.brand-image-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform .25s ease, filter .25s ease;
}

.header-brand-shell {
    position: relative;
    min-width: 235px;
    height: 76px;
    padding: 7px 17px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 17px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015) );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 10px 28px rgba(0, 0, 0, .10);
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.brand-image-link:hover {
    transform: translateY(-2px);
}

    .brand-image-link:hover .header-brand-shell {
        border-color: rgba(8, 124, 255, .28);
        background: linear-gradient( 135deg, rgba(8, 124, 255, .09), rgba(255, 255, 255, .02) );
        box-shadow: 0 14px 32px rgba(0, 0, 0, .14), 0 0 28px rgba(8, 124, 255, .08);
    }

.header-logo {
    display: block;
    width: auto;
    height: 68px;
    max-width: 330px;
    object-fit: contain;
}


/* ============================================================
   NAVEGACIÓN PRINCIPAL
   ============================================================ */

.main-nav {
    position: relative;
    height: 64px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 17px;
    background: rgba(255, 255, 255, .025);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

    .main-nav a {
        position: relative;
        min-height: 52px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 13px;
        color: #B9C7D9;
        font-size: 14px;
        font-weight: 750;
        letter-spacing: .05px;
        transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
    }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 6px;
            width: 0;
            height: 2px;
            transform: translateX(-50%);
            border-radius: 20px;
            background: linear-gradient( 90deg, #087CFF, #52B1FF );
            box-shadow: 0 0 10px rgba(8, 124, 255, .8);
            transition: width .25s ease;
        }

        .main-nav a:hover {
            color: white;
            background: rgba(255, 255, 255, .05);
            transform: translateY(-2px);
        }

            .main-nav a:hover::after {
                width: 30px;
            }

        .main-nav a.active {
            color: white;
            background: linear-gradient( 135deg, rgba(8, 124, 255, .22), rgba(8, 124, 255, .07) );
            box-shadow: inset 0 0 0 1px rgba(8, 124, 255, .18), 0 8px 22px rgba(0, 0, 0, .12);
        }

            .main-nav a.active::after {
                width: 32px;
            }


/* ============================================================
   ACCIONES DEL HEADER
   ============================================================ */

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}


/* ============================================================
   BOTÓN DEMO
   ============================================================ */

.header-demo-button {
    position: relative;
    min-height: 62px;
    padding: 7px 9px 7px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    overflow: hidden;
    border: 1px solid rgba(47, 157, 255, .72);
    border-radius: 15px;
    background: linear-gradient( 135deg, rgba(8, 124, 255, .20), rgba(8, 124, 255, .07) );
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 12px 28px rgba(0, 0, 0, .15), 0 0 25px rgba(8, 124, 255, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

    .header-demo-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -140%;
        width: 75%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, .18), transparent );
        transform: skewX(-18deg);
        transition: left .60s ease;
    }

    .header-demo-button:hover {
        transform: translateY(-3px);
        border-color: rgba(89, 180, 255, .95);
        background: linear-gradient( 135deg, #075FD6, #0A8CFF );
        box-shadow: 0 18px 38px rgba(8, 124, 255, .27), 0 9px 20px rgba(0, 0, 0, .16);
    }

        .header-demo-button:hover::before {
            left: 145%;
        }

.header-demo-button-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-demo-button-kicker {
    margin-bottom: 3px;
    color: #8CC9FF;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.header-demo-button-text {
    color: white;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.header-demo-button-arrow {
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 11px;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 20px;
    transition: transform .25s ease, background .25s ease;
}

.header-demo-button:hover
.header-demo-button-arrow {
    transform: translateX(3px);
    background: rgba(255, 255, 255, .18);
}


/* ============================================================
   BOTÓN MENÚ MÓVIL
   ============================================================ */

.mobile-menu-button {
    display: none;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 13px;
    background: linear-gradient( 135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02) );
    color: white;
    font-size: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .mobile-menu-button:hover {
        transform: translateY(-2px);
        background: rgba(8, 124, 255, .14);
        border-color: rgba(8, 124, 255, .65);
        box-shadow: 0 10px 22px rgba(0, 0, 0, .15);
    }


/* ============================================================
   NAVEGACIÓN MÓVIL
   ============================================================ */

.mobile-navigation {
    position: absolute;
    top: 108px;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 14px 18px 20px;
    background: rgba(0, 15, 40, .985);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(8, 124, 255, .10);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .30);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-navigation-inner {
    width: min( 700px, 100% );
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 17px;
    background: rgba(255, 255, 255, .025);
}

    .mobile-navigation-inner > a:not(.header-demo-button) {
        min-height: 54px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        border-radius: 11px;
        color: #CBD5E2;
        font-size: 15px;
        font-weight: 750;
        transition: background .2s ease, color .2s ease, transform .2s ease;
    }

        .mobile-navigation-inner > a:not(.header-demo-button):hover,
        .mobile-navigation-inner > a.active:not(.header-demo-button) {
            background: linear-gradient( 135deg, rgba(8, 124, 255, .17), rgba(8, 124, 255, .05) );
            color: white;
            transform: translateX(3px);
        }

.mobile-demo-button {
    width: 100%;
    margin-top: 9px;
}

/* ============================================================
   BOTONES GENERALES
   ============================================================ */

.btn {
    min-height: 48px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn:active {
        transform: translateY(0);
    }

.btn-primary {
    background: linear-gradient( 135deg, #075FD6, var(--aineder-blue) );
    color: white;
    box-shadow: 0 13px 27px rgba(8, 124, 255, .24);
}

    .btn-primary:hover {
        background: linear-gradient( 135deg, #0753BB, #0875EB );
    }

.btn-secondary {
    background: white;
    border-color: var(--border-medium);
    color: var(--aineder-navy);
}

    .btn-secondary:hover {
        border-color: var(--aineder-blue);
    }

.btn-outline {
    border-color: rgba(255, 255, 255, .4);
    background: transparent;
    color: white;
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, .08);
    }

.btn-dark {
    background: var(--aineder-navy);
    color: white;
}

    .btn-dark:hover {
        background: var(--aineder-blue);
    }

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-sm {
    min-height: 38px;
    padding: 0 17px;
    font-size: 13px;
}

.btn-lg {
    min-height: 56px;
    padding: 0 29px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}


/* ============================================================
   HERO GENERAL
   ============================================================ */

.hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background: radial-gradient( circle at 82% 28%, rgba(8, 124, 255, .16), transparent 26% ), linear-gradient( 135deg, var(--aineder-night), var(--aineder-navy) );
    color: white;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient( 120deg, transparent 0 45%, rgba(255, 255, 255, .025) 45% 46%, transparent 46% ), linear-gradient( 120deg, transparent 0 61%, rgba(255, 255, 255, .02) 61% 62%, transparent 62% );
        pointer-events: none;
    }

.hero-inner {
    position: relative;
    z-index: 2;
    width: min( var(--container-width), calc(100% - 70px) );
    min-height: 610px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 50px;
    padding: 75px 0;
}

.hero-label {
    display: inline-flex;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(8, 124, 255, .20);
    color: #69B7FF;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero h1 {
    margin: 22px 0 22px;
    color: white;
    font-size: clamp( 45px, 4.8vw, 74px );
    line-height: 1.02;
    letter-spacing: -3px;
}

    .hero h1 span {
        color: var(--aineder-blue-soft);
    }

.hero-description {
    max-width: 580px;
    color: #D5DFEC;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
}


/* ============================================================
   TARJETAS
   ============================================================ */

.card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.card-hover {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.card-body {
    padding: 28px;
}

.card-header {
    padding: 22px 28px;
    border-bottom: 1px solid var(--border-light);
}

.card-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--border-light);
}


/* ============================================================
   GRIDS
   ============================================================ */

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat( 2, 1fr );
}

.grid-3 {
    grid-template-columns: repeat( 3, 1fr );
}

.grid-4 {
    grid-template-columns: repeat( 4, 1fr );
}


/* ============================================================
   TARJETAS DE FUNCIONALIDADES
   ============================================================ */

.feature-card {
    position: relative;
    padding: 30px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient( 135deg, #0751BD, var(--aineder-blue) );
    color: white;
    font-size: 22px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   BENEFICIOS
   ============================================================ */

.benefit-item {
    padding: 10px;
}

.benefit-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EEF3F8;
    color: var(--aineder-navy);
    font-size: 24px;
}

.benefit-item h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   PLANES Y PRECIOS
   ============================================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat( 3, 1fr );
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 38px;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

    .pricing-card.featured {
        border: 2px solid var(--aineder-blue);
        box-shadow: var(--shadow-md);
    }

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 17px;
    border-radius: 20px;
    background: var(--aineder-blue);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pricing-name {
    color: var(--aineder-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 12px 0 10px;
    font-size: 26px;
}

.pricing-description {
    min-height: 70px;
    font-size: 14px;
}

.pricing-price {
    margin: 20px 0 25px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

    .pricing-price strong {
        color: var(--aineder-navy);
        font-size: 48px;
    }

    .pricing-price span {
        display: block;
        color: var(--text-muted);
        font-size: 13px;
    }

.pricing-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}


/* ============================================================
   PROMOCIONES
   ============================================================ */

.promo-banner {
    padding: 17px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #CDE4FF;
    border-radius: var(--radius-md);
    background: var(--aineder-blue-light);
}

.promo-banner-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--aineder-blue);
    color: white;
}

.promo-banner strong {
    display: block;
    color: var(--aineder-navy);
}

.promo-banner p {
    margin: 3px 0 0;
    font-size: 13px;
}


/* ============================================================
   FORMULARIOS
   ============================================================ */

.form-card {
    padding: 40px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat( 2, 1fr );
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

.form-label {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    outline: none;
    background: white;
    color: var(--text-primary);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

textarea.form-control {
    min-height: 135px;
    padding: 13px 14px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--aineder-blue);
    box-shadow: 0 0 0 3px rgba( 8, 124, 255, .12 );
}

.form-control::placeholder {
    color: #A6AFBC;
}

.form-error {
    color: var(--danger);
    font-size: 12px;
}

.form-help {
    color: var(--text-muted);
    font-size: 12px;
}


/* ============================================================
   CHECKBOX
   ============================================================ */

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

    .checkbox-row input {
        margin-top: 4px;
    }

    .checkbox-row label {
        color: var(--text-secondary);
        font-size: 13px;
    }


/* ============================================================
   ALERTAS
   ============================================================ */

.alert {
    padding: 15px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.alert-success {
    color: #157148;
    background: var(--success-light);
    border: 1px solid #C5EDDA;
}

.alert-warning {
    color: #8C6510;
    background: var(--warning-light);
    border: 1px solid #F3DBAC;
}

.alert-danger {
    color: #A53A3A;
    background: var(--danger-light);
    border: 1px solid #F2C9C9;
}


/* ============================================================
   BADGES
   ============================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.badge-blue {
    color: #0664C7;
    background: #EAF4FF;
}

.badge-success {
    color: #188B5A;
    background: var(--success-light);
}

.badge-warning {
    color: #9B6B0C;
    background: var(--warning-light);
}

.badge-danger {
    color: #B64343;
    background: var(--danger-light);
}


/* ============================================================
   TABLAS
   ============================================================ */

.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: white;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

    .table th {
        padding: 15px 18px;
        text-align: left;
        background: #F5F7FA;
        color: var(--text-secondary);
        font-size: 12px;
        font-weight: 700;
    }

    .table td {
        padding: 15px 18px;
        border-top: 1px solid var(--border-light);
        color: var(--text-primary);
        font-size: 13px;
    }

    .table tbody tr:hover {
        background: #FAFBFC;
    }


/* ============================================================
   CTA
   ============================================================ */

.cta-section {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background: linear-gradient( 135deg, var(--aineder-night), #00265F );
    color: white;
}

.cta-inner {
    width: min( var(--container-width), calc(100% - 70px) );
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-content {
    max-width: 760px;
}

.cta-section h2 {
    margin-bottom: 18px;
    color: white;
    font-size: clamp( 35px, 4vw, 54px );
    letter-spacing: -2px;
}

.cta-section p {
    margin-bottom: 0;
    color: #B9C6D7;
    font-size: 17px;
}


/* ============================================================
   PÁGINA INTERIOR - HERO
   ============================================================ */

.page-hero {
    padding: 90px 0;
    background: linear-gradient( 135deg, var(--aineder-night), var(--aineder-navy) );
    color: white;
}

.page-hero-inner {
    width: min( var(--container-width), calc(100% - 70px) );
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 800px;
    margin-bottom: 20px;
    color: white;
    font-size: clamp( 42px, 5vw, 66px );
    letter-spacing: -2.5px;
}

.page-hero p {
    max-width: 700px;
    margin-bottom: 0;
    color: #C6D1DF;
    font-size: 18px;
    line-height: 1.7;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    padding: 75px 0 25px;
    background: var(--aineder-black);
    color: white;
}

.footer-inner {
    width: min( var(--container-width), calc(100% - 70px) );
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat( 3, 1fr );
    gap: 60px;
}

.footer-company p {
    max-width: 360px;
    margin-top: 22px;
    color: #8995A6;
    font-size: 14px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-column strong {
        margin-bottom: 7px;
        color: white;
        font-size: 13px;
    }

    .footer-column a {
        color: #8995A6;
        font-size: 13px;
        transition: color var(--transition-fast);
    }

        .footer-column a:hover {
            color: white;
        }

.footer-bottom {
    margin-top: 55px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba( 255, 255, 255, .08 );
    color: #687486;
    font-size: 12px;
}


/* ============================================================
   LOGO DEL FOOTER
   ============================================================ */

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    width: auto;
    height: 82px;
    max-width: 390px;
    object-fit: contain;
    opacity: .96;
    transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

    .footer-logo:hover {
        opacity: 1;
        transform: translateY(-2px);
        filter: drop-shadow( 0 8px 18px rgba(8, 124, 255, .18) );
    }


/* ============================================================
   PÁGINA 404
   ============================================================ */

.not-found {
    min-height: calc( 100vh - 110px );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
}

.not-found-content {
    max-width: 600px;
}

.not-found-code {
    color: var(--aineder-blue);
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
}

.not-found h1 {
    margin-top: 20px;
    font-size: 38px;
}


/* ============================================================
   UTILIDADES
   ============================================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--aineder-blue) !important;
}

.text-navy {
    color: var(--aineder-navy) !important;
}

.text-white {
    color: white !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.w-100 {
    width: 100%;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}


/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #EFF2F5;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #EFF2F5;
    border-radius: 10px;
    background: #AAB4C1;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #8793A3;
    }


/* ============================================================
   SELECCIÓN
   ============================================================ */

::selection {
    background: var(--aineder-blue);
    color: white;
}

/* ============================================================
   RESPONSIVE GLOBAL + HEADER PREMIUM
   ============================================================ */

@media (max-width: 1200px) {

    .site-header-inner {
        width: min(var(--container-width), calc(100% - 38px));
        gap: 18px;
    }

    .header-brand-shell {
        min-width: 205px;
    }

    .header-logo {
        height: 62px;
        max-width: 285px;
    }

    .main-nav {
        gap: 3px;
    }

        .main-nav a {
            padding: 0 14px;
            font-size: 13px;
        }

    .header-demo-button {
        padding: 6px 7px 6px 16px;
    }

    .header-demo-button-text {
        font-size: 13px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .hero-visual {
        margin-top: 15px;
    }

    .home-software-panel {
        max-width: 750px;
        transform: none;
    }
}

@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }

    .header-actions > .header-demo-button {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }
}

@media (max-width: 992px) {

    .grid-3,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        width: 100%;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-company-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .site-header {
        height: 88px;
    }

    .site-header-inner {
        width: calc(100% - 26px);
        height: 88px;
    }

    .header-brand-shell {
        min-width: auto;
        height: 66px;
        padding: 6px 12px;
    }

    .header-logo {
        height: 54px;
        max-width: 245px;
    }

    .mobile-navigation {
        top: 88px;
        padding: 12px 14px 18px;
    }

    .container,
    .container-small,
    .container-narrow,
    .hero-inner,
    .cta-inner,
    .page-hero-inner,
    .footer-inner {
        width: min(100% - 32px, var(--container-width));
    }

    .footer-logo {
        height: 72px;
        max-width: 320px;
    }

    .section {
        padding: 75px 0;
    }

    .section-large {
        padding: 90px 0;
    }

    .hero,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .form-card {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .home-software-panel-body {
        grid-template-columns: 78px 1fr;
    }

    .home-panel-sidebar {
        padding: 20px 13px;
    }

    .home-panel-content {
        padding: 22px;
    }

    .home-panel-cards {
        grid-template-columns: 1fr;
    }

    .home-panel-card:nth-child(2),
    .home-panel-card:nth-child(3) {
        display: none;
    }

    .home-company-card {
        padding: 32px;
    }
}

@media (max-width: 580px) {

    .site-header-inner {
        width: calc(100% - 22px);
    }

    .header-brand-shell {
        padding: 5px 10px;
    }

    .header-logo {
        height: 50px;
        max-width: 220px;
    }

    .mobile-menu-button {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .footer-logo {
        height: 64px;
        max-width: 270px;
    }
}

@media (max-width: 480px) {

    body {
        font-size: 15px;
    }

    .site-header {
        height: 80px;
    }

    .site-header-inner {
        width: calc(100% - 20px);
        height: 80px;
    }

    .header-brand-shell {
        height: 60px;
        padding: 5px 9px;
        border-radius: 13px;
    }

    .header-logo {
        height: 48px;
        max-width: 205px;
    }

    .mobile-navigation {
        top: 80px;
        padding: 12px 12px 16px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 35px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .btn {
        padding: 0 18px;
    }

    .card-body {
        padding: 22px;
    }

    .pricing-card {
        padding: 28px;
    }

    .home-software-panel-body {
        min-height: 310px;
        grid-template-columns: 62px 1fr;
    }

    .home-panel-sidebar {
        padding: 16px 10px;
    }

    .home-panel-logo {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .home-panel-content {
        padding: 18px;
    }

    .home-panel-chart {
        padding-left: 12px;
        padding-right: 12px;
        gap: 7px;
    }
}

@media (max-width: 400px) {

    .header-logo {
        height: 44px;
        max-width: 185px;
    }

    .footer-logo {
        height: 58px;
        max-width: 235px;
    }
}

/* ============================================================
   HOME - PANEL SOFTWARE
   ============================================================ */

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-software-panel {
    width: 100%;
    max-width: 680px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.home-software-panel-header {
    height: 45px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.home-panel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.home-software-panel-body {
    min-height: 370px;
    display: grid;
    grid-template-columns: 105px 1fr;
}

.home-panel-sidebar {
    padding: 24px 18px;
    background: rgba(0, 15, 40, .42);
    border-right: 1px solid rgba(255, 255, 255, .06);
}

.home-panel-logo {
    width: 45px;
    height: 45px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #075FD6, #188CFF);
    color: white;
    font-size: 24px;
    font-weight: 900;
}

.home-panel-line {
    height: 9px;
    margin-bottom: 17px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
}

    .home-panel-line.short {
        width: 65%;
    }

    .home-panel-line.active {
        background: #188CFF;
    }

.home-panel-content {
    padding: 30px;
}

.home-panel-title {
    width: 38%;
    height: 17px;
    margin-bottom: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .22);
}

.home-panel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-panel-card {
    min-height: 95px;
    padding: 18px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .06);
}

    .home-panel-card span {
        width: 45%;
        height: 8px;
        display: block;
        margin-bottom: 17px;
        border-radius: 20px;
        background: rgba(255, 255, 255, .18);
    }

    .home-panel-card strong {
        width: 70%;
        height: 20px;
        display: block;
        border-radius: 20px;
        background: #188CFF;
    }

.home-panel-chart {
    height: 150px;
    margin-top: 25px;
    padding: 20px 22px 0;
    display: flex;
    align-items: flex-end;
    gap: 13px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
}

    .home-panel-chart span {
        flex: 1;
        min-height: 20px;
        border-radius: 5px 5px 0 0;
        background: linear-gradient(180deg, #188CFF, #075FD6);
    }

/* ============================================================
   HOME - EMPRESA
   ============================================================ */

.home-company-grid {
    align-items: center;
    gap: 70px;
}

.home-company-card {
    padding: 55px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 80% 20%, rgba(8, 124, 255, .18), transparent 35%), var(--aineder-night);
    box-shadow: var(--shadow-lg);
}

.home-company-number {
    width: 80px;
    height: 80px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #075FD6, #188CFF);
    color: white;
    font-size: 45px;
    font-weight: 900;
}

.home-company-card h3 {
    margin-bottom: 17px;
    color: white;
    font-size: 30px;
}

.home-company-card p {
    margin-bottom: 0;
    color: #B7C3D3;
}

/* ============================================================
   HOME - PRODUCTO DESTACADO PROFESIONAL
   ============================================================ */

.featured-product-shell {
    position: relative;
}

.featured-product-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr .85fr;
    border: 1px solid rgba(8, 124, 255, .10);
    border-radius: 26px;
    background: linear-gradient(135deg, #FFFFFF, #F8FBFF);
    box-shadow: 0 25px 60px rgba(0, 30, 77, .10);
}

    .featured-product-card::before {
        content: "";
        position: absolute;
        top: -140px;
        left: -140px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(8, 124, 255, .05);
        pointer-events: none;
    }

.featured-product-copy {
    position: relative;
    z-index: 2;
    padding: 52px;
}

.featured-product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.featured-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #178657;
    font-size: 12px;
    font-weight: 800;
}

    .featured-status::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #1FA66A;
        box-shadow: 0 0 0 5px rgba(31, 166, 106, .12);
    }

.featured-product-title {
    margin-bottom: 16px;
    color: var(--aineder-navy);
    font-size: clamp(32px, 3vw, 44px);
    letter-spacing: -1.5px;
}

.featured-product-description {
    max-width: 680px;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
}

.featured-product-points {
    margin: 28px 0 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
}

    .featured-product-points span {
        position: relative;
        padding-left: 28px;
        color: var(--text-primary);
        font-size: 14px;
        font-weight: 700;
    }

        .featured-product-points span::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 1px;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--aineder-blue-light);
            color: var(--aineder-blue);
            font-size: 11px;
            font-weight: 900;
        }

.featured-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.featured-product-visual {
    position: relative;
    min-height: 100%;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 82% 18%, rgba(24, 140, 255, .28), transparent 28%), radial-gradient(circle at 18% 88%, rgba(8, 124, 255, .14), transparent 28%), linear-gradient(145deg, #00112C, #001E4D 56%, #002D73);
}

.featured-product-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(8, 124, 255, .16);
    filter: blur(32px);
}

.featured-product-visual-card {
    position: relative;
    width: 100%;
    max-width: 340px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
}

.featured-product-visual-top {
    height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.featured-mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.featured-product-visual-body {
    padding: 28px 24px 24px;
}

.featured-product-brand-box {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #0A8CFF, #075FD6);
    color: white;
    box-shadow: 0 22px 44px rgba(8, 124, 255, .28);
    font-size: 56px;
    font-weight: 900;
}

.featured-product-brand-text strong {
    display: block;
    color: white;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 2px;
}

.featured-product-brand-text span {
    display: block;
    margin-top: 3px;
    color: #89C9FF;
    font-size: 18px;
    font-weight: 600;
}

.featured-product-mini-items {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.featured-mini-item {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
}

    .featured-mini-item small {
        display: block;
        margin-bottom: 4px;
        color: #9CB0C7;
        font-size: 11px;
    }

    .featured-mini-item strong {
        color: white;
        font-size: 15px;
    }


/* ============================================================
   PRODUCTOS - CATÁLOGO
   ============================================================ */

.products-catalog {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.catalog-product-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.35fr .7fr;
    border: 1px solid rgba(8, 124, 255, .10);
    border-radius: 26px;
    background: linear-gradient(135deg, #FFFFFF, #F8FBFF);
    box-shadow: 0 20px 55px rgba(0, 30, 77, .08);
}

.catalog-product-copy {
    padding: 54px;
}

.catalog-product-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.catalog-product-head h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 3vw, 46px);
    letter-spacing: -1.5px;
}

.catalog-product-description {
    max-width: 720px;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.8;
}

.catalog-product-features {
    margin: 30px 0 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
}

    .catalog-product-features span {
        position: relative;
        padding-left: 28px;
        color: var(--text-primary);
        font-size: 14px;
        font-weight: 700;
    }

        .catalog-product-features span::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 1px;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--aineder-blue-light);
            color: var(--aineder-blue);
            font-size: 11px;
            font-weight: 900;
        }

.catalog-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.catalog-product-side {
    position: relative;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 78% 18%, rgba(24, 140, 255, .30), transparent 28%), radial-gradient(circle at 20% 86%, rgba(8, 124, 255, .15), transparent 28%), linear-gradient(145deg, #00112C, #001E4D 56%, #002D73);
}

.catalog-product-side-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(8, 124, 255, .16);
    filter: blur(34px);
}

.catalog-side-panel {
    position: relative;
    width: 100%;
    max-width: 330px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
}

.catalog-side-panel-top {
    height: 42px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.catalog-side-panel-body {
    padding: 28px 24px 24px;
    text-align: left;
}

.catalog-side-logo {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #0A8CFF, #075FD6);
    color: white;
    box-shadow: 0 22px 44px rgba(8, 124, 255, .28);
    font-size: 56px;
    font-weight: 900;
}

.catalog-side-panel-body strong {
    display: block;
    color: white;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 2px;
}

.catalog-side-panel-body > span {
    display: block;
    margin-top: 3px;
    color: #89C9FF;
    font-size: 18px;
    font-weight: 600;
}

.catalog-side-divider {
    width: 62px;
    height: 2px;
    margin: 22px 0 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .18);
}

.catalog-side-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .catalog-side-info small {
        color: #A0B5CC;
        font-size: 12px;
        letter-spacing: .5px;
    }

.products-future-card {
    margin-top: 36px;
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 22px;
    border: 1px solid var(--border-light);
    border-radius: 22px;
    background: linear-gradient(135deg, #FFFFFF, #F5F9FF);
    box-shadow: var(--shadow-sm);
}

.products-future-card-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #075FD6, #188CFF);
    color: white;
    box-shadow: 0 18px 38px rgba(8, 124, 255, .20);
    font-size: 36px;
    font-weight: 800;
}

.products-future-card-content h3 {
    margin-bottom: 10px;
    font-size: 31px;
    letter-spacing: -1px;
}

.products-future-card-content p {
    margin-bottom: 0;
}


/* ============================================================
   HOVER
   ============================================================ */

.featured-product-card,
.catalog-product-card,
.products-future-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

    .featured-product-card:hover,
    .catalog-product-card:hover,
    .products-future-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 65px rgba(0, 30, 77, .13);
    }

    .featured-product-card:hover,
    .catalog-product-card:hover {
        border-color: rgba(8, 124, 255, .18);
    }


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {

    .featured-product-card,
    .catalog-product-card {
        grid-template-columns: 1fr;
    }

    .featured-product-visual,
    .catalog-product-side {
        min-height: 340px;
    }

    .products-future-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .featured-product-copy,
    .catalog-product-copy {
        padding: 34px;
    }

    .featured-product-points,
    .catalog-product-features {
        grid-template-columns: 1fr;
    }

    .featured-product-actions,
    .catalog-product-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .featured-product-actions .btn,
        .catalog-product-actions .btn {
            width: 100%;
        }

    .products-future-card-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {

    .featured-product-copy,
    .catalog-product-copy,
    .featured-product-visual,
    .catalog-product-side,
    .products-future-card {
        padding: 26px;
    }

    .featured-product-title,
    .catalog-product-head h2 {
        font-size: 30px;
    }

    .featured-product-brand-box,
    .catalog-side-logo {
        width: 78px;
        height: 78px;
        font-size: 46px;
    }
}
/* ============================================================
   LOGO A EN TARJETAS DE PRODUCTO
   ============================================================ */

.featured-product-brand-box,
.catalog-side-logo {
    overflow: hidden;
    padding: 10px;
}

.featured-product-brand-image,
.catalog-side-logo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
/* ============================================================
   PANTALLA DE CARGA AINEDER
   ============================================================ */

#app {
    min-height: 100vh;
}

.aineder-loading-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: radial-gradient(circle at 20% 15%, rgba(8, 124, 255, .08), transparent 24%), radial-gradient(circle at 80% 85%, rgba(8, 124, 255, .06), transparent 24%), linear-gradient(180deg, #F7F9FC, #EEF3F9);
}

.aineder-loading-card {
    width: 100%;
    max-width: 420px;
    padding: 38px 32px;
    text-align: center;
    border: 1px solid rgba(8, 124, 255, .10);
    border-radius: 24px;
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 25px 60px rgba(0, 30, 77, .10), inset 0 1px 0 rgba(255, 255, 255, .65);
    backdrop-filter: blur(10px);
}

.aineder-loading-logo-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 22px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(145deg, #011844, #03245f);
    box-shadow: 0 24px 50px rgba(1, 24, 68, .30), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.aineder-loading-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.aineder-loading-title {
    margin: 0 0 8px;
    color: var(--aineder-navy, #001E4D);
    font-size: 31px;
    font-weight: 900;
    letter-spacing: -1px;
}

.aineder-loading-subtitle {
    margin: 0 0 24px;
    color: #5E7088;
    font-size: 15px;
}

.aineder-loading-bar {
    position: relative;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #E5EDF8;
}

.aineder-loading-bar-fill {
    position: absolute;
    top: 0;
    left: -35%;
    width: 35%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #075FD6, #0A8CFF, #52B1FF);
    box-shadow: 0 0 14px rgba(8, 124, 255, .30);
    animation: ainederLoadingMove 1.25s ease-in-out infinite;
}

@keyframes ainederLoadingMove {
    0% {
        left: -35%;
    }

    100% {
        left: 100%;
    }
}


/* Oculta el loader por defecto de Blazor si aún existe en algún sitio */
.loading-progress,
.loading-progress-text {
    display: none !important;
}

@media (max-width: 480px) {

    .aineder-loading-card {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .aineder-loading-logo-wrap {
        width: 92px;
        height: 92px;
        border-radius: 22px;
    }

    .aineder-loading-title {
        font-size: 26px;
    }
}
/* ============================================================
   PÁGINAS LEGALES
   ============================================================ */

.legal-card {
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 26px;
    background: white;
    box-shadow: 0 22px 60px rgba(0, 30, 77, .08);
}

.legal-intro {
    padding: 50px;
    border-bottom: 1px solid var(--border-light);
    background: radial-gradient( circle at 90% 0%, rgba(8, 124, 255, .07), transparent 30% ), linear-gradient( 135deg, #FFFFFF, #F8FBFF );
}

    .legal-intro h2 {
        margin: 13px 0 18px;
        color: var(--aineder-navy);
        font-size: clamp(31px, 3vw, 42px);
        letter-spacing: -1.3px;
    }

    .legal-intro p {
        max-width: 790px;
        font-size: 16px;
        line-height: 1.8;
    }

.legal-section {
    padding: 42px 50px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 26px;
    border-bottom: 1px solid var(--border-light);
}

    .legal-section:last-of-type {
        border-bottom: 0;
    }

.legal-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--aineder-blue-light);
    color: var(--aineder-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .5px;
}

.legal-content h3 {
    margin: 5px 0 16px;
    color: var(--aineder-navy);
    font-size: 24px;
    letter-spacing: -.5px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

    .legal-content p:last-child {
        margin-bottom: 0;
    }

.legal-list {
    margin: 18px 0 24px;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

    .legal-list li {
        position: relative;
        padding-left: 27px;
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.65;
    }

        .legal-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 2px;
            width: 17px;
            height: 17px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--aineder-blue-light);
            color: var(--aineder-blue);
            font-size: 10px;
            font-weight: 900;
        }

.legal-data-box {
    margin: 20px 0;
    padding: 22px 24px;
    border: 1px solid rgba(8, 124, 255, .12);
    border-radius: 15px;
    background: #F7FAFE;
}

    .legal-data-box p {
        margin-bottom: 8px;
    }

        .legal-data-box p:last-child {
            margin-bottom: 0;
        }

    .legal-data-box strong {
        color: var(--aineder-navy);
    }

.legal-rights-grid {
    margin: 25px 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.legal-right-card {
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 15px;
    background: #FAFCFF;
}

    .legal-right-card strong {
        display: block;
        margin-bottom: 6px;
        color: var(--aineder-navy);
        font-size: 15px;
    }

    .legal-right-card span {
        color: var(--text-secondary);
        font-size: 13px;
        line-height: 1.6;
    }

.legal-external-link {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(8, 124, 255, .18);
    border-radius: 10px;
    background: var(--aineder-blue-light);
    color: var(--aineder-blue);
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

    .legal-external-link:hover {
        transform: translateY(-2px);
        border-color: rgba(8, 124, 255, .35);
        background: #E5F2FF;
    }

.legal-update {
    padding: 22px 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: var(--background-soft);
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 13px;
}

    .legal-update strong {
        color: var(--aineder-navy);
    }


/* ============================================================
   RESPONSIVE LEGAL
   ============================================================ */

@media (max-width: 768px) {

    .legal-intro {
        padding: 34px;
    }

    .legal-section {
        padding: 34px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .legal-rights-grid {
        grid-template-columns: 1fr;
    }

    .legal-update {
        padding: 20px 34px;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {

    .legal-intro,
    .legal-section {
        padding: 26px;
    }

    .legal-content h3 {
        font-size: 21px;
    }

    .legal-data-box {
        padding: 18px;
    }

    .legal-update {
        padding: 18px 26px;
    }
}

/* ============================================================
   SOLICITUD DE DEMOSTRACIÓN
   ============================================================ */

.form-control.valid.modified {
    border-color: rgba(31, 166, 106, .45);
}

.form-control.invalid {
    border-color: rgba(199, 53, 69, .65);
    box-shadow: 0 0 0 3px rgba(199, 53, 69, .06);
}

.contact-message strong {
    display: block;
    margin-bottom: 4px;
    color: inherit;
}

.checkbox-row a {
    color: var(--aineder-blue);
    font-weight: 700;
}

    .checkbox-row a:hover {
        text-decoration: underline;
    }

/* ============================================================
   PRODUCT DETAIL - HIGHLIGHTS
   ============================================================ */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-highlights-grid {
    margin-top: 10px;
}

.product-highlight-card {
    min-height: 100%;
}


/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing-section {
    background: radial-gradient(circle at top right, rgba(8, 124, 255, .05), transparent 28%), linear-gradient(180deg, #F8FAFD 0%, #F4F7FB 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(0, 30, 77, .06);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(0, 30, 77, .10);
        border-color: rgba(8, 124, 255, .18);
    }

.pricing-card-featured {
    border: 2px solid #6C63FF;
    box-shadow: 0 24px 55px rgba(108, 99, 255, .14);
}

.pricing-badge {
    padding: 14px 20px;
    text-align: center;
    background: linear-gradient(90deg, #6C63FF 0%, #5A63F2 100%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.2px;
}

.pricing-card-top {
    padding: 28px 28px 22px;
}

.pricing-plan-icon {
    margin-bottom: 14px;
    color: var(--aineder-navy);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.pricing-plan-name {
    margin: 0 0 18px;
    color: var(--aineder-navy);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px;
}

.pricing-price-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.pricing-price {
    color: var(--aineder-navy);
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.pricing-price-note {
    margin-bottom: 7px;
    color: var(--text-secondary);
    font-size: 20px;
    font-weight: 500;
}

.pricing-minimum {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
}

.pricing-description {
    min-height: 92px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.pricing-button {
    margin: 0 28px;
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #223568;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 14px 30px rgba(0, 30, 77, .14);
}

    .pricing-button:hover {
        transform: translateY(-2px);
        background: var(--aineder-blue);
        color: #FFFFFF;
    }

.pricing-details {
    margin-top: 22px;
    border-top: 1px solid var(--border-light);
}

    .pricing-details summary {
        list-style: none;
        cursor: pointer;
        padding: 22px 28px;
        color: var(--aineder-navy);
        font-size: 16px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: color .2s ease;
    }

        .pricing-details summary::-webkit-details-marker {
            display: none;
        }

        .pricing-details summary::after {
            content: "⌄";
            font-size: 18px;
            color: var(--aineder-blue);
            transition: transform .2s ease;
        }

    .pricing-details[open] summary::after {
        transform: rotate(180deg);
    }

.pricing-feature-list {
    margin: 0;
    padding: 0 28px 26px;
    list-style: none;
    display: grid;
    gap: 12px;
}

    .pricing-feature-list li {
        position: relative;
        padding-left: 28px;
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.6;
    }

        .pricing-feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 1px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--aineder-blue-light);
            color: var(--aineder-blue);
            font-size: 11px;
            font-weight: 900;
        }


/* ============================================================
   RESPONSIVE PRODUCT DETAIL / PRICING
   ============================================================ */

@media (max-width: 1100px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-description {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .pricing-card-top {
        padding: 24px 22px 20px;
    }

    .pricing-button {
        margin: 0 22px;
    }

    .pricing-details summary {
        padding: 20px 22px;
    }

    .pricing-feature-list {
        padding: 0 22px 22px;
    }

    .pricing-price {
        font-size: 46px;
    }

    .pricing-price-note {
        font-size: 17px;
    }
}

/* ============================================================
   AINEDER FICHAJES - TARIFAS PREMIUM
   ============================================================ */

.pricing-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 8% 8%, rgba(8, 124, 255, .08), transparent 27% ), radial-gradient( circle at 92% 80%, rgba(0, 30, 77, .06), transparent 30% ), linear-gradient( 180deg, #F8FAFD 0%, #F2F6FB 100% );
}

    .pricing-section::before {
        content: "";
        position: absolute;
        top: -220px;
        left: 50%;
        width: 620px;
        height: 620px;
        transform: translateX(-50%);
        border-radius: 50%;
        background: radial-gradient( circle, rgba(8, 124, 255, .07), transparent 68% );
        pointer-events: none;
    }

    .pricing-section .container {
        position: relative;
        z-index: 1;
    }

.pricing-section-header {
    margin-bottom: 54px;
}


/* GRID */

.aineder-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}


/* ============================================================
   TARJETA
   ============================================================ */

.aineder-price-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 30, 77, .09);
    border-radius: 24px;
    background: linear-gradient( 180deg, #FFFFFF 0%, #FDFEFF 100% );
    box-shadow: 0 8px 20px rgba(0, 30, 77, .04), 0 24px 55px rgba(0, 30, 77, .06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

    .aineder-price-card:hover {
        transform: translateY(-7px);
        border-color: rgba(8, 124, 255, .20);
        box-shadow: 0 12px 25px rgba(0, 30, 77, .06), 0 30px 65px rgba(0, 30, 77, .11);
    }


/* BARRA SUPERIOR */

.aineder-price-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient( 90deg, var(--aineder-navy), var(--aineder-blue) );
}


/* CONTENIDO */

.aineder-price-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px;
}


/* ============================================================
   CABECERA PLAN
   ============================================================ */

.aineder-price-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.aineder-plan-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 124, 255, .14);
    border-radius: 15px;
    background: linear-gradient( 145deg, #F3F8FF, #E8F3FF );
    color: var(--aineder-blue);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

    .aineder-plan-icon span {
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1px;
    }

.aineder-plan-icon-professional {
    background: linear-gradient( 145deg, var(--aineder-navy), #0A397A );
    color: #FFFFFF;
    border-color: transparent;
}

.aineder-plan-heading {
    min-width: 0;
}

.aineder-plan-label {
    display: block;
    margin-bottom: 4px;
    color: var(--aineder-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.25px;
}

.aineder-plan-heading h3 {
    margin: 0;
    color: var(--aineder-navy);
    font-size: 25px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.7px;
}


/* DESCRIPCIÓN */

.aineder-plan-intro {
    min-height: 80px;
    margin: 0 0 25px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.75;
}


/* ============================================================
   PRECIO
   ============================================================ */

.aineder-price-block {
    min-height: 88px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 13px;
}

.aineder-price-main {
    display: flex;
    align-items: flex-start;
    color: var(--aineder-navy);
}

.aineder-price-number {
    font-size: 60px;
    line-height: .9;
    font-weight: 950;
    letter-spacing: -3px;
}

.aineder-price-currency {
    margin: 3px 0 0 5px;
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
}

.aineder-price-period {
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .aineder-price-period strong {
        color: var(--aineder-navy);
        font-size: 12px;
        font-weight: 800;
    }

    .aineder-price-period span {
        color: var(--text-muted);
        font-size: 12px;
        font-weight: 600;
    }


/* SIN MÍNIMO */

.aineder-price-no-minimum {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #53647A;
    font-size: 12px;
    font-weight: 700;
}

.aineder-price-check {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(31, 166, 106, .10);
    color: #15885A;
    font-size: 11px;
    font-weight: 900;
}


/* ============================================================
   IDEAL PARA
   ============================================================ */

.aineder-plan-for {
    margin-bottom: 25px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid #E7EDF5;
    border-radius: 12px;
    background: #F8FAFD;
}

    .aineder-plan-for span {
        color: var(--text-muted);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .7px;
        text-transform: uppercase;
    }

    .aineder-plan-for strong {
        color: var(--aineder-navy);
        font-size: 13px;
        font-weight: 800;
    }


/* ============================================================
   BOTÓN
   ============================================================ */

.aineder-price-button {
    min-height: 53px;
    margin-top: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid var(--aineder-navy);
    border-radius: 11px;
    background: var(--aineder-navy);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(0, 30, 77, .14);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .aineder-price-button span {
        font-size: 18px;
        transition: transform .2s ease;
    }

    .aineder-price-button:hover {
        color: #FFFFFF;
        transform: translateY(-2px);
        border-color: var(--aineder-blue);
        background: var(--aineder-blue);
        box-shadow: 0 16px 30px rgba(8, 124, 255, .20);
    }

        .aineder-price-button:hover span {
            transform: translateX(3px);
        }


/* ============================================================
   DESPLEGABLE
   ============================================================ */

.aineder-plan-details {
    margin-top: 20px;
    border-top: 1px solid #E8EDF4;
}

    .aineder-plan-details summary {
        min-height: 58px;
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--aineder-navy);
        font-size: 13px;
        font-weight: 850;
        user-select: none;
    }

        .aineder-plan-details summary::-webkit-details-marker {
            display: none;
        }

.aineder-details-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--aineder-blue-light);
    color: var(--aineder-blue);
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    transition: transform .22s ease, background .22s ease;
}

.aineder-plan-details[open] .aineder-details-icon {
    transform: rotate(45deg);
    background: #DFEEFF;
}


/* LISTA */

.aineder-plan-features {
    padding: 3px 0 5px;
    display: grid;
    gap: 12px;
}

.aineder-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #53647A;
    font-size: 13px;
    line-height: 1.55;
}

    .aineder-feature-item > span {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
        margin-top: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--aineder-blue-light);
        color: var(--aineder-blue);
        font-size: 10px;
        font-weight: 900;
    }

.aineder-feature-highlight {
    margin-bottom: 2px;
    padding: 10px 12px;
    border-left: 3px solid var(--aineder-blue);
    border-radius: 0 8px 8px 0;
    background: #F4F9FF;
    color: var(--aineder-navy);
    font-size: 12px;
    font-weight: 800;
}

.aineder-feature-api {
    color: var(--aineder-navy);
}


/* ============================================================
   TARJETA DESTACADA
   ============================================================ */

.aineder-price-card-featured {
    border-color: rgba(8, 124, 255, .45);
    box-shadow: 0 12px 25px rgba(8, 124, 255, .07), 0 30px 70px rgba(0, 30, 77, .12);
}

    .aineder-price-card-featured .aineder-price-accent {
        height: 5px;
        background: linear-gradient( 90deg, #075FD6, #0A8CFF, #55B6FF );
    }

.aineder-featured-label {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient( 90deg, #001E4D, #043B85 );
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
}

    .aineder-featured-label span {
        color: #7FC5FF;
    }

.aineder-price-card-featured .aineder-plan-icon {
    background: linear-gradient( 145deg, #087CFF, #075FD6 );
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 9px 20px rgba(8, 124, 255, .18);
}

.aineder-price-button-featured {
    border-color: var(--aineder-blue);
    background: linear-gradient( 90deg, #076AD8, #087CFF );
}


/* ============================================================
   PIE DE TARIFAS
   ============================================================ */

.aineder-pricing-footer {
    margin-top: 28px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border: 1px solid rgba(0, 30, 77, .07);
    border-radius: 18px;
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 15px 38px rgba(0, 30, 77, .04);
    backdrop-filter: blur(8px);
}

.aineder-pricing-footer-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.aineder-pricing-footer-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--aineder-blue-light);
    color: var(--aineder-blue);
    font-size: 14px;
    font-weight: 900;
}

.aineder-pricing-footer-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.aineder-pricing-footer-item strong {
    color: var(--aineder-navy);
    font-size: 12px;
}

.aineder-pricing-footer-item div > span {
    color: var(--text-secondary);
    font-size: 11px;
    line-height: 1.45;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .aineder-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .aineder-plan-intro {
        min-height: 0;
    }

    .aineder-pricing-footer {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {

    .pricing-section-header {
        margin-bottom: 36px;
    }

    .aineder-price-content {
        padding: 25px 22px;
    }

    .aineder-price-number {
        font-size: 52px;
    }

    .aineder-price-block {
        gap: 10px;
    }

    .aineder-pricing-footer {
        padding: 20px;
    }
}


@media (max-width: 480px) {

    .aineder-price-card {
        border-radius: 20px;
    }

    .aineder-price-header {
        align-items: flex-start;
    }

    .aineder-price-block {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
    }

    .aineder-price-period {
        padding-bottom: 0;
    }

    .aineder-price-number {
        font-size: 50px;
    }

    .aineder-price-content {
        padding: 23px 19px;
    }
}