/* =========================================================
   IDONMS · DIAGNÓSTICO WEB GRATUITO
   CSS COMPLETO
========================================================= */


/* =========================================================
   01. VARIABLES
========================================================= */

:root {

    /* Brand */
    --color-primary: #9dc44f;
    --color-primary-dark: #82aa35;
    --color-primary-light: #b8d878;

    --color-navy: #012970;
    --color-navy-dark: #071d3d;
    --color-blue: #073961;

    /* Neutral */
    --color-white: #ffffff;
    --color-black: #101820;

    --color-text: #243447;
    --color-text-light: #667085;
    --color-text-muted: #8993a4;

    --color-background: #f7f9fc;
    --color-background-alt: #eef3f8;
    --color-border: #e3e8ef;

    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --container: 1180px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 4px 16px rgba(1, 41, 112, 0.06);
    --shadow-md: 0 15px 40px rgba(1, 41, 112, 0.10);
    --shadow-lg: 0 25px 70px rgba(1, 41, 112, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.35s ease;
    --transition-slow: 0.6s ease;
}


/* =========================================================
   02. RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;

    color: var(--color-text);
    background: var(--color-white);

    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

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

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}


/* =========================================================
   03. GENERAL
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

section {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 24px;
    height: 2px;

    background: currentColor;
}

.eyebrow-dark {
    color: #9dc44f;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2,
.method-heading h2,
.trust-heading h2 {
    margin-bottom: 20px;

    color: var(--color-navy-dark);

    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p,
.method-heading p,
.trust-heading p {
    max-width: 720px;
    margin-inline: auto;

    color: var(--color-text-light);
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   04. HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);

    border-bottom: 1px solid rgba(1, 41, 112, 0.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-idonms {
    color: var(--color-navy);

    font-size: 23px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.brand-tagline {
    padding-left: 14px;

    border-left: 1px solid var(--color-border);

    color: var(--color-text-muted);

    font-size: 12px;
    font-weight: 600;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 21px;

    border: 1px solid rgba(157, 196, 79, 0.4);
    border-radius: 999px;

    color: var(--color-navy);
    background: rgba(157, 196, 79, 0.10);

    font-size: 13px;
    font-weight: 750;

    transition:
        background var(--transition),
        transform var(--transition),
        border-color var(--transition);
}

.header-cta:hover {
    background: rgba(157, 196, 79, 0.18);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}


/* =========================================================
   05. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 56px;
    padding: 0 26px;

    border: 0;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.btn span {
    font-size: 19px;
    line-height: 1;

    transition: transform var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    color: var(--color-navy-dark);
    background: var(--color-primary);

    box-shadow:
        0 12px 28px rgba(157, 196, 79, 0.28);
}

.btn-primary:hover {
    background: var(--color-primary-light);

    box-shadow:
        0 18px 38px rgba(157, 196, 79, 0.35);
}

.btn-secondary {
    color: var(--color-navy);
    background: var(--color-white);

    border: 1px solid rgba(1, 41, 112, 0.12);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-sm);
}

.btn-light {
    color: var(--color-navy-dark);
    background: var(--color-white);

    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: #f7faf4;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}


/* =========================================================
   06. HERO
========================================================= */

.hero {
    min-height: 720px;

    display: flex;
    align-items: center;

    position: relative;

    padding: 110px 0 100px;

    color: var(--color-white);

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(157, 196, 79, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061b36 0%,
            #012970 58%,
            #073961 100%
        );

    overflow: hidden;
}

.hero-background::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.2) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.2) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 80%
        );
}

.hero-background::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: -170px;

    border: 1px solid rgba(157, 196, 79, 0.22);
    border-radius: 50%;

    box-shadow:
        0 0 0 80px rgba(157, 196, 79, 0.025),
        0 0 0 160px rgba(157, 196, 79, 0.018);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);

    align-items: center;

    gap: 80px;
}

.hero-content {
    max-width: 690px;
}

.hero .eyebrow {
    color: #9dc44f;
}

.hero h1 {
    margin-bottom: 27px;

    color: var(--color-white);

    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;

    letter-spacing: -0.045em;
}

.hero h1 span {
    color: #9dc44f;
}

.hero-lead {
    max-width: 620px;

    margin-bottom: 36px;

    color: rgba(255, 255, 255, 0.76);

    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 45px;
}

.hero .btn-secondary {
    color: var(--color-white);

    background: rgba(255, 255, 255, 0.07);

    border-color: rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-trust {
    display: flex;
    align-items: center;

    gap: 25px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--color-primary-light);

    font-size: 22px;
    line-height: 1.2;
}

.trust-item span {
    max-width: 150px;

    margin-top: 5px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
    line-height: 1.45;
}

.trust-divider {
    width: 1px;
    height: 38px;

    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   07. HERO VISUAL
========================================================= */

.hero-visual {
    display: flex;
    justify-content: center;
}

.diagnostic-card {
    position: relative;

    width: min(100%, 470px);
    min-height: 470px;

    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.035)
        );

    box-shadow:
        0 35px 80px rgba(0,0,0,0.25);

    backdrop-filter: blur(22px);
}

.diagnostic-card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(157, 196, 79, 0.18),
            transparent 38%
        );

    pointer-events: none;
}

.diagnostic-card-top,
.diagnostic-card-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: rgba(255,255,255,0.62);

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.status-dot {
    width: 8px;
    height: 8px;

    margin-right: auto;

    border-radius: 50%;

    background: var(--color-primary);

    box-shadow:
        0 0 0 5px rgba(157,196,79,0.12);
}

.diagnostic-card-top span:last-child {
    margin-left: auto;
}

.diagnostic-card-bottom {
    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,0.09);
}

.arrow-small {
    color: var(--color-primary);
    font-size: 17px;
}

.diagnostic-orbit {
    position: relative;

    min-height: 385px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;

    border: 1px solid rgba(157,196,79,0.22);

    border-radius: 50%;
}

.orbit-one {
    width: 250px;
    height: 250px;
}

.orbit-two {
    width: 340px;
    height: 340px;

    border-color: rgba(255,255,255,0.08);
}

.diagnostic-core {
    position: relative;
    z-index: 4;

    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(157,196,79,0.45);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(157,196,79,0.20),
            rgba(1,41,112,0.75)
        );

    box-shadow:
        0 0 60px rgba(157,196,79,0.13),
        inset 0 0 40px rgba(255,255,255,0.04);
}

.diagnostic-core span {
    color: rgba(255,255,255,0.6);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.diagnostic-core strong {
    color: var(--color-white);

    font-size: 39px;
    line-height: 1;
}

.orbit-node {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 85px;
    height: 85px;

    padding: 10px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;

    color: rgba(255,255,255,0.7);

    background: rgba(3,25,55,0.76);

    font-size: 8px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.07em;

    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.node-one {
    top: 31px;
    left: 50%;

    transform: translateX(-50%);
}

.node-two {
    right: 9px;
    top: 50%;

    transform: translateY(-50%);
}

.node-three {
    bottom: 31px;
    left: 50%;

    transform: translateX(-50%);
}

.node-four {
    left: 9px;
    top: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   08. PROBLEM
========================================================= */

.problem-section {
    padding: 120px 0;

    background: var(--color-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 80px;
}

.problem-number {
    display: flex;
    align-items: baseline;
    justify-content: center;

    color: var(--color-navy);

    line-height: 0.8;
}

.problem-number span {
    font-size: clamp(130px, 18vw, 220px);
    font-weight: 900;
    letter-spacing: -0.08em;
}

.problem-number small {
    color: var(--color-primary);

    font-size: 60px;
    font-weight: 900;
}

.problem-content {
    max-width: 650px;
}

.problem-content h2 {
    margin-bottom: 24px;

    color: var(--color-navy-dark);

    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.08;

    letter-spacing: -0.04em;
}

.problem-content p {
    color: var(--color-text-light);

    font-size: 17px;
    line-height: 1.75;
}

.problem-content strong {
    color: var(--color-navy);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 12px;

    color: #9dc44f;

    font-size: 17px;
    font-weight: 800;

    border-bottom: 1px solid rgba(1,41,112,0.2);

    transition:
        gap var(--transition),
        border-color var(--transition);
}

.text-link:hover {
    gap: 15px;
    border-color: var(--color-primary);
}


/* =========================================================
   09. BENEFITS
========================================================= */

.benefits-section {
    padding: 120px 0;

    background: var(--color-background);
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.benefit-card {
    position: relative;

    min-height: 255px;

    padding: 29px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    background: var(--color-white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.benefit-card:hover {
    transform: translateY(-7px);

    border-color: rgba(157,196,79,0.5);

    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 14px;

    color: var(--color-navy);

    background: rgba(157,196,79,0.13);
}

.card-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    margin-bottom: 10px;

    color: var(--color-navy-dark);

    font-size: 18px;
    line-height: 1.3;
}

.benefit-card p {
    margin: 0;

    color: var(--color-text-light);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   10. CTA STRIP
========================================================= */

.cta-strip {
    padding: 70px 0;

    color: var(--color-white);

    background:
        linear-gradient(
            105deg,
            var(--color-navy-dark),
            var(--color-navy)
        );
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.cta-strip-content {
    max-width: 700px;
}

.cta-strip .eyebrow {
    color: var(--color-primary-light);
}

.cta-strip h2 {
    margin-bottom: 12px;

    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.cta-strip p {
    margin: 0;

    color: rgba(255,255,255,0.63);
}


/* =========================================================
   11. COMMERCIAL
========================================================= */

.commercial-section {
    padding: 130px 0;

    background: var(--color-white);
}

.commercial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;
}

.commercial-content {
    max-width: 590px;
}

.commercial-content h2 {
    margin-bottom: 25px;

    color: var(--color-navy-dark);

    font-size: clamp(34px, 4vw, 53px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.commercial-content > p {
    color: var(--color-text-light);

    font-size: 17px;
    line-height: 1.75;
}

.commercial-visual {
    position: relative;

    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-window {
    width: min(100%, 500px);

    border: 1px solid var(--color-border);
    border-radius: 18px;

    background: var(--color-white);

    box-shadow: var(--shadow-lg);

    transform: perspective(1000px) rotateY(7deg) rotateX(2deg);
}

.browser-top {
    display: flex;
    align-items: center;

    gap: 20px;

    height: 48px;
    padding: 0 17px;

    border-bottom: 1px solid var(--color-border);

    background: #f8fafc;

    border-radius: 18px 18px 0 0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ccd4df;
}

.browser-address {
    flex: 1;

    height: 27px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    border-radius: 6px;

    color: var(--color-text-muted);

    background: var(--color-white);

    font-size: 9px;
}

.browser-content {
    min-height: 350px;

    padding: 45px 35px;
}

.browser-line {
    width: 75%;
    height: 11px;

    margin-bottom: 12px;

    border-radius: 99px;

    background: #e8edf3;
}

.browser-line.large {
    width: 88%;
    height: 27px;

    background: rgba(1,41,112,0.12);
}

.browser-line.short {
    width: 53%;
}

.browser-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 45px;
}

.browser-panels span {
    height: 110px;

    border: 1px solid #e8edf3;
    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            #f8fafc,
            #eef3f7
        );
}

.floating-badge {
    position: absolute;

    right: 0;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 13px;

    max-width: 260px;

    padding: 16px 18px;

    border: 1px solid rgba(157,196,79,0.3);
    border-radius: 14px;

    background: rgba(255,255,255,0.95);

    box-shadow: var(--shadow-md);

    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    color: var(--color-navy);

    background: rgba(157,196,79,0.18);

    font-weight: 900;
}

.floating-badge strong {
    display: block;

    color: var(--color-navy-dark);

    font-size: 12px;
}

.floating-badge small {
    display: block;

    margin-top: 2px;

    color: var(--color-text-muted);

    font-size: 10px;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 30px;
    padding: 22px;

    border-left: 3px solid var(--color-primary);
    border-radius: 0 14px 14px 0;

    background: var(--color-background);
}

.highlight-number {
    flex: 0 0 auto;

    color: var(--color-navy);

    font-size: 31px;
    font-weight: 900;
}

.highlight-box strong {
    display: block;

    color: var(--color-navy-dark);

    font-size: 14px;
}

.highlight-box p {
    margin: 3px 0 0;

    color: var(--color-text-light);

    font-size: 13px;
}


/* =========================================================
   12. METHOD
========================================================= */

.method-section {
    padding: 130px 0;

    color: var(--color-white);

    background:
        radial-gradient(
            circle at center,
            rgba(157,196,79,0.08),
            transparent 35%
        ),
        var(--color-navy-dark);

    overflow: hidden;
}

.method-heading {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.method-heading .eyebrow {
    color: var(--color-primary-light);
}

.method-heading h2 {
    color: var(--color-white);
}

.method-heading p {
    color: rgba(255,255,255,0.62);
}

.method-heading strong {
    color: var(--color-primary-light);
}

.method-system {
    position: relative;

    width: min(100%, 780px);
    min-height: 500px;

    margin: 80px auto 50px;
}

.method-system::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 390px;
    height: 390px;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(157,196,79,0.16);
    border-radius: 50%;
}

.method-system::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 260px;
    height: 260px;

    transform: translate(-50%, -50%);

    border: 1px dashed rgba(255,255,255,0.11);
    border-radius: 50%;
}

.method-center {
    position: absolute;
    z-index: 4;

    left: 50%;
    top: 50%;

    width: 180px;
    height: 180px;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(157,196,79,0.4);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #123f66,
            #061b36
        );

    box-shadow:
        0 0 80px rgba(157,196,79,0.10);
}

.method-center span {
    color: rgba(255,255,255,0.5);

    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.method-center strong {
    color: var(--color-primary-light);

    font-size: 35px;
    line-height: 1;
}

.method-center small {
    margin-top: 8px;

    color: rgba(255,255,255,0.45);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.method-item {
    position: absolute;
    z-index: 5;

    width: 190px;
    min-height: 100px;

    padding: 17px;

    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 15px;

    background: rgba(255,255,255,0.045);

    backdrop-filter: blur(10px);

    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.method-item::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--color-primary);

    box-shadow: 0 0 0 5px rgba(157,196,79,0.10);
}

.method-number {
    display: block;

    margin-bottom: 6px;

    color: var(--color-primary);

    font-size: 16px;
    font-weight: 800;
}

.method-item strong {
    display: block;

    color: var(--color-white);

    font-size: 20px;
}

.method-item small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,0.45);

    font-size: 14px;
}

.method-item-1 {
    left: 0;
    top: 65px;
}

.method-item-1::after {
    right: -5px;
    top: 50%;

    transform: translateY(-50%);
}

.method-item-2 {
    right: 0;
    top: 65px;
}

.method-item-2::after {
    left: -5px;
    top: 50%;

    transform: translateY(-50%);
}

.method-item-3 {
    left: 0;
    bottom: 65px;
}

.method-item-3::after {
    right: -5px;
    top: 50%;

    transform: translateY(-50%);
}

.method-item-4 {
    right: 0;
    bottom: 65px;
}

.method-item-4::after {
    left: -5px;
    top: 50%;

    transform: translateY(-50%);
}

.method-note {
    width: min(100%, 700px);

    margin: 0 auto;

    padding: 20px 25px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 13px;

    background: rgba(255,255,255,0.035);

    text-align: center;
}

.method-note p {
    margin: 0;

    color: rgba(255,255,255,0.55);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   13. PROCESS
========================================================= */

.process-section {
    padding: 130px 0;

    background: var(--color-background);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.process-step {
    position: relative;

    padding: 35px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    background: var(--color-white);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: block;

    margin-bottom: 25px;

    color: var(--color-primary);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.step-line {
    width: 40px;
    height: 3px;

    margin-bottom: 25px;

    border-radius: 99px;

    background: var(--color-primary);
}

.process-step h3 {
    margin-bottom: 10px;

    color: var(--color-navy-dark);

    font-size: 20px;
}

.process-step p {
    margin: 0;

    color: var(--color-text-light);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   14. FORM SECTION
========================================================= */

.form-section {
    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #f7f9fc,
            #edf3f7
        );
}

.form-grid {
    display: grid;

    grid-template-columns: 0.78fr 1.22fr;

    align-items: start;

    gap: 80px;
}

.form-intro {
    position: sticky;
    top: 110px;

    max-width: 500px;
}

.form-intro h2 {
    margin-bottom: 23px;

    color: var(--color-navy-dark);

    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.08;

    letter-spacing: -0.04em;
}

.form-intro > p {
    color: var(--color-text-light);

    font-size: 17px;
    line-height: 1.75;
}

.form-benefits {
    display: grid;

    gap: 13px;

    margin-top: 30px;
}

.form-benefit {
    display: flex;
    align-items: center;

    gap: 12px;
}

.form-benefit span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    color: var(--color-navy);

    background: rgba(157,196,79,0.18);

    font-size: 12px;
    font-weight: 900;
}

.form-benefit p {
    margin: 0;

    color: var(--color-text);

    font-size: 13px;
    font-weight: 650;
}

.form-wrapper {
    padding: 38px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);

    background: var(--color-white);

    box-shadow: var(--shadow-lg);
}

.diagnostic-form {
    width: 100%;
}

.required-note {
    margin-bottom: 25px;

    color: var(--color-text-muted);

    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 17px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
/*    display: block;
*/
    margin-bottom: 7px;

    color: var(--color-navy-dark);

    font-size: 14px;
    font-weight: 750;
}

.form-field label span {
    color: #d9534f;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #dce2e9;
    border-radius: 9px;

    outline: none;

    color: var(--color-text);

    background: #fbfcfd;

    font-size: 13px;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

.form-field input {
    height: 48px;
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a4adba;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--color-primary);

    background: var(--color-white);

    box-shadow:
        0 0 0 4px rgba(157,196,79,0.12);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.radio-option {
    display: flex !important;
    align-items: center;

    gap: 9px;

    margin: 0 !important;
    padding: 13px 15px;

    border: 1px solid #dce2e9;
    border-radius: 9px;

    color: var(--color-text) !important;

    background: #fbfcfd;

    cursor: pointer;

    transition:
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.radio-option:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(157,196,79,0.07);
}

.radio-option input {
    width: auto;
    height: auto;

    accent-color: var(--color-primary);
}

.radio-option span {
    color: var(--color-text) !important;

    font-size: 12px;
    font-weight: 600;
}

.conditional-field {
    overflow: hidden;

    transition:
        opacity var(--transition),
        transform var(--transition);
}

.conditional-field[hidden] {
    display: none;
}

.form-field small {
    display: block;

    margin-top: 5px;

    color: var(--color-text-muted);

    font-size: 14px;
}

.privacy-box {
    align-items: flex-start;

    gap: 10px;

    margin: 20px 0 20px;
    padding: 14px;

    border-radius: 9px;

    background: #f7f9fb;
}

.privacy-icon {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    color: var(--color-navy);

    background: rgba(157,196,79,0.17);

    font-size: 10px;
    font-weight: 900;
}

.privacy-box p {
    margin: 0;

    color: var(--color-text-muted);

    font-size: 14px;
    line-height: 1.55;
}

.form-disclaimer {
    margin: 12px 0 0;

    color: var(--color-text-muted);

    font-size: 14px;
    text-align: center;
}


/* =========================================================
   15. NO WEB
========================================================= */

.no-web-section {
    padding: 70px 0;

    background: var(--color-white);
}

.no-web-inner {
    display: flex;
    align-items: center;

    gap: 30px;

    padding: 35px 40px;

    border: 1px solid rgba(157,196,79,0.35);
    border-radius: var(--radius-md);

    background:
        linear-gradient(
            110deg,
            rgba(157,196,79,0.08),
            rgba(1,41,112,0.025)
        );
}

.no-web-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 16px;

    color: var(--color-navy);

    background: rgba(157,196,79,0.16);
}

.no-web-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.no-web-content h2 {
    margin-bottom: 7px;

    color: var(--color-navy-dark);

    font-size: 25px;
}

.no-web-content p {
    max-width: 760px;

    margin: 0;

    color: var(--color-text-light);

    font-size: 14px;
}


/* =========================================================
   16. TRUST
========================================================= */

.trust-section {
    padding: 120px 0;

}

.trust-heading {
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 60px;
}

.trust-stat {
    padding: 40px 25px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    background: var(--color-white);

    text-align: center;

    box-shadow: var(--shadow-sm);
}

.trust-stat strong {
    display: block;

    color: var(--color-navy);

    font-size: clamp(38px, 5vw, 55px);
    line-height: 1;

    letter-spacing: -0.05em;
}

.trust-stat span {
    display: block;

    max-width: 190px;

    margin: 13px auto 0;

    color: var(--color-text-light);

    font-size: 14px;
    line-height: 1.5;
}

.trust-description {
    max-width: 850px;

    margin: 45px auto 0;

    padding: 27px 32px;

    border-left: 3px solid var(--color-primary);
    border-radius: 0 12px 12px 0;

    background: var(--color-white);
}

.trust-description p {
    margin: 0;

    color: var(--color-text-light);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   17. QUOTE
========================================================= */

.quote-section {
    padding-top: 120px;
	padding-bottom: 120px;
    background:
        linear-gradient(
            135deg,
            #f9fbfd,
            #edf3f8
        );
}

.quote-box {
    max-width: 900px;

    margin: auto;

    text-align: center;
}

.quote-mark {
    display: block;

    height: 50px;

    color: var(--color-primary);

    font-family: Georgia, serif;

    font-size: 100px;
    line-height: 0.8;
}

.quote-box blockquote {
    margin: 20px auto 35px;

    color: var(--color-navy-dark);

    font-size: clamp(28px, 4vw, 47px);
    line-height: 1.2;

    font-weight: 750;
    letter-spacing: -0.035em;
}


/* =========================================================
   18. FOOTER
========================================================= */

.site-footer {
    padding: 65px 0 25px;

    color: rgba(255,255,255,0.65);

    background: #06172d;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 0.7fr 0.8fr;

    gap: 70px;

    padding-bottom: 50px;
}

.footer-logo {
    display: block;

    margin-bottom: 15px;

    color: var(--color-white);

    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.footer-brand p {
    max-width: 380px;

    margin-bottom: 15px;

    font-size: 14px;
    line-height: 1.7;
}

.footer-brand a {
    color: var(--color-primary-light);

    font-size: 12px;

    transition: color var(--transition-fast);
}

.footer-brand a:hover {
    color: var(--color-white);
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer-column h3 {
    margin-bottom: 8px;

    color: var(--color-white);

    font-size: 16px;
}

.footer-column a,
.footer-column p {
    margin: 0;

    color: rgba(255,255,255,0.48);

    font-size: 14px;
    line-height: 1.7;
}

.footer-column a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 30px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    max-width: 600px;

    margin: 0;

    color: rgba(255,255,255,0.5);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   19. FADE UP ANIMATIONS
========================================================= */

.fade-up {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.fade-up.is-visible {
    opacity: 1;

    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}


/* =========================================================
   20. ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 3px solid rgba(157,196,79,0.6);
    outline-offset: 3px;
}


/* =========================================================
   21. TABLET
========================================================= */

@media (max-width: 1050px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .hero-content {
        max-width: 760px;
        margin-inline: auto;

        text-align: center;
    }

    .hero .eyebrow {
        justify-content: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin-inline: auto;
    }

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

    .commercial-grid {
        gap: 60px;
    }

    .form-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .form-intro {
        position: static;

        max-width: 760px;
    }

    .trust-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   22. MOBILE
========================================================= */

@media (max-width: 720px) {

    html {
        scroll-padding-top: 70px;
    }

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }


    /* Header */

    .header-inner {
        min-height: 66px;
    }

    .brand-tagline {
        display: none;
    }

    .brand-idonms {
        font-size: 20px;
    }

    .header-cta {
        min-height: 38px;
        padding: 0 15px;

        font-size: 11px;
    }


    /* Hero */

    .hero {
        min-height: auto;

        padding: 75px 0 75px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 55px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 16px;
    }

    .trust-item span {
        font-size: 10px;
    }

    .diagnostic-card {
        min-height: 390px;

        padding: 22px;
    }

    .diagnostic-orbit {
        min-height: 315px;
    }

    .orbit-one {
        width: 205px;
        height: 205px;
    }

    .orbit-two {
        width: 275px;
        height: 275px;
    }

    .diagnostic-core {
        width: 120px;
        height: 120px;
    }

    .diagnostic-core strong {
        font-size: 31px;
    }

    .orbit-node {
        width: 70px;
        height: 70px;

        font-size: 7px;
    }

    .node-one {
        top: 22px;
    }

    .node-three {
        bottom: 22px;
    }

    .node-two {
        right: 0;
    }

    .node-four {
        left: 0;
    }


    /* Problem */

    .problem-section,
    .benefits-section,
    .commercial-section,
    .method-section,
    .process-section,
    .form-section,
    .trust-section,
    .quote-section {
        padding: 80px 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .problem-number {
        justify-content: flex-start;
    }

    .problem-number span {
        font-size: 130px;
    }

    .problem-number small {
        font-size: 40px;
    }

    .problem-content h2,
    .commercial-content h2,
    .form-intro h2 {
        font-size: 35px;
    }


    /* Benefits */

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .method-heading h2,
    .trust-heading h2 {
        font-size: 35px;
    }

    .section-heading p,
    .method-heading p,
    .trust-heading p {
        font-size: 15px;
    }

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

    .benefit-card {
        min-height: auto;
    }


    /* CTA */

    .cta-strip {
        padding: 55px 0;
    }

    .cta-strip-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .cta-strip h2 {
        font-size: 34px;
    }

    .cta-strip .btn {
        width: 100%;
    }


    /* Commercial */

    .commercial-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .commercial-visual {
        min-height: 350px;
    }

    .browser-window {
        transform: none;
    }

    .browser-content {
        min-height: 270px;

        padding: 30px 22px;
    }

    .browser-panels span {
        height: 80px;
    }

    .floating-badge {
        right: -2px;
        bottom: 0;

        max-width: 240px;
    }


    /* Method */

    .method-system {
        min-height: 620px;

        margin-top: 50px;
    }

    .method-system::before {
        width: 300px;
        height: 300px;
    }

    .method-system::after {
        width: 210px;
        height: 210px;
    }

    .method-center {
        width: 145px;
        height: 145px;
    }

    .method-center strong {
        font-size: 28px;
    }

    .method-item {
        width: 125px;
    }

    .method-item-1 {
        left: 0;
        top: 70px;
    }

    .method-item-2 {
        right: 0;
        top: 70px;
    }

    .method-item-3 {
        left: 0;
        bottom: 70px;
    }

    .method-item-4 {
        right: 0;
        bottom: 70px;
    }


    /* Process */

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


    /* Form */

    .form-wrapper {
        padding: 22px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    .form-field input {
        height: 46px;
    }


    /* No web */

    .no-web-inner {
        align-items: flex-start;

        padding: 25px;

        gap: 20px;
    }

    .no-web-content h2 {
        font-size: 22px;
    }


    /* Trust */

    .trust-stats {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .trust-stat {
        padding: 30px 20px;
    }

    .trust-description {
        padding: 22px;
    }


    /* Quote */

    .quote-mark {
        font-size: 75px;
    }

    .quote-box blockquote {
        font-size: 29px;
    }

    .quote-box .btn {
        width: 100%;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;
    }

}


/* =========================================================
   23. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .container {
        width: min(
            calc(100% - 24px),
            var(--container)
        );
    }

    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-trust {
        align-items: flex-start;
    }

    .trust-divider {
        height: 48px;
    }

    .diagnostic-card {
        padding: 17px;
    }

    .problem-number span {
        font-size: 105px;
    }

    .problem-number small {
        font-size: 32px;
    }

    .floating-badge {
        position: relative;

        right: auto;
        bottom: auto;

        margin: -25px auto 0;

        transform: translateY(20px);
    }

    .commercial-visual {
        display: block;
        min-height: auto;
    }

    .browser-window {
        width: 100%;
    }

    .method-system {
        transform: scale(0.9);
        transform-origin: center;
    }

}


/* =========================================================
   24. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }

}

/* =========================
   BRAND / LOGO
========================= */

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    min-width: 0;
}

.brand img {
    display: block;
    width: 150px;
    height: auto;
    max-width: 150px;
    object-fit: contain;
}

.brand-tagline {
    max-width: 245px;
    padding-left: 18px;
    border-left: 1px solid rgba(1, 41, 112, 0.15);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    color: #7c899e;
    text-transform: uppercase;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: relative;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid rgba(1, 41, 112, 0.08);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================
   HEADER CTA
========================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    border: 1px solid rgba(157, 196, 79, 0.55);
    border-radius: 999px;

    background: rgba(157, 196, 79, 0.08);
    color: #012970;

    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.header-cta:hover {
    background: #9dc44f;
    color: #012970;
    transform: translateY(-2px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 78px;
    }

    .brand img {
        width: 125px;
        max-width: 125px;
    }

    .brand-tagline {
        font-size: 0.72rem;
        max-width: 145px;
        padding-left: 14px;
    }

    .header-cta {
        min-height: 44px;
        padding: 0 19px;
        font-size: 0.84rem;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {

    .header-inner {
        min-height: 72px;
        gap: 15px;
    }

    .brand {
        gap: 0;
    }

    .brand img {
        width: 110px;
        max-width: 110px;
    }

    .brand-tagline {
        display: none;
    }

    .header-cta {
        min-height: 42px;
        padding: 0 15px;
        font-size: 0.78rem;
        white-space: nowrap;
    }
}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo {
    display: block;
    width: 150px;
    max-width: 150px;
    margin-bottom: 28px;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 640px) {

    .footer-logo {
        width: 150px;
        max-width: 150px;
        margin-bottom: 22px;
    }

}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #9dc44f;
    border-color: #9dc44f;
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact-details{
	margin-top: 5%;
}

.fa-solid {
    --fa-style: 900;
    color: #9dc44f;
}


.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

.footer-arrow {
    color: #9dc44f;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    transition: transform 0.25s ease;
}

/* Al pasar el ratón */
.footer-link:hover {
    color: #9dc44f;
}

.footer-link:hover .footer-arrow {
    transform: translateX(5px);
}

/* Al hacer clic */
.footer-link:active .footer-arrow {
    transform: translateX(8px);
}

.checkbox{
	margin-top: 2%;
}


/* =========================================================
   IDONMS · AVISO LEGAL
   Diseño limpio y corporativo
========================================================= */

.legal-page {
    --legal-bg: #f6f8fa;
    --legal-white: #ffffff;
    --legal-blue: #012970;
    --legal-blue-dark: #073961;
    --legal-text: #53606d;
    --legal-muted: #7d8791;
    --legal-green: #a8cf3a;
    --legal-green-dark: #8db52d;
    --legal-border: #e7ebef;
    --legal-radius: 16px;
    --legal-shadow: 0 18px 50px rgba(1, 41, 112, 0.07);

    background: var(--legal-bg);
    color: var(--legal-text);
}


/* =========================================================
   HEADER
========================================================= */

.legal-page .legal-header {
    position: relative;
    z-index: 10;
    background: #ffffff;
    border-bottom: 1px solid #edf0f2;
}

.legal-page .legal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   HERO
========================================================= */

.legal-page .legal-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 20px 55px;
    text-align: center;
}

.legal-page .legal-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -230px;
    right: -100px;
    border: 1px solid rgba(168, 207, 58, 0.10);
    border-radius: 50%;
}

.legal-page .legal-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -220px;
    left: -100px;
    border: 1px solid rgba(1, 41, 112, 0.05);
    border-radius: 50%;
}

.legal-page .legal-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}


/* Eyebrow */

.legal-page .legal-hero .eyebrow {
   display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #012970;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legal-page .legal-hero .eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: #012970;
    border-radius: 2px;
}


/* H1 */

.legal-page .legal-hero h1 {
    margin: 20px 0 14px;

    color: var(--legal-green);

    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}


/* Intro */

.legal-page .legal-hero p {
    max-width: 720px;
    margin: 0 auto;

    color: #65717d;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   CONTENIDO PRINCIPAL
========================================================= */

.legal-page .legal-content-section {
    padding: 0 20px 90px;
}


/*
   Eliminamos el sistema de dos columnas.
   Todo queda dentro de una única tarjeta central.
*/

.legal-page .legal-layout {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
}


/* =========================================================
   SIDEBAR
   Oculto para conseguir el diseño de la referencia
========================================================= */

.legal-page .legal-sidebar {
    display: none;
}


/* =========================================================
   DOCUMENTO
========================================================= */

.legal-page .legal-document {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;

    padding: 42px 48px;

    background: var(--legal-white);

    border: 1px solid var(--legal-border);
    border-radius: var(--legal-radius);

    box-shadow: var(--legal-shadow);
}


/*
   Ocultamos el antiguo bloque "Contenido"
   si existe dentro del documento.
*/

.legal-page .legal-document > .legal-content-index {
    display: none;
}


/* =========================================================
   SECCIONES
========================================================= */

.legal-page .legal-section {
    display: block;

    padding: 0 0 34px;
    margin: 0 0 34px;

    border-bottom: 1px solid var(--legal-border);
}

.legal-page .legal-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}


/* =========================================================
   NUMERACIÓN
========================================================= */

.legal-page .legal-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    height: auto;

    margin-bottom: 9px;

    color: var(--legal-muted);

    background: transparent;
    border: 0;
    border-radius: 0;

    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}


/* =========================================================
   TÍTULOS
========================================================= */

.legal-page .legal-section-content h2 {
    margin: 0 0 16px;

    color: var(--legal-blue);

    font-size: clamp(22px, 2.5vw, 27px);
    font-weight: 700;
    line-height: 1.25;

    letter-spacing: -0.02em;
}


/* =========================================================
   TEXTO
========================================================= */

.legal-page .legal-section-content p {
    max-width: 880px;

    margin: 0 0 13px;

    color: var(--legal-text);

    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

.legal-page .legal-section-content p:last-child {
    margin-bottom: 0;
}


/* Negritas */

.legal-page .legal-section-content strong {
    color: var(--legal-blue-dark);
    font-weight: 700;
}


/* Links */

.legal-page .legal-section-content a {
    color: var(--legal-blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(168, 207, 58, 0.7);
    text-underline-offset: 3px;

    transition: color 0.2s ease;
}

.legal-page .legal-section-content a:hover {
    color: var(--legal-green-dark);
}


/* =========================================================
   INFORMACIÓN DE EMPRESA
========================================================= */

.legal-page .company-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;

    margin-top: 24px;
}


/* Tarjeta */

.legal-page .company-detail {
    position: relative;

    padding: 18px 20px;

    background: #fafbfc;

    border: 1px solid var(--legal-border);
    border-radius: 11px;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.legal-page .company-detail:hover {
    transform: translateY(-2px);

    border-color: rgba(168, 207, 58, 0.45);

    box-shadow: 0 8px 25px rgba(1, 41, 112, 0.05);
}


/* Icono */

.legal-page .company-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 11px;

    color: var(--legal-green-dark);

    background: rgba(168, 207, 58, 0.12);

    border-radius: 8px;

    font-size: 14px;
}

.legal-page .company-detail strong {
    display: block;

    margin-bottom: 5px;

    color: var(--legal-blue);

    font-size: 13px;
    font-weight: 700;
}

.legal-page .company-detail span,
.legal-page .company-detail a {
    color: var(--legal-text);

    font-size: 13px;
    line-height: 1.6;

    text-decoration: none;
}

.legal-page .company-detail a:hover {
    color: var(--legal-green-dark);
}


/* =========================================================
   CONTACTO
========================================================= */

.legal-page .legal-contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 22px;
    padding: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(1, 41, 112, 0.035),
            rgba(168, 207, 58, 0.07)
        );

    border: 1px solid var(--legal-border);
    border-radius: 12px;
}

.legal-page .legal-contact-box h3 {
    margin: 0 0 8px;

    color: var(--legal-blue);

    font-size: 19px;
    line-height: 1.3;
}

.legal-page .legal-contact-box p {
    margin: 0;

    font-size: 13px;
    line-height: 1.7;
}

.legal-page .legal-contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 10px;
}

.legal-page .legal-contact-item {
    display: flex;
    align-items: center;

    gap: 10px;
}

.legal-page .legal-contact-item i {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    color: var(--legal-green-dark);

    background: #ffffff;

    border: 1px solid var(--legal-border);
    border-radius: 8px;

    font-size: 13px;
}

.legal-page .legal-contact-item a {
    color: var(--legal-blue);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.legal-page .legal-contact-item a:hover {
    color: var(--legal-green-dark);
}


/* =========================================================
   VOLVER ARRIBA
========================================================= */

.legal-page .legal-back-top {
    display: flex;
    justify-content: center;

    padding: 25px 20px 65px;
}

.legal-page .legal-back-top a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--legal-muted);

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.legal-page .legal-back-top a:hover {
    color: var(--legal-blue);
}


/* =========================================================
   ANIMACIÓN
========================================================= */

/*
   El contenido permanece visible aunque JavaScript
   no se ejecute.
*/

.legal-page .fade-up {
    opacity: 1;
    transform: none;
}


/* Animación únicamente si el usuario no ha solicitado
   reducir movimiento */

@media (prefers-reduced-motion: no-preference) {

    .legal-page .legal-section {
        animation: legalFadeUp 0.65s ease both;
    }

    .legal-page .legal-section:nth-child(2) {
        animation-delay: 0.05s;
    }

    .legal-page .legal-section:nth-child(3) {
        animation-delay: 0.10s;
    }

    .legal-page .legal-section:nth-child(4) {
        animation-delay: 0.15s;
    }

    .legal-page .legal-section:nth-child(5) {
        animation-delay: 0.20s;
    }

    .legal-page .legal-section:nth-child(6) {
        animation-delay: 0.25s;
    }

    .legal-page .legal-section:nth-child(7) {
        animation-delay: 0.30s;
    }

    .legal-page .legal-section:nth-child(8) {
        animation-delay: 0.35s;
    }

    .legal-page .legal-section:nth-child(9) {
        animation-delay: 0.40s;
    }
}

@keyframes legalFadeUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .legal-page .legal-hero {
        padding: 60px 20px 45px;
    }

    .legal-page .legal-content-section {
        padding: 0 16px 70px;
    }

    .legal-page .legal-document {
        padding: 35px 30px;
    }

    .legal-page .company-details {
        grid-template-columns: 1fr;
    }

    .legal-page .legal-contact-box {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 600px) {

    .legal-page .legal-hero {
        padding: 50px 16px 40px;
    }

    .legal-page .legal-hero h1 {
        margin-top: 16px;

        font-size: clamp(36px, 11vw, 48px);
    }

    .legal-page .legal-hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    .legal-page .legal-content-section {
        padding: 0 12px 55px;
    }

    .legal-page .legal-document {
        padding: 28px 20px;

        border-radius: 13px;
    }

    .legal-page .legal-section {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .legal-page .legal-section-number {
        margin-bottom: 7px;

        font-size: 12px;
    }

    .legal-page .legal-section-content h2 {
        margin-bottom: 13px;

        font-size: 21px;
    }

    .legal-page .legal-section-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .legal-page .company-detail {
        padding: 17px;
    }

    .legal-page .legal-contact-box {
        padding: 20px 17px;
    }

    .legal-page .legal-back-top {
        padding-bottom: 45px;
    }
}


/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */

@media (max-width: 400px) {

    .legal-page .legal-document {
        padding: 25px 17px;
    }

    .legal-page .legal-section-content h2 {
        font-size: 20px;
    }

    .legal-page .legal-section-content p {
        font-size: 13px;
    }
}


/* =========================================================
   REDUCIR MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .legal-page .legal-section,
    .legal-page .company-detail {
        animation: none !important;
        transition: none !important;
    }
}

.asterisco{
	 color: rgb(217, 83, 79);
	 font-weight: 600;   
}

/* =========================================================
   PRIVACIDAD · ENLACES
========================================================= */

.privacy-box .privacy-text a,
.privacy-box .checkbox a {
    color: #012970;
    font-weight: 500;
    text-decoration-color: #a8cf3a;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.privacy-box .privacy-text a:hover,
.privacy-box .checkbox a:hover {
    color: #a8cf3a;
    text-decoration-color: #012970;
}

/* =========================================================
   ALTERNATIVA · USUARIO SIN WEB
========================================================= */

.no-web-inline {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 24px;
    padding: 24px 26px;

    background: #f6fbec;
    border: 1px solid rgba(168, 207, 58, 0.35);
    border-left: 4px solid #a8cf3a;
    border-radius: 12px;

    color: #012970;
    box-shadow: 0 8px 24px rgba(1, 41, 112, 0.06);
}

.no-web-inline-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #a8cf3a;
    border-radius: 10px;

    color: #ffffff;
}

.no-web-inline-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.no-web-inline-content {
    flex: 1;
    min-width: 0;
}

.no-web-inline-label {
    display: block;
    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #7fa52b;
}

.no-web-inline-content h3 {
    margin: 0 0 8px;

    color: #012970;
    font-size: 20px;
    line-height: 1.3;
}

.no-web-inline-content p {
    margin: 0;

    color: #5d6875;
    font-size: 14px;
    line-height: 1.7;
}

.no-web-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 12px;

    color: #012970;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: gap 0.2s ease, color 0.2s ease;
}

.no-web-inline-link:hover {
    gap: 11px;
    color: #7fa52b;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 600px) {

    .no-web-inline {
        gap: 15px;
        padding: 20px;
    }

    .no-web-inline-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .no-web-inline-icon svg {
        width: 21px;
        height: 21px;
    }

    .no-web-inline-content h3 {
        font-size: 18px;
    }

}


/* =========================================================
   OBJETIVOS · ACORDEÓN
========================================================= */

.objectives-field {
    width: 100%;
    margin-top: 8px;
}

.objectives-field > label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #26384d;
}

.objectives-field .field-help {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: #718096;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.objectives-accordion {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


/* =========================================================
   CATEGORÍA
========================================================= */

.objective-category {
    width: 100%;
    margin: 0;
    border: 1px solid #dbe3ec;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

.objective-category[open] {
    border-color: #a8cf3a;
    box-shadow: 0 4px 14px rgba(1, 41, 112, .06);
}


/* =========================================================
   CABECERA
========================================================= */

.objective-category-header {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.objective-category-header::-webkit-details-marker {
    display: none;
}

.objective-category-header::marker {
    display: none;
}


/* =========================================================
   NÚMERO
========================================================= */

.objective-number {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #7a8795;
}


/* =========================================================
   TÍTULO
========================================================= */

.objective-title {
    display: flex;
    align-items: center;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #26384d;
}


/* =========================================================
   ICONO + / -
========================================================= */

.objective-chevron {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    font-size: 18px;
    font-weight: 400;
    line-height: 1;

    color: #718096;

    transition: transform .2s ease;
}

.objective-category[open] .objective-chevron {
    transform: rotate(45deg);
    color: #8db52f;
}


/* =========================================================
   OPCIONES
========================================================= */

.objective-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 4px 18px;

    padding: 4px 14px 12px 52px;

    border-top: 1px solid #edf1f5;
}


/* =========================================================
   OPCIÓN
========================================================= */

.objective-option {
    position: relative;

    display: flex;
    align-items: center;
    gap: 9px;

    min-height: 32px;
    margin: 0;

    cursor: pointer;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;

    color: #34465a;
}


/* Ocultamos el checkbox nativo */

.objective-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   CHECKBOX PERSONALIZADO
========================================================= */

.custom-checkbox {
    flex: 0 0 16px;

    width: 16px;
    height: 16px;

    border: 1.5px solid #aeb8c3;
    border-radius: 4px;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background-color .15s ease,
        border-color .15s ease,
        box-shadow .15s ease;
}


/* CHECKED */

.objective-option input:checked + .custom-checkbox {
    background: #a8cf3a;
    border-color: #a8cf3a;
}


/* Tick */

.objective-option input:checked + .custom-checkbox::after {
    content: "";

    width: 4px;
    height: 8px;

    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;

    transform: rotate(45deg) translate(-1px, -1px);
}


/* Hover */

.objective-option:hover .custom-checkbox {
    border-color: #8fb82f;
}


/* Focus accesible */

.objective-option input:focus-visible + .custom-checkbox {
    box-shadow: 0 0 0 3px rgba(168, 207, 58, .2);
}


/* Texto seleccionado */

.objective-option input:checked ~ .objective-label {
    color: #26384d;
    font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .objective-options {
        grid-template-columns: 1fr;
        padding-left: 52px;
    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 576px) {

    .objective-category-header {
        grid-template-columns: 34px minmax(0, 1fr) 22px;
        min-height: 46px;
        padding: 0 12px;
    }

    .objective-options {
        padding: 5px 12px 10px 46px;
    }

    .objective-option {
        min-height: 34px;
        font-size: 14px;
    }

}

/* =========================================================
   CATEGORÍAS DESPLEGABLES DEL FORMULARIO
========================================================= */

.diagnostic-categories {
    margin: 8px 0 24px;
    width: 100%;
}

.diagnostic-category {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 8px;
}

.diagnostic-category:last-child {
    margin-bottom: 0;
}

.diagnostic-category-toggle {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: #344054;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.diagnostic-category-toggle:hover,
.diagnostic-category-toggle:focus-visible {
    background: #f8fafc;
}

.diagnostic-category-number {
    flex: 0 0 auto;
    color: #012970;
    font-size: 14px;
    font-weight: 700;
}

.diagnostic-category-title {
    flex: 1 1 auto;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.diagnostic-category-arrow {
    flex: 0 0 20px;
    width: 20px;
    color: #012970;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: transform .25s ease;
}

.diagnostic-category-toggle[aria-expanded="true"] .diagnostic-category-arrow {
    transform: rotate(180deg);
}

.diagnostic-category-content {
    display: none;
    padding: 2px 16px 15px;
}

.diagnostic-category.is-open .diagnostic-category-content {
    display: block;
}

.diagnostic-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    padding-top: 4px;
}

.diagnostic-option {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    margin: 0;
    padding: 5px 0;
    color: #344054;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
}

.diagnostic-option input[type="checkbox"] {
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #a8cf3a;
    cursor: pointer;
}

.diagnostic-option span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
	color: var(--color-navy-dark) !important;
}

@media (max-width: 600px) {
    .diagnostic-options {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .diagnostic-category-toggle {
        min-height: 50px;
        padding: 13px 14px;
    }

    .diagnostic-category-content {
        padding: 2px 14px 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .diagnostic-category-arrow {
        transition: none;
    }
}

/* =========================================================
   INTRODUCCIÓN CATEGORÍAS DEL DIAGNÓSTICO
========================================================= */

.diagnostic-intro {
    margin: 26px 0 14px;
}

.diagnostic-intro h3 {
    display: block;
    margin-bottom: 7px;
    color: var(--color-navy-dark);
    font-size: 14px;
    font-weight: 750;
}

.diagnostic-intro p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

.diagnostic-intro p em {
    font-style: normal;
}


/* =========================================================
   CATEGORÍAS
========================================================= */

.diagnostic-categories {
    margin-top: 0;
}


.diagnostic-required-message {
    margin: 8px 0 0;
    font-size: 14px;
    color: #d64545;
}

.diagnostic-categories.has-error {
    border-radius: 8px;
}

.diagnostic-categories.has-error .diagnostic-category:first-child {
    /* No modificamos agresivamente el diseño */
}