/* KODIQ — capa ejecutiva sobre plantilla Vanilla / MVC */

:root {
    /* Paleta logo: navy + turquesa + dorado brillante */
    --kodiq-navy: #0a1628;
    --kodiq-navy-soft: #0f1f36;
    --kodiq-bg-deep: #0a1628;
    --kodiq-turquoise: #00b8a9;
    --kodiq-turquoise-bright: #3ee8d9;
    --kodiq-turquoise-soft: rgba(0, 184, 169, 0.28);
    --kodiq-gold: #f2c94c;
    --kodiq-gold-bright: #ffe566;
    --kodiq-gold-soft: rgba(242, 201, 76, 0.4);
    --kodiq-ink: #e8eaed;
    --kodiq-muted: rgba(255, 255, 255, 0.78);
    /* Splash más corto (~1.75s); el carrusel aparece antes */
    --kodiq-splash-duration: 1.75s;
    --kodiq-inner-start: calc(var(--kodiq-splash-duration) + 0.06s);
    --kodiq-hero-splash-end: calc(var(--kodiq-inner-start) + 0.28s);
    --kodiq-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ancho global: evita el límite rígido de 1170px del tema/base */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    width: 80%;
    max-width: none;
}

@media (max-width: 991px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        width: 92%;
    }
}

/* WhatsApp flotante — discreto y ejecutivo */
.kodiq-floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.25rem;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kodiq-float-wa {
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 1rem 1.45rem;
    color: #fff !important;
    background: linear-gradient(145deg, #1c8f4a 0%, #0d6b4d 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.kodiq-float-wa .fab {
    font-size: 1.2em;
    margin-right: 0.45rem;
    vertical-align: -0.12em;
}

.kodiq-float-wa:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

/* Páginas internas (sin .php en la URL) */
body.kodiq-inner-page {
    background: #0a0f18;
}

.kodiq-page-main {
    padding-top: 5.75rem;
    min-height: 60vh;
    color: rgba(255, 255, 255, 0.92);
}

.kodiq-page-hero {
    padding: 2.5rem 0 2rem;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(8, 16, 32, 0.88) 100%);
    border-bottom: 1px solid rgba(0, 184, 169, 0.2);
}

.kodiq-page-hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--kodiq-gold);
    margin-bottom: 0.5rem;
}

.kodiq-page-hero__title {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.kodiq-page-hero__lead {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.5;
}

.kodiq-page-body {
    padding: 2.5rem 0 3.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

.kodiq-page-section p {
    margin-bottom: 1.1rem;
}

.kodiq-page-list {
    margin: 1rem 0 1.5rem 1.25rem;
}

.kodiq-page-cta {
    color: var(--kodiq-gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.kodiq-page-cta:hover {
    color: #fff;
}

.kodiq-page-cta--mail {
    word-break: break-all;
}

.kodiq-page-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.kodiq-page-back a {
    color: var(--kodiq-gold);
    font-weight: 600;
}

/* ——— About (/about): PLANTILLA-KODIQ features03 + fondo chilpo2 + película 70% ——— */
.kodiq-page-main--about-mbr {
    padding-top: 5.75rem;
}

.kodiq-mbr-about-root {
    position: relative;
    padding-top: 0;
    padding-bottom: 3rem;
    background-color: #171719;
    background-image: url('../img/chilpo2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.kodiq-mbr-about-root .kodiq-mbr-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #171719 -30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.kodiq-mbr-about-root .mbr-overlay.kodiq-mbr-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(23, 23, 25);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.kodiq-mbr-about-root .kodiq-mbr-about__content {
    position: relative;
    z-index: 2;
}

.kodiq-mbr-content-wrapper {
    position: relative;
    z-index: 2;
}

@media (max-width: 1440px) {
    .kodiq-mbr-content-wrapper {
        padding-top: 0;
    }
}

/* Tipografía x2 en about (hero interior de la sección con foto) */
body.kodiq-page--about .kodiq-page-hero--about-mbr {
    padding: 0 0 1.5rem;
    background: transparent;
    border-bottom: none;
}

body.kodiq-page--about .kodiq-page-hero--about-mbr .kodiq-page-hero__eyebrow {
    font-size: 1.6rem;
    letter-spacing: 0.28em;
    margin-bottom: 0.65rem;
}

body.kodiq-page--about .kodiq-page-hero--about-mbr .kodiq-page-hero__title {
    font-size: clamp(3.5rem, 4vw + 2rem, 4.8rem);
    margin-bottom: 0.65rem;
}

body.kodiq-page--about .kodiq-page-hero--about-mbr .kodiq-page-hero__lead {
    font-size: 2.1rem;
    max-width: 48rem;
}

body.kodiq-page--about .kodiq-page-body--about {
    padding: 0.75rem 0 2.5rem;
    font-size: 1.92rem;
    line-height: 1.55;
}

body.kodiq-page--about .kodiq-page-back {
    margin-top: 2rem;
    font-size: 2rem;
}

body.kodiq-page--about .kodiq-page-back a {
    font-size: inherit;
}

/* Bloque estilo Mobirise (misma estructura que PLANTILLA-KODIQ.txt) */
body.kodiq-page--about .kodiq-mbr-title-wrap .kodiq-mbr-section-title {
    margin-bottom: 3.125rem;
    color: #ffffff;
}

body.kodiq-page--about .kodiq-mbr-section-title {
    font-size: clamp(2.9rem, 4vw + 1.9rem, 4.7rem);
    line-height: 1.15;
    font-weight: 800;
}

body.kodiq-page--about .kodiq-mbr-section-title--sub {
    font-size: clamp(2.4rem, 3.2vw + 1.5rem, 3.6rem);
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

body.kodiq-page--about .kodiq-mbr-lead {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 2.08rem;
    line-height: 1.55;
}

body.kodiq-page--about .kodiq-mbr-items-wrapper {
    margin: 0 -1.5625rem;
}

body.kodiq-page--about .kodiq-mbr-items-wrapper .item {
    padding: 0 1.5625rem;
    margin-bottom: 2.5rem;
}

body.kodiq-page--about .kodiq-mbr-item-text {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 1.92rem;
    line-height: 1.55;
}

body.kodiq-page--about .kodiq-mbr-item-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 2.16rem;
    line-height: 1.25;
    font-weight: 700;
}

body.kodiq-page--about .kodiq-about-band--tight .kodiq-mbr-section-title--sub {
    margin-top: 1.5rem;
}

body.kodiq-page--about .kodiq-about-pillars {
    margin-top: 2.5rem;
}

body.kodiq-page--about .kodiq-about-glass {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(8, 14, 24, 0.45);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.35rem;
    height: 100%;
}

body.kodiq-page--about .kodiq-about-process {
    margin-top: 3rem;
}

body.kodiq-page--about .kodiq-about-step {
    border: 1px solid rgba(0, 220, 190, 0.28);
    border-radius: 14px;
    background: rgba(2, 10, 18, 0.5);
    padding: 1.25rem 1.1rem;
    height: 100%;
    margin-bottom: 1rem;
}

body.kodiq-page--about .kodiq-about-step__n {
    display: inline-block;
    font-size: 1.68rem;
    font-weight: 800;
    color: #8bf4df;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

body.kodiq-page--about .kodiq-about-cta-block {
    margin-top: 3rem;
}

.kodiq-about-2026 {
    position: relative;
}

.kodiq-about-2026__shell {
    position: relative;
    padding: 2rem 2.25rem;
    border-radius: 18px;
    border: 1px solid rgba(144, 196, 255, 0.28);
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(0, 184, 169, 0.14) 0%, rgba(0, 184, 169, 0) 55%),
        rgba(14, 24, 40, 0.42);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
}

.kodiq-about-2026__header {
    max-width: 58rem;
    margin-bottom: 1.5rem;
}

.kodiq-about-2026__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 1.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 220, 190, 0.92);
    font-weight: 700;
}

.kodiq-about-2026__title {
    margin: 0 0 0.85rem;
    font-size: clamp(3.1rem, 4vw + 2rem, 4.8rem);
    line-height: 1.18;
    color: #fff;
    font-weight: 800;
}

.kodiq-about-2026__lead {
    margin: 0;
    color: rgba(232, 242, 255, 0.9);
    font-size: 2.08rem;
    line-height: 1.5;
}

.kodiq-about-2026__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 1.25rem 0 1.25rem;
}

.kodiq-about-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 14, 24, 0.5);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
}

.kodiq-about-card h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 2.16rem;
    font-weight: 700;
}

.kodiq-about-card p {
    margin: 0;
    color: rgba(235, 241, 252, 0.88);
    font-size: 1.92rem;
    line-height: 1.55;
}

.kodiq-about-2026__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kodiq-about-stat {
    border-radius: 12px;
    border: 1px solid rgba(0, 220, 190, 0.28);
    background: rgba(2, 10, 18, 0.5);
    padding: 1rem 1.1rem;
}

.kodiq-about-stat__value {
    display: block;
    color: #9bf7e3;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
}

.kodiq-about-stat__label {
    display: block;
    margin-top: 0.35rem;
    color: rgba(226, 236, 248, 0.88);
    font-size: 1.72rem;
    line-height: 1.45;
}

.kodiq-about-2026__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.kodiq-about-2026__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #17a357 0%, #0e844e 55%, #0a7468 100%);
    box-shadow: 0 10px 28px rgba(8, 35, 25, 0.45);
}

.kodiq-about-2026__btn .fab {
    font-size: 1.2em;
}

.kodiq-about-2026__btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.kodiq-about-2026__mail {
    color: var(--kodiq-gold);
    font-weight: 700;
    font-size: 1.72rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    word-break: break-all;
}

@media (max-width: 980px) {
    .kodiq-about-2026__grid {
        grid-template-columns: 1fr;
    }

    .kodiq-about-2026__stats {
        grid-template-columns: 1fr;
    }
}

/* ——— Services (/services): taxco.jpg + película 60% + bloques PLANTILLA-KODIQ (features02 → pricing02) ——— */
.kodiq-page-main--services-mbr {
    padding-top: 5.75rem;
}

.kodiq-mbr-services-root {
    position: relative;
    padding-top: 0;
    padding-bottom: 2rem;
    background-color: #171719;
    background-image: url('../img/taxco.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.kodiq-mbr-services-root .kodiq-mbr-gradient--services {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #171719 -28%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.kodiq-mbr-services-root .mbr-overlay.kodiq-mbr-overlay--60 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(23, 23, 25);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.kodiq-mbr-services-root .kodiq-mbr-services__content {
    position: relative;
    z-index: 2;
}

body.kodiq-page--services .kodiq-page-hero--services-mbr,
body.kodiq-page--portfolio .kodiq-page-hero--services-mbr,
body.kodiq-page--contact .kodiq-page-hero--services-mbr,
body.kodiq-page--legal-digital .kodiq-page-hero--services-mbr {
    padding: 0 0 1.25rem;
    background: transparent;
    border-bottom: none;
}

body.kodiq-page--services .kodiq-page-hero--services-mbr .kodiq-page-hero__eyebrow,
body.kodiq-page--portfolio .kodiq-page-hero--services-mbr .kodiq-page-hero__eyebrow,
body.kodiq-page--contact .kodiq-page-hero--services-mbr .kodiq-page-hero__eyebrow,
body.kodiq-page--legal-digital .kodiq-page-hero--services-mbr .kodiq-page-hero__eyebrow {
    font-size: 1.6rem;
    letter-spacing: 0.28em;
    margin-bottom: 0.5rem;
    color: var(--kodiq-gold);
}

body.kodiq-page--services .kodiq-page-hero--services-mbr .kodiq-page-hero__title,
body.kodiq-page--portfolio .kodiq-page-hero--services-mbr .kodiq-page-hero__title,
body.kodiq-page--contact .kodiq-page-hero--services-mbr .kodiq-page-hero__title,
body.kodiq-page--legal-digital .kodiq-page-hero--services-mbr .kodiq-page-hero__title {
    font-size: clamp(2.75rem, 3.5vw + 1.5rem, 4.2rem);
    margin-bottom: 0.5rem;
}

body.kodiq-page--services .kodiq-page-hero--services-mbr .kodiq-page-hero__lead,
body.kodiq-page--portfolio .kodiq-page-hero--services-mbr .kodiq-page-hero__lead,
body.kodiq-page--contact .kodiq-page-hero--services-mbr .kodiq-page-hero__lead,
body.kodiq-page--legal-digital .kodiq-page-hero--services-mbr .kodiq-page-hero__lead {
    font-size: 1.85rem;
    max-width: 48rem;
    color: rgba(255, 255, 255, 0.88);
}

body.kodiq-page--services .kodiq-page-body--services,
body.kodiq-page--portfolio .kodiq-page-body--services,
body.kodiq-page--contact .kodiq-page-body--services,
body.kodiq-page--legal-digital .kodiq-page-body--services {
    padding: 0.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.95);
}

body.kodiq-page--services .kodiq-page-body--services .kodiq-page-back,
body.kodiq-page--portfolio .kodiq-page-body--services .kodiq-page-back,
body.kodiq-page--contact .kodiq-page-body--services .kodiq-page-back,
body.kodiq-page--legal-digital .kodiq-page-body--services .kodiq-page-back {
    margin-top: 2rem;
    font-size: 1.35rem;
}

/* ——— Portfolio (/portfolio): mismo shell Taxco que Services + rejilla experiencia ——— */
body.kodiq-page--portfolio .kodiq-portfolio-mosaic {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.kodiq-page--portfolio .kodiq-portfolio-intro-card {
    background: rgba(8, 16, 32, 0.72);
    border: 1px solid rgba(0, 220, 190, 0.22);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    max-width: 52rem;
    margin: 0 auto;
}

body.kodiq-page--portfolio .kodiq-portfolio-intro-title {
    margin: 0 0 0.75rem;
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

body.kodiq-page--portfolio .kodiq-portfolio-intro-text {
    margin: 0 0 1.25rem;
    color: rgba(232, 240, 252, 0.9);
    text-align: center;
    line-height: 1.65;
}

body.kodiq-page--portfolio .kodiq-portfolio-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: center;
}

body.kodiq-page--portfolio .kodiq-portfolio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.15rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.kodiq-page--portfolio .kodiq-portfolio-btn--primary {
    color: #fff !important;
    background: linear-gradient(145deg, rgba(0, 184, 169, 0.9), rgba(12, 102, 95, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

body.kodiq-page--portfolio .kodiq-portfolio-btn--primary:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

body.kodiq-page--portfolio .kodiq-portfolio-btn--ghost {
    color: rgba(255, 255, 255, 0.95) !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 220, 190, 0.35);
}

body.kodiq-page--portfolio .kodiq-portfolio-btn--ghost:hover {
    color: #fff !important;
    background: rgba(0, 220, 190, 0.12);
    border-color: rgba(0, 220, 190, 0.55);
}

body.kodiq-page--portfolio .kodiq-portfolio-experiencia.kodiq-experiencia-wrap {
    min-height: auto !important;
    padding-top: clamp(2.25rem, 5vw, 3.5rem) !important;
    padding-bottom: clamp(2.25rem, 6vw, 4rem) !important;
    background: transparent !important;
    background-attachment: scroll !important;
}

body.kodiq-page--portfolio .kodiq-portfolio-experiencia.kodiq-experiencia-wrap::before {
    display: none !important;
}

body.kodiq-page--portfolio .kodiq-portfolio-empty-wrap {
    padding: 2rem 0 1rem;
}

body.kodiq-page--portfolio .kodiq-portfolio-empty-card {
    background: rgba(8, 16, 32, 0.65);
    border: 1px solid rgba(0, 220, 190, 0.18);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 40rem;
    margin: 0 auto;
}

body.kodiq-page--portfolio .kodiq-portfolio-empty-text {
    margin: 0 0 1.25rem;
    color: rgba(232, 240, 252, 0.9);
    line-height: 1.65;
}

/* ——— Contact (/contact): intro + canales + formulario home + redes ——— */
body.kodiq-page--contact .kodiq-page-hero--services-mbr .kodiq-page-hero__lead {
    font-size: clamp(1.35rem, 1.65vw + 1rem, 2rem);
    line-height: 1.45;
    max-width: 54rem;
}

body.kodiq-page--legal-digital .kodiq-page-hero--services-mbr .kodiq-page-hero__title {
    font-size: clamp(3.575rem, 4.55vw + 1.95rem, 5.46rem);
}

body.kodiq-page--legal-digital .kodiq-page-hero--services-mbr .kodiq-page-hero__lead {
    font-size: clamp(1.586rem, 1.76vw + 1.24rem, 2.236rem);
    line-height: 1.5;
    max-width: 62rem;
}

body.kodiq-page--contact .kodiq-contact-mosaic {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.kodiq-page--contact .kodiq-contact-top {
    padding-top: 0.25rem;
    padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

body.kodiq-page--contact .kodiq-contact-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 992px) {
    body.kodiq-page--contact .kodiq-contact-intro-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        align-items: center;
    }
}

body.kodiq-page--contact .kodiq-contact-intro-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.92rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 220, 190, 0.88);
    font-weight: 700;
}

body.kodiq-page--contact .kodiq-contact-intro-title {
    margin: 0 0 0.65rem;
    color: #fff;
    font-weight: 800;
    font-size: clamp(2.05rem, 2.6vw + 1.05rem, 3rem);
    line-height: 1.15;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

body.kodiq-page--contact .kodiq-contact-intro-lead {
    margin: 0;
    color: rgba(232, 240, 252, 0.92);
    line-height: 1.68;
    font-size: clamp(1.18rem, 0.75vw + 1rem, 1.42rem);
}

body.kodiq-page--contact .kodiq-contact-quick {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

body.kodiq-page--contact .kodiq-contact-quick__link {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    text-decoration: none !important;
    background: rgba(8, 16, 32, 0.72);
    border: 1px solid rgba(0, 220, 190, 0.22);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.kodiq-page--contact .kodiq-contact-quick__link:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 220, 190, 0.45);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

body.kodiq-page--contact .kodiq-contact-quick__link--ghost {
    background: rgba(255, 255, 255, 0.05);
}

body.kodiq-page--contact .kodiq-contact-quick__icon {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(0, 184, 169, 0.35), rgba(8, 40, 38, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.55rem;
}

body.kodiq-page--contact .kodiq-contact-quick__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

body.kodiq-page--contact .kodiq-contact-quick__label {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

body.kodiq-page--contact .kodiq-contact-quick__value {
    font-size: clamp(1.08rem, 0.55vw + 0.95rem, 1.28rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
    word-break: break-word;
    line-height: 1.35;
}

body.kodiq-page--contact .kodiq-contact-main {
    padding-top: clamp(1rem, 3vw, 1.75rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

body.kodiq-page--contact .kodiq-contact-aside-card {
    background: rgba(8, 16, 32, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.5rem 1.35rem;
    backdrop-filter: blur(10px);
    height: 100%;
}

body.kodiq-page--contact .kodiq-contact-aside-title {
    margin: 0 0 0.65rem;
    color: #fff;
    font-size: clamp(1.32rem, 0.75vw + 1.05rem, 1.58rem);
    font-weight: 800;
}

body.kodiq-page--contact .kodiq-contact-aside-text {
    margin: 0 0 1rem;
    color: rgba(232, 240, 252, 0.9);
    line-height: 1.65;
    font-size: clamp(1.08rem, 0.45vw + 0.98rem, 1.22rem);
}

body.kodiq-page--contact .kodiq-contact-aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.kodiq-page--contact .kodiq-contact-aside-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 0.4vw + 0.95rem, 1.18rem);
    line-height: 1.5;
}

body.kodiq-page--contact .kodiq-contact-aside-list li:last-child {
    margin-bottom: 0;
}

body.kodiq-page--contact .kodiq-contact-aside-list .fa-check-circle {
    color: rgba(0, 220, 190, 0.88);
    margin-top: 0.18rem;
    flex-shrink: 0;
    font-size: 1.12rem;
}

body.kodiq-page--contact .kodiq-contact-form-panel {
    background: rgba(8, 16, 32, 0.72);
    border: 1px solid rgba(0, 220, 190, 0.22);
    border-radius: 16px;
    padding: clamp(1.55rem, 3.2vw, 2.25rem);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

body.kodiq-page--contact .kodiq-contact-form-panel .kodiq-contact-block-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.65rem, 1.85vw + 1.05rem, 2.25rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

body.kodiq-page--contact .kodiq-contact-form-panel .line-dec {
    margin-bottom: 1.1rem;
    background: rgba(0, 220, 190, 0.45);
    height: 3px;
}

body.kodiq-page--contact .kodiq-contact-form-panel .kodiq-contact-block-lead {
    color: rgba(232, 240, 252, 0.92);
    line-height: 1.72;
    font-size: clamp(1.12rem, 0.65vw + 1rem, 1.38rem);
    margin-bottom: 0.25rem;
}

body.kodiq-page--contact .kodiq-contact-form-panel .kodiq-contact-block-lead strong {
    color: var(--kodiq-gold-bright, #e8c97a);
}

body.kodiq-page--contact .kodiq-contact-form-panel .contact-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 0.85rem;
}

body.kodiq-page--contact .kodiq-contact-form-panel .form-control {
    background: rgba(4, 8, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 0.85rem 1.05rem;
    font-size: clamp(1.06rem, 0.35vw + 1rem, 1.18rem);
    line-height: 1.45;
    min-height: 3.05rem;
}

body.kodiq-page--contact .kodiq-contact-form-panel textarea.form-control {
    min-height: 9.5rem;
}

body.kodiq-page--contact .kodiq-contact-form-panel .form-control::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

body.kodiq-page--contact .kodiq-contact-form-panel .form-control:focus {
    border-color: rgba(0, 220, 190, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 220, 190, 0.18);
    outline: none;
    background: rgba(6, 12, 24, 0.85);
}

body.kodiq-page--contact .kodiq-contact-form-panel select.form-control {
    color: rgba(255, 255, 255, 0.92);
}

body.kodiq-page--contact .kodiq-contact-form-panel select.form-control option {
    color: #171719;
    background: #fff;
}

body.kodiq-page--contact .kodiq-contact-form-panel .whatsapp-btn {
    width: 100%;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: clamp(1.02rem, 0.4vw + 0.95rem, 1.15rem);
}

body.kodiq-page--contact .kodiq-contact-redes-wrap {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 220, 190, 0.14);
}

body.kodiq-page--contact .kodiq-contact-redes-wrap .kodiq-redes.projects-content {
    background: transparent !important;
    min-height: auto !important;
    padding-top: clamp(2rem, 5vw, 3rem) !important;
    padding-bottom: clamp(2rem, 6vw, 3.5rem) !important;
}

body.kodiq-page--contact .kodiq-contact-redes-wrap .kodiq-redes.projects-content::before {
    display: none !important;
}

body.kodiq-page--contact .kodiq-contact-redes-wrap .kodiq-redes .section-title {
    font-size: clamp(2.15rem, 2.5vw + 1.1rem, 3.15rem) !important;
}

body.kodiq-page--contact .kodiq-contact-redes-wrap .kodiq-redes-subtitle {
    font-size: clamp(1.18rem, 0.85vw + 1rem, 1.45rem) !important;
}

body.kodiq-page--contact .kodiq-contact-redes-wrap .kodiq-red-card h4 {
    font-size: clamp(1.38rem, 0.95vw + 1.1rem, 1.85rem) !important;
}

body.kodiq-page--contact .kodiq-contact-redes-wrap .kodiq-red-card p {
    font-size: clamp(1.06rem, 0.45vw + 0.98rem, 1.2rem) !important;
}

body.kodiq-page--contact .kodiq-contact-redes-wrap .kodiq-red-card .btn {
    font-size: clamp(0.95rem, 0.35vw + 0.88rem, 1.05rem) !important;
    padding: 0.62rem 1rem !important;
}

/* ——— Legal digital (/legal-digital): texto largo informativo (~+30 % tipografía y cajas) ——— */
body.kodiq-page--legal-digital .kodiq-legal-digital {
    max-width: 62rem;
    margin: 0 auto;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__note {
    background: rgba(8, 16, 32, 0.72);
    border: 1px solid rgba(0, 220, 190, 0.22);
    border-radius: 18px;
    padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.35rem, 2.5vw, 1.75rem);
    margin: 0 0 clamp(1.85rem, 4vw, 2.35rem);
    color: rgba(232, 240, 252, 0.92);
    font-size: clamp(1.365rem, 0.59vw + 1.27rem, 1.534rem);
    line-height: 1.72;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__toc {
    background: rgba(6, 12, 24, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: clamp(1.5rem, 3.2vw, 2.1rem) clamp(1.55rem, 2.8vw, 2rem);
    margin-bottom: clamp(2.15rem, 4.5vw, 3.1rem);
}

body.kodiq-page--legal-digital .kodiq-legal-digital__toc-title {
    margin: 0 0 1rem;
    font-size: clamp(1.495rem, 0.72vw + 1.3rem, 1.755rem);
    font-weight: 800;
    color: rgba(0, 220, 190, 0.92);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__toc-list {
    margin: 0;
    padding-left: 1.75rem;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.365rem, 0.52vw + 1.27rem, 1.495rem);
    line-height: 1.78;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__toc-list a {
    color: var(--kodiq-gold, #c4a35a);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__toc-list a:hover {
    color: #fff;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__section {
    margin-bottom: clamp(1.85rem, 3.5vw, 2.45rem);
}

body.kodiq-page--legal-digital .kodiq-legal-digital__section--band {
    background: rgba(6, 12, 24, 0.38);
    border-top: 1px solid rgba(0, 220, 190, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-left: calc(-1 * clamp(0.65rem, 1.8vw, 1.1rem));
    margin-right: calc(-1 * clamp(0.65rem, 1.8vw, 1.1rem));
    padding: clamp(1.75rem, 3.6vw, 2.45rem) clamp(1.45rem, 3vw, 2rem);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

body.kodiq-page--legal-digital .kodiq-legal-digital__h2 {
    margin: 0 0 1.1rem;
    font-size: clamp(1.794rem, 1.82vw + 1.37rem, 2.405rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__section p {
    margin: 0 0 1.15rem;
    color: rgba(232, 240, 252, 0.92);
    font-size: clamp(1.378rem, 0.59vw + 1.27rem, 1.56rem);
    line-height: 1.75;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__section p:last-child {
    margin-bottom: 0;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__list {
    margin: 0 0 1.15rem;
    padding-left: 1.75rem;
    color: rgba(232, 240, 252, 0.92);
    font-size: clamp(1.365rem, 0.52vw + 1.26rem, 1.534rem);
    line-height: 1.72;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__list li {
    margin-bottom: 0.65rem;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__list strong {
    color: #fff;
    font-weight: 700;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__list--links {
    list-style: disc;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__muted {
    margin-top: 0.95rem;
    padding: clamp(1.05rem, 2.5vw, 1.35rem) clamp(1.1rem, 2.8vw, 1.45rem);
    background: rgba(0, 0, 0, 0.22);
    border-radius: 14px;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: rgba(0, 220, 190, 0.45);
    color: rgba(230, 238, 250, 0.88);
    font-size: clamp(1.3rem, 0.49vw + 1.22rem, 1.43rem);
    line-height: 1.7;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__muted--small {
    border-left-color: rgba(196, 163, 90, 0.55);
    font-size: clamp(1.235rem, 0.46vw + 1.17rem, 1.365rem);
}

body.kodiq-page--legal-digital .kodiq-legal-digital__link {
    color: var(--kodiq-gold, #c4a35a);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.kodiq-page--legal-digital .kodiq-legal-digital__link:hover {
    color: #fff;
}

.kodiq-pl-block {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
}

.kodiq-pl-block:first-of-type {
    padding-top: 1rem;
}

body.kodiq-page--services .kodiq-services-mosaic {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.kodiq-page--services .kodiq-services-section--band {
    background: rgba(6, 12, 24, 0.38);
    border-top: 1px solid rgba(0, 220, 190, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

/* features02 */
body.kodiq-page--services .kodiq-pl-features02 .card {
    background: transparent;
    border: none;
    box-shadow: none;
}

body.kodiq-page--services .kodiq-pl-features02 .mbr-label {
    color: rgba(0, 220, 190, 0.95);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

body.kodiq-page--services .kodiq-pl-features02 .mbr-section-title {
    color: #fff;
    font-size: clamp(2.25rem, 2.8vw + 1.2rem, 3.4rem);
    margin-bottom: 1.25rem;
}

body.kodiq-page--services .kodiq-pl-features02 .item-wrapper {
    background: rgba(8, 14, 24, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    padding: 1rem 1.15rem;
    margin-bottom: 0.75rem;
}

body.kodiq-page--services .kodiq-pl-features02 .item-title {
    color: #fff;
    font-size: 1.35rem;
}

body.kodiq-page--services .kodiq-pl-features02 .item-text {
    color: rgba(235, 241, 252, 0.9);
    font-size: 1.12rem;
    line-height: 1.5;
    margin-bottom: 0;
}

body.kodiq-page--services .kodiq-pl-features02 .image-wrapper img {
    border-radius: 12px;
    width: 100%;
    max-height: 380px;
    object-fit: cover;
}

body.kodiq-page--services .kodiq-pl-features02 .main-btn {
    margin-top: 1rem;
    text-align: center;
}

body.kodiq-page--services .kodiq-pl-features02 .main-btn .btn-white {
    background: linear-gradient(145deg, rgba(0, 184, 169, 0.88), rgba(10, 92, 86, 0.96));
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    padding: 0.65rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

@media (min-width: 992px) {
    body.kodiq-page--services .kodiq-features02-flex {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row-reverse;
        align-items: flex-start;
    }

    body.kodiq-page--services .kodiq-features02-flex > .card {
        flex: 1 1 0;
        width: 50%;
        max-width: 50%;
    }
}

/* article03 */
body.kodiq-page--services .kodiq-pl-article03 {
    text-align: center;
}

body.kodiq-page--services .kodiq-pl-article03 .mbr-label {
    color: var(--kodiq-gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.kodiq-page--services .kodiq-pl-article03 .mbr-section-title {
    color: #fff;
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}

body.kodiq-page--services .kodiq-pl-article03 .title-wrapper {
    margin-bottom: 1.25rem;
}

body.kodiq-page--services .kodiq-pl-article03 .btn-black {
    background: linear-gradient(145deg, rgba(0, 184, 169, 0.75), rgba(12, 72, 68, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    border-radius: 6px;
    padding: 0.55rem 1.35rem;
}

body.kodiq-page--services .kodiq-pl-article03 .kodiq-services-brand-frame {
    background: rgba(5, 10, 20, 0.52);
    border: 1px solid rgba(0, 220, 190, 0.22);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.35rem) clamp(1.25rem, 3vw, 2.75rem);
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

body.kodiq-page--services .kodiq-pl-article03 .kodiq-services-brand-img {
    object-fit: contain;
    max-height: 150px;
    width: auto;
    max-width: 100%;
}

/* numbers01 */
body.kodiq-page--services .kodiq-pl-numbers .item-number {
    color: #fff;
    font-size: clamp(2.5rem, 3vw + 1rem, 4rem);
    margin-bottom: 0.35rem;
}

body.kodiq-page--services .kodiq-pl-numbers .item-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

body.kodiq-page--services .kodiq-pl-numbers .item-wrapper {
    text-align: center;
    padding: 1.35rem 1rem;
    background: rgba(8, 14, 24, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

/* article01 */
body.kodiq-page--services .kodiq-pl-article01-card {
    background: rgba(8, 16, 32, 0.72);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    border: 1px solid rgba(0, 220, 190, 0.22);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

body.kodiq-page--services .kodiq-pl-article01 .mbr-section-title,
body.kodiq-page--services .kodiq-pl-article01 .mbr-section-subtitle {
    color: #fff !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    background-image: none !important;
    font-size: clamp(2rem, 2.2vw + 1.1rem, 2.85rem);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

body.kodiq-page--services .kodiq-pl-article01 .mbr-section-btn .btn-black {
    background: linear-gradient(145deg, rgba(0, 184, 169, 0.9), rgba(12, 120, 105, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
}

body.kodiq-page--services .kodiq-pl-article01 .mbr-section-btn .btn {
    margin-top: 0.5rem;
}

body.kodiq-page--services .kodiq-pl-article01 .image-wrapper img {
    border-radius: 12px;
    max-height: 280px;
    width: 100%;
    object-fit: cover;
}

/* FAQ list01 */
body.kodiq-page--services .kodiq-pl-faq .mbr-section-title {
    color: #fff;
    font-size: clamp(2rem, 2.5vw + 1rem, 2.75rem);
    margin-bottom: 1.25rem;
}

body.kodiq-page--services .kodiq-pl-faq .kodiq-pl-faq-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

body.kodiq-page--services .kodiq-pl-faq .panel {
    border: 1px solid rgba(0, 220, 190, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    margin-bottom: 0.75rem;
    background: rgba(8, 16, 32, 0.68);
    backdrop-filter: blur(10px);
}

body.kodiq-page--services .kodiq-pl-faq .panel-heading {
    background: transparent;
    border: none;
}

body.kodiq-page--services .kodiq-pl-faq .panel-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.08rem;
}

body.kodiq-page--services .kodiq-pl-faq .panel-body {
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
}

body.kodiq-page--services .kodiq-pl-faq .panel-text {
    color: rgba(232, 240, 252, 0.88);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
}

body.kodiq-page--services .kodiq-pl-faq .kodiq-faq-caret {
    background: transparent;
    color: rgba(0, 220, 190, 0.95);
    font-size: 0.7rem;
}

/* pricing02 */
body.kodiq-page--services .kodiq-pl-pricing .mbr-section-title {
    color: #fff;
    font-size: clamp(2.1rem, 2.6vw + 1rem, 3rem);
    margin-bottom: 1.5rem;
}

body.kodiq-page--services .kodiq-pl-pricing .item-wrapper {
    background: rgba(8, 16, 32, 0.72);
    border: 1px solid rgba(0, 220, 190, 0.2);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    margin-bottom: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(10px);
}

body.kodiq-page--services .kodiq-pl-pricing .item-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
    border-color: rgba(0, 220, 190, 0.38);
}

body.kodiq-page--services .kodiq-pl-pricing .item-img img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

body.kodiq-page--services .kodiq-pl-pricing .item-price {
    color: rgba(0, 220, 190, 0.92);
    font-size: 1.5rem;
}

body.kodiq-page--services .kodiq-pl-pricing .item-title {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.35rem;
}

body.kodiq-page--services .kodiq-pl-pricing .item-text {
    color: rgba(232, 240, 252, 0.86);
    font-size: 1.05rem;
}

body.kodiq-page--services .kodiq-pl-pricing .card-box {
    padding: 1.25rem 1.1rem 1.5rem;
    background: rgba(4, 8, 16, 0.35);
}

body.kodiq-page--services .kodiq-pl-pricing .item-btn .btn-black-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(0, 220, 190, 0.55);
    border-radius: 8px;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
}

body.kodiq-page--services .kodiq-pl-pricing .item-btn .btn-black-outline:hover {
    background: rgba(0, 220, 190, 0.15);
    border-color: rgba(0, 220, 190, 0.85);
    color: #fff !important;
}

/* Clases Mobirise (.display-*) sin hoja theme: tipografía visible en bloques plantilla */
body.kodiq-page--services .kodiq-pl-block .mbr-fonts-style.display-2,
body.kodiq-page--services .kodiq-pl-block h2.mbr-section-title.display-2 {
    font-size: clamp(2rem, 2.5vw + 1rem, 2.85rem) !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    color: #fff !important;
}

body.kodiq-page--services .kodiq-pl-block .mbr-fonts-style.display-4,
body.kodiq-page--services .kodiq-pl-block p.item-text.display-4 {
    font-size: 1.2rem !important;
    line-height: 1.55 !important;
}

body.kodiq-page--services .kodiq-pl-block .mbr-fonts-style.display-5,
body.kodiq-page--services .kodiq-pl-block h4.item-title.display-5 {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

body.kodiq-page--services .kodiq-pl-features02 .mbr-section-title {
    font-size: clamp(2.4rem, 3vw + 1.1rem, 3.35rem) !important;
}

body.kodiq-page--services .kodiq-pl-features02 .item-title {
    font-size: 1.5rem !important;
}

body.kodiq-page--services .kodiq-pl-features02 .item-text {
    font-size: 1.22rem !important;
}

body.kodiq-page--services .kodiq-pl-pricing .mbr-fonts-style.display-2 {
    color: rgba(0, 220, 190, 0.92) !important;
}

body.kodiq-page--services .kodiq-pl-pricing .item-title.display-5 {
    color: rgba(255, 255, 255, 0.96) !important;
}

body.kodiq-page--services .kodiq-pl-pricing .item-text.display-4 {
    font-size: 1.12rem !important;
    color: rgba(232, 240, 252, 0.86) !important;
}

/* Planes + beneficios (trasladados desde home): sin capa extra, tipografía mayor */
body.kodiq-page--services .kodiq-services-home-stack {
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 220, 190, 0.14);
}

body.kodiq-page--services .kodiq-services-home-stack #beneficios.service-content::before,
body.kodiq-page--services .kodiq-services-home-stack #planes.service-content::before {
    opacity: 0 !important;
    background: transparent !important;
}

body.kodiq-page--services .kodiq-services-home-stack #beneficios.service-content,
body.kodiq-page--services .kodiq-services-home-stack #planes.service-content {
    background: transparent !important;
    padding-top: clamp(2.25rem, 4vw, 3.75rem) !important;
    padding-bottom: clamp(2.25rem, 4vw, 3.75rem) !important;
}

body.kodiq-page--services .kodiq-services-home-stack #beneficios .kodiq-beneficios-title.section-title,
body.kodiq-page--services .kodiq-services-home-stack #planes .kodiq-planes-title.section-title {
    font-size: clamp(2.5rem, 3.2vw + 1rem, 3.65rem) !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-beneficios-subtitle,
body.kodiq-page--services .kodiq-services-home-stack .kodiq-planes-subtitle {
    font-size: 1.3rem !important;
    line-height: 1.68 !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-beneficio-title {
    font-size: 1.4rem !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-beneficio-desc {
    font-size: 1.15rem !important;
    line-height: 1.65 !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-beneficio-link {
    font-size: 1.05rem !important;
    padding-top: 0.9rem !important;
}

body.kodiq-page--services .kodiq-services-home-stack #planes .kodiq-plan-card .plan-name {
    font-size: clamp(1.4rem, 1.1vw + 1.05rem, 1.7rem) !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-plan-price {
    font-size: clamp(2.15rem, 2vw + 1.2rem, 2.9rem) !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-plan-features {
    font-size: 1.1rem !important;
    line-height: 1.62 !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-plan-btn {
    font-size: 1.05rem !important;
    padding: 0.85rem 1rem !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-resultados-title {
    font-size: clamp(1.65rem, 1.5vw + 1rem, 2.2rem) !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-resultados-desc {
    font-size: 1.14rem !important;
    line-height: 1.68 !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-resultados-kicker {
    font-size: 0.88rem !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-resultados-stat-card strong {
    font-size: 1.15rem !important;
}

body.kodiq-page--services .kodiq-services-home-stack .kodiq-resultados-cta {
    font-size: 0.95rem !important;
    padding: 0.72rem 1.05rem !important;
}

.kodiq-services-2026 {
    position: relative;
}

.kodiq-services-2026__intro {
    max-width: 52rem;
    margin-bottom: 1.6rem;
}

.kodiq-services-2026__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 1.64rem;
    letter-spacing: 0.23em;
    text-transform: uppercase;
    color: rgba(0, 220, 190, 0.85);
    font-weight: 700;
}

.kodiq-services-2026__title {
    margin: 0 0 0.65rem;
    font-size: clamp(2.9rem, 4vw + 1.9rem, 4.7rem);
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
}

.kodiq-services-2026__lead {
    margin: 0;
    color: rgba(230, 240, 255, 0.78);
    font-size: 2.1rem;
    line-height: 1.35;
}

.kodiq-services-2026__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.kodiq-s26-card {
    position: relative;
    padding: 1.1rem 1.1rem 1.2rem;
    border: 1px solid rgba(120, 180, 255, 0.22);
    border-radius: 14px;
    background:
        radial-gradient(140% 120% at 0% 0%, rgba(0, 184, 169, 0.2) 0%, rgba(0, 184, 169, 0) 55%),
        linear-gradient(155deg, rgba(16, 28, 48, 0.86) 0%, rgba(9, 16, 28, 0.85) 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.kodiq-s26-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 220, 190, 0.5);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.kodiq-s26-card__chip {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 1.36rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #8bf4df;
    font-weight: 700;
}

.kodiq-s26-card h3 {
    margin: 0 0 0.38rem;
    font-size: 2.24rem;
    line-height: 1.25;
    color: #fff;
}

.kodiq-s26-card p {
    margin: 0;
    color: rgba(230, 240, 255, 0.75);
    font-size: 1.92rem;
    line-height: 1.58;
}

.kodiq-services-2026__cta {
    margin-top: 1.35rem;
}

.kodiq-services-2026__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    padding: 1.3rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #18a85b 0%, #0a8d50 45%, #077a66 100%);
    box-shadow: 0 10px 24px rgba(8, 35, 25, 0.42);
}

.kodiq-services-2026__btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 860px) {
    .kodiq-services-2026__grid {
        grid-template-columns: 1fr;
    }
}

/* ——— Hero: overlay + splash logo ——— */
.kodiq-hero {
    position: relative;
    isolation: isolate;
}

/* Pantalla completa + sensación “cine”: tipografía grande y aire */
.parallax-content.baner-content.kodiq-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding-top: max(1.25rem, env(safe-area-inset-top)) !important;
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    height: auto !important;
    box-sizing: border-box;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 48%;
    /* Solo desplazamiento: compatible con cover y sin saltos bruscos */
    animation: kodiqHeroKenBurns 36s ease-in-out infinite alternate;
}

@keyframes kodiqHeroKenBurns {
    0% {
        background-position: 44% 38%;
    }
    100% {
        background-position: 56% 62%;
    }
}

.parallax-content.baner-content.kodiq-hero .kodiq-hero-inner {
    width: 100%;
    flex: 1 1 auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70vh;
    min-height: 70dvh;
}

.kodiq-hero-inner--wide {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 4vw, 2.5rem);
    padding-right: clamp(1rem, 4vw, 2.5rem);
}

/* Tema Vanilla añade ::before oscuro; lo suavizamos para ver mejor la foto */
.baner-content.kodiq-hero::before {
    background-color: rgba(0, 0, 0, 0.22) !important;
}

/* Capa extra: navy + toque turquesa (marca KODIQ) */
.kodiq-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 80% at 80% 20%, var(--kodiq-turquoise-soft) 0%, transparent 45%),
        linear-gradient(
            165deg,
            rgba(10, 22, 40, 0.55) 0%,
            rgba(8, 18, 34, 0.35) 45%,
            rgba(6, 14, 28, 0.52) 100%
        );
    animation: kodiqGradientBreathe 14s ease-in-out infinite;
}

@keyframes kodiqGradientBreathe {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.88;
    }
}

/* Viñeta cinematográfica */
.kodiq-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 0%, rgba(5, 8, 14, 0.55) 100%);
}

/* Ornamento superior (línea dorada animada) */
.kodiq-hero-ornament {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.kodiq-hero-ornament__line {
    display: block;
    height: 4px;
    width: min(160px, 28vw);
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--kodiq-turquoise-soft) 12%,
        var(--kodiq-gold-bright) 50%,
        var(--kodiq-turquoise-soft) 88%,
        transparent
    );
    box-shadow:
        0 0 20px rgba(0, 184, 169, 0.35),
        0 0 28px rgba(242, 201, 76, 0.45);
    transform-origin: center;
}

/* Splash: logo enorme; fondo casi opaco para que no se filtre el hero detrás */
.kodiq-hero-splash {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(6, 14, 28, 0.95);
    background-image: radial-gradient(
        ellipse 75% 65% at 50% 42%,
        rgba(0, 120, 110, 0.18) 0%,
        rgba(10, 22, 40, 0.92) 55%,
        rgba(5, 10, 22, 0.98) 100%
    );
    animation: kodiqSplashSequence var(--kodiq-splash-duration) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.kodiq-logo-splash {
    max-width: min(96vw, 920px);
    width: auto;
    height: auto;
    max-height: min(52vh, 520px);
    object-fit: contain;
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.6));
    animation: kodiqLogoReveal 1.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.kodiq-hero-tagline {
    margin-top: clamp(1rem, 3vh, 2rem);
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(0.78rem, 1.8vw, 1rem);
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--kodiq-turquoise-bright);
    opacity: 0;
    animation: kodiqTaglineFade 1.45s ease 0.18s forwards;
}

@keyframes kodiqLogoReveal {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(12px);
    }
    18% {
        opacity: 1;
        transform: scale(1.02) translateY(0);
    }
    55% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes kodiqTaglineFade {
    0%,
    20% {
        opacity: 0;
        transform: translateY(8px);
    }
    40% {
        opacity: 0.9;
        transform: translateY(0);
    }
    100% {
        opacity: 0.85;
    }
}

@keyframes kodiqSplashSequence {
    0%,
    52% {
        opacity: 1;
        visibility: visible;
    }
    74% {
        opacity: 0;
        visibility: visible;
    }
    99.5% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@keyframes kodiqHeroInnerUnveil {
    from {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    to {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Contenido del hero: oculto hasta que termine el splash (evita traslape) */
.kodiq-hero-inner {
    position: relative;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: kodiqHeroInnerUnveil 0.28s ease var(--kodiq-inner-start) forwards;
}

@keyframes kodiqStaggerIn {
    from {
        opacity: 0;
        transform: translateY(36px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes kodiqOrnamentIn {
    from {
        opacity: 0;
        transform: scaleX(0.15);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes kodiqHighlightPulse {
    0%,
    100% {
        text-shadow:
            0 0 18px rgba(0, 184, 169, 0.35),
            0 0 22px rgba(242, 201, 76, 0.35);
    }
    50% {
        text-shadow:
            0 0 26px rgba(62, 232, 217, 0.45),
            0 0 32px rgba(255, 229, 102, 0.5);
    }
}

/* Ornamento: una sola vez tras el splash (carrusel o slide único) */
.kodiq-hero-inner .kodiq-hero-ornament__line {
    animation: kodiqOrnamentIn 1s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.05s) both;
}

/* Un solo bloque hero: animaciones escalonadas tras el splash */
.kodiq-hero--single .kodiq-hero-title {
    animation: kodiqStaggerIn 1s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.12s) both;
}

.kodiq-hero--single .kodiq-hero-lead {
    animation: kodiqStaggerIn 0.95s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.35s) both;
}

.kodiq-hero--single .kodiq-hero-highlight {
    animation:
        kodiqStaggerIn 0.9s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.55s) both,
        kodiqHighlightPulse 4s ease-in-out calc(var(--kodiq-hero-splash-end) + 1.2s) infinite;
}

.kodiq-hero--single .kodiq-hero-actions {
    animation: kodiqStaggerIn 0.9s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.78s) both;
}

/* Carrusel: entrada al activar cada slide */

.kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-title,
.kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-lead,
.kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-highlight,
.kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-actions {
    opacity: 0;
    transform: translateY(28px);
}

.kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-title {
    animation: kodiqStaggerIn 0.85s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.12s) forwards;
}

.kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-lead {
    animation: kodiqStaggerIn 0.82s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.28s) forwards;
}

.kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-highlight {
    animation:
        kodiqStaggerIn 0.8s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.42s) forwards,
        kodiqHighlightPulse 4s ease-in-out calc(var(--kodiq-hero-splash-end) + 1.2s) infinite;
}

.kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-actions {
    animation: kodiqStaggerIn 0.8s var(--kodiq-ease-out-expo) calc(var(--kodiq-hero-splash-end) + 0.55s) forwards;
}

/* Tipografía ejecutiva en hero — escala “display” */
.kodiq-hero-inner .kodiq-hero-title {
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4.8vw + 1.4rem, 5.65rem);
    line-height: 1.08;
    color: #fff;
    letter-spacing: -0.02em;
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.65), 0 1px 0 rgba(255, 255, 255, 0.06);
}

.kodiq-hero-inner .kodiq-hero-lead {
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(1.22rem, 2vw + 0.7rem, 1.95rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.94);
    max-width: 48rem;
    margin: clamp(1.35rem, 2.5vw, 2rem) auto 0;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
}

.kodiq-hero-inner .kodiq-hero-highlight {
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(1.05rem, 1.2vw + 0.65rem, 1.45rem);
    font-weight: 600;
    color: var(--kodiq-gold-bright);
    margin-top: clamp(1.25rem, 2vw, 1.75rem);
    letter-spacing: 0.06em;
}

/* Botones hero — estilo ejecutivo */
.kodiq-hero-inner .kodiq-hero-actions {
    margin-top: clamp(2rem, 3.5vw, 2.75rem);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.kodiq-hero-inner .kodiq-btn {
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.05rem 2.15rem;
    border-radius: 3px;
    transition:
        background 0.3s,
        color 0.3s,
        border-color 0.3s,
        box-shadow 0.3s,
        transform 0.35s var(--kodiq-ease-out-expo);
    border: 1px solid transparent;
}

.kodiq-hero-inner .kodiq-btn:hover {
    transform: translateY(-3px);
}

.kodiq-hero-inner .kodiq-btn--primary {
    background: linear-gradient(145deg, var(--kodiq-gold-bright) 0%, var(--kodiq-gold) 45%, #c9a227 100%);
    color: var(--kodiq-navy);
    border-color: rgba(255, 229, 102, 0.55);
    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(0, 184, 169, 0.2);
}

.kodiq-hero-inner .kodiq-btn--primary:hover {
    background: linear-gradient(145deg, #fff0a8 0%, var(--kodiq-gold-bright) 100%);
    color: var(--kodiq-navy);
}

.kodiq-hero-inner .kodiq-btn--ghost {
    background: rgba(10, 22, 40, 0.45);
    color: var(--kodiq-ink);
    border-color: rgba(62, 232, 217, 0.45);
}

.kodiq-hero-inner .kodiq-btn--ghost:hover {
    background: rgba(0, 184, 169, 0.15);
    border-color: var(--kodiq-turquoise-bright);
    color: #fff;
}

/* Logo pequeño en slide (no sustituye al splash; opcional junto a copy) */
.kodiq-hero-inner .logo-container .company-logo.kodiq-logo-inline {
    max-height: 72px !important;
    width: auto;
    opacity: 0.95;
}

/* Carrusel Bootstrap 4: indicadores discretos */
.kodiq-hero .carousel-indicators {
    bottom: 1.25rem;
    z-index: 5;
}

.kodiq-hero .carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.35);
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
}

.kodiq-hero .carousel-indicators .active {
    background-color: var(--kodiq-gold-bright);
    box-shadow: 0 0 0 2px rgba(0, 184, 169, 0.45);
}

/* Scroll antes de terminar intro: carrusel visible al instante (evita esperar 3–4s) */
.kodiq-hero.kodiq-hero--skip-intro .kodiq-hero-splash {
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.kodiq-hero.kodiq-hero--skip-intro .kodiq-hero-inner {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.kodiq-hero.kodiq-hero--skip-intro .kodiq-hero-inner .kodiq-hero-ornament__line,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--single .kodiq-hero-title,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--single .kodiq-hero-lead,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--single .kodiq-hero-highlight,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--single .kodiq-hero-actions,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-title,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-lead,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-highlight,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-actions,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-title,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-lead,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-highlight,
.kodiq-hero.kodiq-hero--skip-intro.kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* ——— Sobre nosotros ——— */
.kodiq-sobre-wrap {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    background-size: cover;
    background-position: center;
    background-image: url(../img/chilpo2.jpg);
    color: #e8eaed;
}

.kodiq-sobre-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 14, 22, 0.78) 0%, rgba(18, 24, 36, 0.72) 100%);
    z-index: 0;
}

.kodiq-sobre-wrap .container {
    position: relative;
    z-index: 1;
}

.kodiq-sobre-wrap .section-title,
.kodiq-sobre-wrap h2.section-title {
    color: #fff;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: clamp(1.05rem, 1.4vw + 0.75rem, 1.55rem);
    margin-bottom: 2.2rem;
    opacity: 0.96;
}

.kodiq-glass-panel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    padding: clamp(2rem, 2.8vw, 2.75rem) clamp(1.5rem, 2.4vw, 2.2rem);
    backdrop-filter: blur(8px);
}

.kodiq-sobre-wrap h3 {
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.95rem, 2vw + 1rem, 2.85rem);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.65rem;
}

.kodiq-sobre-wrap h4.kodiq-accent {
    color: var(--kodiq-gold) !important;
    font-size: clamp(0.88rem, 0.55vw + 0.75rem, 1.1rem);
    letter-spacing: 0.19em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.kodiq-sobre-wrap .line-dec {
    background: var(--kodiq-gold);
    opacity: 0.7;
}

.kodiq-sobre-wrap p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.08rem, 0.9vw + 0.82rem, 1.38rem);
    line-height: 1.8;
}

.kodiq-sobre-wrap .btn-primary {
    background: transparent;
    border: 1px solid var(--kodiq-gold);
    color: var(--kodiq-gold);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.45rem;
    border-radius: 2px;
}

.kodiq-sobre-wrap .btn-primary:hover {
    background: var(--kodiq-gold-soft);
    color: #fff;
    border-color: var(--kodiq-gold);
}

.kodiq-sobre-wrap .btn-default {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--kodiq-ink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.45rem;
}

.kodiq-sobre-wrap .carousel-control {
    width: 8%;
    opacity: 0.7;
}

.kodiq-sobre-wrap .carousel-control:hover {
    opacity: 1;
}

/* Secciones dinámicas (planes, FAQ, etc.) */
.kodiq-section-title {
    margin-bottom: 2rem;
}

.kodiq-plan-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 320px;
}

.kodiq-plan-card.popular {
    border-color: rgba(196, 163, 90, 0.55);
    box-shadow: 0 0 20px rgba(196, 163, 90, 0.15);
}

.kodiq-plan-card .plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.kodiq-faq .panel {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.12);
}

.kodiq-faq .panel-heading {
    cursor: pointer;
}

.kodiq-red-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.kodiq-testimonial-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    margin: 0.5rem;
}

/* Testimonios (antes portafolio): anula estilos del theme y Owl v1 que rompían el layout */
.kodiq-testimonios-wrap.projects-content {
    min-height: auto !important;
    padding-top: clamp(3.25rem, 10vw, 5.5rem) !important;
    padding-bottom: clamp(3.25rem, 10vw, 5.5rem) !important;
    background-attachment: scroll !important;
}

.kodiq-testimonios-wrap {
    position: relative;
    color: #fff;
}

.kodiq-testimonios-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(10, 22, 40, 0.9) 0%, rgba(7, 16, 32, 0.85) 55%, rgba(3, 12, 24, 0.92) 100%);
    pointer-events: none;
    z-index: 0;
}

.kodiq-testimonios-wrap .container {
    position: relative;
    z-index: 1;
}

.kodiq-testimonios-wrap h2.kodiq-testimonios-title.section-title {
    color: #fff !important;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 2.4vw + 1rem, 2.85rem) !important;
    letter-spacing: 0.02em;
    text-transform: none;
    text-align: center !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.kodiq-testimonios-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.08rem, 0.9vw + 0.85rem, 1.35rem);
    font-weight: 600;
    margin-bottom: 2.25rem;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.kodiq-testimonios-stats-row {
    margin-bottom: 1.75rem;
}

.kodiq-testimonios-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(62, 232, 217, 0.35);
    border-radius: 10px;
    padding: 1.15rem 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.kodiq-testimonios-stat i {
    color: var(--kodiq-gold-bright);
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
}

.kodiq-testimonios-stat h3 {
    margin: 0 0 0.35rem;
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.25rem, 1.2vw + 0.85rem, 1.65rem);
    line-height: 1.2;
}

.kodiq-testimonios-stat small {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: clamp(0.88rem, 0.5vw + 0.75rem, 1.02rem);
    line-height: 1.35;
}

/* Carrusel: altura uniforme y sin herencias raras del theme */
.kodiq-testimonios-wrap #owl-testimonials .owl-stage {
    display: flex;
    align-items: stretch;
}

.kodiq-testimonios-wrap #owl-testimonials .owl-item {
    display: flex;
    align-items: stretch;
}

.kodiq-testimonios-wrap #owl-testimonials .owl-item .item {
    display: flex;
    width: 100%;
}

.kodiq-testimonio-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(14, 30, 52, 0.97) 0%, rgba(9, 22, 40, 0.94) 100%);
    border: 1px solid rgba(62, 232, 217, 0.3);
    border-radius: 12px;
    padding: 1.5rem 1.4rem 1.65rem;
    margin: 0.35rem 0.5rem 1.5rem;
    min-height: 280px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.kodiq-testimonio-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--kodiq-gold-bright) 0%, var(--kodiq-turquoise-bright) 100%);
    border-radius: 12px 0 0 12px;
}

.kodiq-testimonio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-left: 0.35rem;
}

.kodiq-testimonio-heading {
    flex: 1;
    min-width: 0;
}

.kodiq-testimonio-autor {
    margin: 0;
    font-size: clamp(1.08rem, 0.8vw + 0.85rem, 1.28rem);
    color: #fff;
    line-height: 1.35;
}

.kodiq-testimonio-autor strong {
    font-weight: 800;
    display: block;
}

.kodiq-testimonio-empresa {
    display: block;
    margin-top: 0.2rem;
    color: var(--kodiq-turquoise-bright);
    font-weight: 700;
    font-size: 0.95em;
}

.kodiq-testimonio-texto {
    flex: 1;
    margin: 0;
    padding-left: 0.35rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.05rem, 0.65vw + 0.92rem, 1.2rem);
    line-height: 1.78;
    font-weight: 600;
}

/* Avatar: tamaño fijo (evita “ovalos” gigantes si alguna regla fuerza img al 100%) */
.kodiq-testimonios-wrap #owl-testimonials img.kodiq-testimonio-avatar,
.kodiq-testimonios-wrap .kodiq-testimonio-card img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    min-width: 80px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.kodiq-testimonios-wrap .kodiq-testimonio-avatar {
    border: 3px solid var(--kodiq-gold-bright);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.kodiq-testimonio-avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--kodiq-gold-bright);
    font-size: 1.75rem;
}

/* Owl Carousel 2: flechas y puntos legibles, sin rombos rotados del CSS antiguo */
.kodiq-testimonios-wrap .kodiq-testimonios-carousel .owl-nav {
    margin-top: 0.5rem;
    text-align: center;
}

.kodiq-testimonios-wrap .kodiq-testimonios-carousel .owl-nav button.owl-prev,
.kodiq-testimonios-wrap .kodiq-testimonios-carousel .owl-nav button.owl-next {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    height: 44px !important;
    margin: 0 0.35rem;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(62, 232, 217, 0.45) !important;
    color: #fff !important;
    font-size: 1.35rem !important;
    line-height: 1 !important;
    transform: none !important;
    box-shadow: none !important;
}

.kodiq-testimonios-wrap .kodiq-testimonios-carousel .owl-nav button.owl-prev:hover,
.kodiq-testimonios-wrap .kodiq-testimonios-carousel .owl-nav button.owl-next:hover {
    background: rgba(0, 184, 169, 0.25) !important;
    border-color: var(--kodiq-turquoise-bright) !important;
}

.kodiq-testimonios-wrap .kodiq-testimonios-carousel .owl-dots {
    margin-top: 0.75rem;
}

.kodiq-testimonios-wrap .kodiq-testimonios-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 6px 5px;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(62, 232, 217, 0.35);
}

.kodiq-testimonios-wrap .kodiq-testimonios-carousel .owl-dots .owl-dot.active span {
    background: var(--kodiq-gold-bright) !important;
    border-color: var(--kodiq-gold-bright);
}

.text-primary {
    color: #337ab7 !important;
}

.sobre-carousel-control {
    width: 5%;
}

/* Reducir choque con h1 gigante del theme en hero MVC */
.baner-content.kodiq-hero .first-content h1.kodiq-hero-title {
    font-size: clamp(2.5rem, 4.8vw + 1.4rem, 5.65rem) !important;
    text-transform: none;
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* Barra lateral del theme Vanilla: oculta (navegación superior) */
.fixed-side-navbar {
    display: none !important;
}

/* ——— Navbar superior sticky (aparece al hacer scroll) ——— */
.kodiq-topnav {
    z-index: 1060;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease,
        visibility 0.4s,
        box-shadow 0.35s ease,
        background 0.35s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* --always: páginas internas (navAlwaysVisible); el JS quita --visible arriba del todo */
.kodiq-topnav.kodiq-topnav--visible,
.kodiq-topnav.kodiq-topnav--always {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.97) 0%, rgba(8, 16, 32, 0.95) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(0, 184, 169, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.kodiq-navbar-logo {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.kodiq-navbar-brand {
    margin-right: 1rem;
}

.kodiq-topnav .nav-link {
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(1.02rem, 0.65vw + 0.82rem, 1.28rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94) !important;
    padding: 0.8rem 0.88rem !important;
    transition: color 0.2s;
}

.kodiq-topnav .nav-link:hover,
.kodiq-topnav .nav-link.active {
    color: var(--kodiq-gold) !important;
}

.kodiq-navbar-toggler {
    padding: 0;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 163, 90, 0.35);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04) !important;
    background-image: none !important;
    color: #f4f6f8;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.kodiq-navbar-toggler:hover {
    border-color: rgba(196, 163, 90, 0.55);
    background: rgba(255, 255, 255, 0.07) !important;
}

.kodiq-navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(196, 163, 90, 0.45);
}

/* Hamburguesa (3 barras HTML → X). Evita bugs de transform en <rect> SVG en móvil. */
.kodiq-burger {
    position: relative;
    display: block;
    width: 26px;
    height: 20px;
}

.kodiq-burger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.28s ease,
        top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.kodiq-burger__line:nth-child(1) {
    top: 0;
}

.kodiq-burger__line:nth-child(2) {
    top: 9px;
}

.kodiq-burger__line:nth-child(3) {
    top: 18px;
}

.kodiq-navbar-toggler[aria-expanded="true"] {
    border-color: rgba(196, 163, 90, 0.65);
    background: rgba(196, 163, 90, 0.12) !important;
    color: var(--kodiq-gold);
}

.kodiq-navbar-toggler[aria-expanded="true"] .kodiq-burger__line:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.kodiq-navbar-toggler[aria-expanded="true"] .kodiq-burger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.kodiq-navbar-toggler[aria-expanded="true"] .kodiq-burger__line:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

.kodiq-nav-wa {
    background: linear-gradient(145deg, #1a9d4f 0%, #0f7a48 100%) !important;
    border: none !important;
    font-size: 0.95rem !important;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.82rem 1.38rem !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.kodiq-nav-wa .fab {
    font-size: 1.15em;
    margin-right: 0.4rem;
    vertical-align: -0.08em;
}

.kodiq-nav-wa:hover {
    color: #fff !important;
    filter: brightness(1.08);
}

@media (max-width: 991px) {
    .kodiq-topnav .navbar-collapse {
        margin-top: 0.75rem;
        padding: 1rem 1rem 1.5rem;
        border-top: 1px solid rgba(196, 163, 90, 0.35);
        border-radius: 0 0 10px 10px;
        background: linear-gradient(180deg, rgba(10, 14, 22, 0.97) 0%, rgba(8, 11, 18, 0.98) 100%);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    }

    .kodiq-navbar-links {
        padding-top: 0.25rem;
        padding-bottom: 0.5rem;
    }

    .kodiq-topnav .nav-link {
        font-size: 1.02rem;
        letter-spacing: 0.08em;
        padding: 0.78rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .kodiq-navbar-cta {
        margin-top: 0.75rem !important;
    }

    .kodiq-navbar-cta .kodiq-nav-wa {
        width: 100%;
        text-align: center;
        font-size: 1.02rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.06em !important;
        line-height: 1.35;
        padding: 1rem 1.15rem !important;
        color: #fff !important;
        border-radius: 4px !important;
        box-shadow:
            0 4px 14px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.18);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    }

    .kodiq-navbar-cta .kodiq-nav-wa .fab {
        font-size: 1.15em;
        margin-right: 0.35rem;
        vertical-align: -0.1em;
    }
}

@media (max-width: 768px) {
    .kodiq-logo-splash {
        max-width: min(90vw, 560px);
        max-height: min(48vh, 420px);
    }

    /* templatemo-main fuerza .baner-content h1 a 64px en móvil; lo anulamos aquí */
    .baner-content.kodiq-hero h1.kodiq-hero-title,
    .baner-content.kodiq-hero .first-content h1.kodiq-hero-title {
        font-size: clamp(2rem, 7vw + 0.5rem, 2.85rem) !important;
        line-height: 1.12 !important;
    }

    .kodiq-hero-inner .kodiq-hero-lead {
        font-size: clamp(1.08rem, 4vw, 1.35rem);
        margin-top: 1.15rem !important;
    }

    .kodiq-hero-inner .kodiq-hero-highlight {
        font-size: clamp(0.98rem, 3.5vw, 1.18rem);
    }

    .kodiq-hero-inner .kodiq-hero-actions {
        flex-direction: column;
        margin-top: 1.65rem;
    }

    .kodiq-hero-inner .kodiq-btn {
        width: 100%;
        max-width: min(100%, 380px);
        font-size: 0.82rem;
        padding: 1rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kodiq-hero-splash,
    .kodiq-logo-splash,
    .kodiq-hero-tagline {
        animation: none !important;
    }
    .kodiq-hero-splash {
        display: none !important;
    }
    .kodiq-hero-inner {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        animation: none !important;
    }
    .parallax-content.baner-content.kodiq-hero {
        animation: none !important;
    }
    .kodiq-hero-gradient {
        animation: none !important;
    }
    .kodiq-hero-inner .kodiq-hero-ornament__line,
    .kodiq-hero--single .kodiq-hero-title,
    .kodiq-hero--single .kodiq-hero-lead,
    .kodiq-hero--single .kodiq-hero-highlight,
    .kodiq-hero--single .kodiq-hero-actions,
    .kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-title,
    .kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-lead,
    .kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-highlight,
    .kodiq-hero--carousel #heroCarousel .carousel-item .kodiq-hero-actions,
    .kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-title,
    .kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-lead,
    .kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-highlight,
    .kodiq-hero--carousel #heroCarousel .carousel-item.active .kodiq-hero-actions {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

/* Seccion experiencia: cards profesionales con imagen, descripcion y CTA */
.kodiq-experiencia-wrap.tabs-content {
    min-height: auto !important;
    padding-top: clamp(3.2rem, 8vw, 5rem) !important;
    padding-bottom: clamp(3.2rem, 8vw, 5rem) !important;
    background-attachment: scroll !important;
}

.kodiq-experiencia-wrap::before {
    background-color: rgba(4, 12, 24, 0.6) !important;
}

.kodiq-experiencia-title {
    font-family: "DM Sans", "Open Sans", sans-serif;
    color: #fff;
    text-align: center;
    font-size: clamp(1.9rem, 2.3vw + 1rem, 2.8rem);
    font-weight: 800;
    margin: 0 0 0.55rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.kodiq-experiencia-subtitle {
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-size: clamp(1.02rem, 0.7vw + 0.9rem, 1.25rem);
    line-height: 1.7;
    max-width: 52rem;
    margin: 0 auto 2.1rem;
}

.kodiq-experiencia-grid {
    row-gap: 1.45rem;
}

.kodiq-experiencia-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(165deg, rgba(14, 30, 52, 0.96), rgba(8, 18, 34, 0.94));
    border: 1px solid rgba(62, 232, 217, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.33);
}

.kodiq-experiencia-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid rgba(62, 232, 217, 0.28);
}

.kodiq-experiencia-body {
    padding: 1.2rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kodiq-experiencia-card-title {
    margin: 0 0 0.65rem;
    color: #fff;
    font-size: clamp(1.1rem, 0.5vw + 1rem, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
}

.kodiq-experiencia-desc {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.98rem, 0.35vw + 0.92rem, 1.08rem);
    line-height: 1.68;
    font-weight: 500;
}

.kodiq-experiencia-focus {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.94rem;
    line-height: 1.55;
}

.kodiq-experiencia-focus strong {
    color: var(--kodiq-gold-bright);
    font-weight: 700;
}

.kodiq-experiencia-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    color: #fff !important;
    background: linear-gradient(145deg, rgba(0, 184, 169, 0.95), rgba(12, 102, 95, 0.95));
    border: 1px solid rgba(62, 232, 217, 0.55);
    border-radius: 8px;
    padding: 0.58rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kodiq-experiencia-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, rgba(18, 204, 188, 0.95), rgba(20, 124, 116, 0.95));
}

@media (max-width: 767px) {
    .kodiq-experiencia-image {
        height: 200px;
    }
    .kodiq-experiencia-body {
        padding: 1rem 0.95rem 1.1rem;
    }
}

/* Beneficios + resultados: rediseño moderno con alto contraste */
#beneficios.service-content {
    min-height: auto !important;
    padding-top: clamp(3rem, 7vw, 4.8rem) !important;
    padding-bottom: clamp(3rem, 7vw, 4.8rem) !important;
    background-attachment: scroll !important;
}

#beneficios.service-content::before {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.kodiq-beneficios-showcase {
    position: relative;
    z-index: 1;
}

.kodiq-beneficios-hero {
    max-width: 54rem;
    margin: 0 auto 2.1rem;
}

#beneficios .kodiq-beneficios-title.section-title {
    color: #fff !important;
    font-size: clamp(1.9rem, 2vw + 1rem, 2.75rem) !important;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-weight: 800;
    margin-bottom: 0.5rem !important;
    text-transform: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.kodiq-beneficios-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.02rem, 0.7vw + 0.9rem, 1.22rem);
    line-height: 1.72;
}

.kodiq-beneficios-grid {
    row-gap: 1.35rem;
}

.kodiq-beneficio-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(12, 28, 48, 0.94), rgba(8, 18, 32, 0.92));
    border: 1px solid rgba(62, 232, 217, 0.24);
    border-radius: 14px;
    padding: 1.2rem 1.1rem 1.15rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.kodiq-beneficio-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 184, 169, 0.2);
    color: var(--kodiq-turquoise-bright);
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}

.kodiq-beneficio-title {
    margin: 0 0 0.55rem;
    color: #fff;
    font-size: clamp(1.06rem, 0.4vw + 0.96rem, 1.26rem);
    font-weight: 800;
    line-height: 1.35;
}

.kodiq-beneficio-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.96rem, 0.3vw + 0.9rem, 1.05rem);
    line-height: 1.65;
}

.kodiq-beneficio-link {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--kodiq-gold-bright) !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding-top: 0.8rem;
}

.kodiq-beneficio-link:hover {
    color: #fff !important;
}

.kodiq-resultados-wrap {
    margin-top: clamp(1.8rem, 4vw, 2.8rem);
    background: linear-gradient(150deg, rgba(10, 24, 43, 0.95), rgba(6, 15, 28, 0.93));
    border: 1px solid rgba(255, 229, 102, 0.22);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.33);
    overflow: hidden;
}

.kodiq-resultados-row {
    display: flex;
    align-items: stretch;
}

.kodiq-resultados-media {
    height: 100%;
    min-height: 100%;
}

.kodiq-resultados-image {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
}

.kodiq-resultados-content {
    padding: clamp(1.25rem, 2vw, 2rem);
}

.kodiq-resultados-kicker {
    display: inline-block;
    background: rgba(255, 229, 102, 0.14);
    border: 1px solid rgba(255, 229, 102, 0.45);
    color: var(--kodiq-gold-bright);
    border-radius: 999px;
    padding: 0.22rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kodiq-resultados-subkicker {
    margin: 0.65rem 0 0;
    color: var(--kodiq-turquoise-bright);
    font-weight: 700;
}

.kodiq-resultados-title {
    margin: 0.45rem 0 0.6rem;
    color: #fff;
    font-size: clamp(1.35rem, 1.2vw + 0.95rem, 2rem);
    font-weight: 800;
    line-height: 1.28;
}

.kodiq-resultados-desc {
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.08rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.kodiq-resultados-stats {
    row-gap: 0.8rem;
    margin-bottom: 1.1rem;
}

.kodiq-resultados-stat-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(62, 232, 217, 0.3);
    border-radius: 10px;
    padding: 0.7rem 0.65rem;
}

.kodiq-resultados-stat-card i {
    color: var(--kodiq-gold-bright);
    margin-right: 0.35rem;
}

.kodiq-resultados-stat-card strong {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
}

.kodiq-resultados-stat-card small {
    display: block;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.35;
}

.kodiq-resultados-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    background: linear-gradient(145deg, rgba(0, 184, 169, 0.95), rgba(15, 123, 113, 0.95));
    border: 1px solid rgba(62, 232, 217, 0.5);
    border-radius: 9px;
    padding: 0.62rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.86rem;
}

.kodiq-resultados-cta:hover {
    color: #fff !important;
    background: linear-gradient(145deg, rgba(18, 204, 188, 0.95), rgba(20, 124, 116, 0.95));
}

@media (max-width: 991px) {
    .kodiq-resultados-row {
        display: block;
    }
    .kodiq-resultados-image {
        min-height: 250px;
        max-height: 320px;
    }
}

/* Planes: estetica moderna, cercana y profesional */
#planes.service-content {
    position: relative;
    isolation: isolate;
    min-height: auto !important;
    padding-top: clamp(3rem, 7vw, 4.8rem) !important;
    padding-bottom: clamp(3rem, 7vw, 4.8rem) !important;
    background-attachment: scroll !important;
}

#planes.service-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(255, 229, 102, 0.12) 0%, transparent 45%),
        linear-gradient(160deg, rgba(6, 16, 31, 0.78), rgba(7, 18, 35, 0.82));
}

#planes .container {
    position: relative;
    z-index: 1;
}

.kodiq-planes-head {
    max-width: 56rem;
    margin: 0 auto 2rem;
}

#planes .kodiq-planes-title.section-title {
    color: #fff !important;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(1.9rem, 2vw + 1rem, 2.7rem) !important;
    font-weight: 800;
    text-transform: none;
    margin-bottom: 0.55rem !important;
}

.kodiq-planes-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.02rem, 0.7vw + 0.9rem, 1.2rem);
    line-height: 1.7;
    margin: 0;
}

.kodiq-planes-grid {
    row-gap: 1.35rem;
}

#planes .kodiq-plan-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(11, 27, 49, 0.8), rgba(8, 20, 38, 0.76));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1.35rem 1.2rem 1.2rem;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.33);
    backdrop-filter: blur(8px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

#planes .kodiq-plan-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--kodiq-gold-bright), rgba(0, 184, 169, 0.95));
    opacity: 0.9;
}

#planes .kodiq-plan-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(140% 90% at 50% -10%, rgba(255, 229, 102, 0.12), transparent 45%);
    pointer-events: none;
}

#planes .kodiq-plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 229, 102, 0.45);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
}

#planes .kodiq-plan-card.popular {
    border-color: rgba(255, 229, 102, 0.62);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 229, 102, 0.28) inset;
    transform: translateY(-4px) scale(1.01);
}

.kodiq-plan-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.65rem;
    border-radius: 999px;
    padding: 0.18rem 0.65rem;
    background: linear-gradient(160deg, rgba(255, 229, 102, 0.28), rgba(255, 200, 60, 0.18));
    border: 1px solid rgba(255, 229, 102, 0.55);
    color: #ffe98b;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.kodiq-plan-topline {
    color: rgba(62, 232, 217, 0.95);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

#planes .kodiq-plan-card .plan-name {
    color: #ffe98b !important;
    font-size: clamp(1.18rem, 0.5vw + 1rem, 1.4rem);
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.kodiq-plan-price {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.9rem, 1.5vw + 1.2rem, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
}

.kodiq-plan-price small {
    display: block;
    margin-top: 0.22rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
}

.kodiq-plan-custom-price {
    margin: 0;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 700;
}

.kodiq-plan-custom-note {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.kodiq-plan-divider {
    border-color: rgba(255, 229, 102, 0.24);
    margin: 0.9rem 0 0.8rem;
}

.kodiq-plan-features {
    margin: 0;
    color: rgba(255, 255, 255, 0.93);
    font-size: 0.94rem;
    line-height: 1.55;
}

.kodiq-plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.48rem;
    gap: 0.35rem;
}

.kodiq-plan-features i {
    margin-right: 0.15rem;
    margin-top: 0.1rem;
}

#planes .kodiq-plan-features i.fa-check,
#planes .kodiq-plan-features i.fa-check-circle {
    color: #34d17b !important;
}

#planes .kodiq-plan-features i.fa-times,
#planes .kodiq-plan-features i.fa-xmark,
#planes .kodiq-plan-features i.fa-close {
    color: #ff5f5f !important;
}

.kodiq-plan-actions {
    margin-top: auto;
    padding-top: 0.7rem;
    display: grid;
    gap: 0.5rem;
}

.kodiq-plan-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.62rem 0.82rem;
    border-radius: 9px;
    border: 1px solid rgba(255, 229, 102, 0.5);
    background: linear-gradient(145deg, rgba(255, 214, 92, 0.92), rgba(235, 168, 23, 0.92));
    color: #08152a !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.kodiq-plan-btn:hover {
    color: #08152a !important;
    background: linear-gradient(145deg, rgba(255, 230, 125, 0.96), rgba(250, 186, 40, 0.96));
    transform: translateY(-1px);
}

/* FAQ: armonia visual y lectura clara */
.kodiq-faq.projects-content {
    min-height: auto !important;
    padding-top: clamp(3rem, 7vw, 4.8rem) !important;
    padding-bottom: clamp(3rem, 7vw, 4.8rem) !important;
    background-attachment: scroll !important;
}

.kodiq-faq-head {
    max-width: 52rem;
    margin: 0 auto 2rem;
}

.kodiq-faq-title.section-title {
    color: #fff !important;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(1.9rem, 2vw + 1rem, 2.7rem) !important;
    text-transform: none;
    margin-bottom: 0.55rem !important;
}

.kodiq-faq-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 0.6vw + 0.9rem, 1.15rem);
    line-height: 1.68;
}

.kodiq-faq-layout {
    row-gap: 1.35rem;
}

.kodiq-faq-accordion .kodiq-faq-panel {
    border: 1px solid rgba(62, 232, 217, 0.25) !important;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.7rem;
    background: rgba(8, 20, 38, 0.86) !important;
}

.kodiq-faq-accordion .panel-title a {
    display: block;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none !important;
}

.kodiq-faq-accordion .panel-heading {
    padding: 0.9rem 1rem !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 0 !important;
}

.kodiq-faq-accordion .panel-body {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    font-size: 0.98rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.kodiq-faq-answer-cta-wrap {
    margin-top: 0.85rem;
}

.kodiq-faq-answer-cta {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.52rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(62, 232, 217, 0.45);
    background: rgba(0, 184, 169, 0.3);
}

.kodiq-faq-answer-cta:hover {
    color: #fff !important;
    background: rgba(0, 184, 169, 0.45);
}

.kodiq-faq-side-card {
    background: rgba(8, 20, 38, 0.88);
    border: 1px solid rgba(255, 229, 102, 0.25);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
}

.kodiq-faq-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}

.kodiq-faq-side-body {
    padding: 1rem 1.05rem 1.15rem;
}

.kodiq-faq-side-body h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
}

.kodiq-faq-side-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.68;
    font-size: 0.97rem;
}

.kodiq-faq-side-link {
    display: inline-flex;
    margin-top: 0.9rem;
    text-decoration: none !important;
    color: var(--kodiq-gold-bright) !important;
    font-weight: 700;
}

/* FAQ mas visual tipo servicios */
.kodiq-faq .kodiq-faq-head {
    margin-bottom: 2.2rem;
}

.kodiq-faq .kodiq-faq-title.section-title {
    font-size: clamp(2.1rem, 2.2vw + 1rem, 3rem) !important;
    font-weight: 800;
}

.kodiq-faq .kodiq-faq-subtitle {
    font-size: clamp(1.12rem, 0.85vw + 0.95rem, 1.4rem);
    font-weight: 700;
}

.kodiq-faq .kodiq-faq-accordion .kodiq-faq-panel {
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.kodiq-faq .kodiq-faq-accordion .panel-title a {
    font-size: clamp(1.08rem, 0.55vw + 0.95rem, 1.34rem);
    font-weight: 800;
}

.kodiq-faq .kodiq-faq-accordion .panel-heading {
    padding: 1rem 1.35rem !important;
}

.kodiq-faq .kodiq-faq-accordion .panel-body {
    font-size: clamp(1rem, 0.35vw + 0.95rem, 1.12rem);
    font-weight: 600;
    padding: 1rem 1.35rem 1.1rem !important;
}

.kodiq-faq .kodiq-faq-accordion .panel-title {
    margin: 0;
}

.kodiq-faq .kodiq-faq-answer-cta {
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 10px;
}

.kodiq-faq .kodiq-faq-side-card {
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kodiq-faq .kodiq-faq-side-body h3 {
    font-size: clamp(1.4rem, 0.9vw + 1.1rem, 1.8rem);
    font-weight: 800;
}

.kodiq-faq .kodiq-faq-side-body p {
    font-size: clamp(1rem, 0.35vw + 0.95rem, 1.12rem);
    font-weight: 600;
}

/* Redes: formal/minimalista con tarjetas redondeadas y texto grande */
.kodiq-redes.projects-content {
    min-height: auto !important;
    padding-top: clamp(3rem, 7vw, 4.8rem) !important;
    padding-bottom: clamp(3rem, 7vw, 4.8rem) !important;
    background-attachment: scroll !important;
}

.kodiq-redes-head {
    max-width: 54rem;
    margin: 0 auto 2rem;
}

.kodiq-redes .section-title {
    font-family: "DM Sans", "Open Sans", sans-serif;
    color: #fff !important;
    font-size: clamp(2rem, 2.2vw + 1rem, 2.95rem) !important;
    font-weight: 800;
    text-transform: none;
}

.kodiq-redes-subtitle {
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(1.08rem, 0.8vw + 0.9rem, 1.35rem);
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}

.kodiq-redes-grid {
    row-gap: 1.35rem;
}

.kodiq-redes .kodiq-red-card {
    height: 100%;
    background: rgba(0, 0, 0, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 1.25rem 1.1rem 1.2rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.kodiq-redes .kodiq-red-card h4 {
    color: #fff;
    font-size: clamp(1.3rem, 0.8vw + 1.08rem, 1.75rem);
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.kodiq-redes .kodiq-red-card p {
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(1rem, 0.4vw + 0.94rem, 1.12rem);
    font-weight: 600;
    line-height: 1.65;
}

.kodiq-redes .kodiq-red-card .label {
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    margin: 0 0.15rem;
}

.kodiq-redes .kodiq-red-card .btn,
.kodiq-redes .kodiq-red-card .btn.btn-default {
    margin-top: 0.45rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.55rem 0.85rem;
    color: #fff !important;
    background: linear-gradient(145deg, rgba(0, 184, 169, 0.95), rgba(12, 102, 95, 0.95)) !important;
    border: 1px solid rgba(62, 232, 217, 0.55) !important;
    text-shadow: none;
}

.kodiq-redes .kodiq-red-card .btn:hover,
.kodiq-redes .kodiq-red-card .btn:focus,
.kodiq-redes .kodiq-red-card .btn.btn-default:hover,
.kodiq-redes .kodiq-red-card .btn.btn-default:focus {
    color: #fff !important;
    background: linear-gradient(145deg, rgba(18, 204, 188, 0.95), rgba(20, 124, 116, 0.95)) !important;
    border-color: rgba(62, 232, 217, 0.75) !important;
}

/* Footer KODIQ — cristal oscuro sobre el parallax, estilo editorial + carrusel 1:1 */
footer.kodiq-footer {
    text-align: left !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
}

.kodiq-footer {
    --kf-fg: rgba(255, 255, 255, 0.94);
    --kf-fg-soft: rgba(255, 255, 255, 0.78);
    --kf-fg-muted: rgba(255, 255, 255, 0.52);
    --kf-line: rgba(255, 255, 255, 0.1);
    --kf-gold: #f2d06a;
    --kf-gold-dim: rgba(242, 208, 106, 0.95);
    /* ~30 % más oscuro que 0.52 → ~0.68 (película más densa, foto aún visible) */
    --kf-footer-film: rgba(0, 0, 0, 0.68);

    position: relative;
    isolation: isolate;
    overflow-x: visible;
    overflow-y: visible;
    text-align: left;
    color: var(--kf-fg);
    padding: 0 0 clamp(1.35rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Foto de fondo + película oscura (misma lógica que secciones parallax) */
.kodiq-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0a0a0b;
    background-image: var(--kf-footer-bg-image, url("../img/chilpo.jpg"));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    pointer-events: none;
}

.kodiq-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--kf-footer-film);
    pointer-events: none;
}

/* Grano muy suave sobre la película */
.kodiq-footer__grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Carrusel continuo 1:1 — 100 % del ancho del viewport (sin máscara lateral) */
.kodiq-footer__marquee-bleed {
    position: relative;
    z-index: 3;
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: none;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: clamp(1.35rem, 3.5vw, 2rem) 0 clamp(1.1rem, 2.5vw, 1.65rem);
    border-bottom: 1px solid var(--kf-line);
    box-sizing: border-box;
}

.kodiq-footer__marquee-mask {
    overflow: hidden;
    width: 100%;
    margin: 0;
    max-width: none;
}

.kodiq-footer__marquee {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    gap: 0;
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    .kodiq-footer__marquee {
        animation: kodiq-footer-marquee 18s linear infinite;
    }
}

@keyframes kodiq-footer-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kodiq-footer__marquee {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 0.65rem;
    }

    .kodiq-footer__marquee-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.kodiq-footer__marquee-inner {
    display: flex;
    flex-shrink: 0;
    flex-grow: 0;
    align-items: center;
    gap: 0.65rem;
}

.kodiq-footer__marquee-cell {
    flex-shrink: 0;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1),
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.kodiq-footer__marquee-cell:hover,
.kodiq-footer__marquee-cell:focus-visible {
    transform: scale(1.06) translateY(-2px);
    border-color: rgba(242, 208, 106, 0.55);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(242, 208, 106, 0.25);
    outline: none;
}

.kodiq-footer__marquee-ratio {
    display: block;
    width: clamp(4.5rem, 11vw, 6.75rem);
    aspect-ratio: 1 / 1;
    background: rgba(0, 0, 0, 0.35);
}

.kodiq-footer__marquee-ratio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo KODIQ + líneas (referencia editorial) */
.kodiq-footer__container {
    position: relative;
    z-index: 3;
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.kodiq-footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.85rem, 3vw, 2rem);
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    max-width: 52rem;
}

.kodiq-footer__brand-line {
    flex: 1 1 0;
    min-width: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 208, 106, 0.55), rgba(255, 255, 255, 0.22), transparent);
    opacity: 0.85;
}

.kodiq-footer__brand-link {
    flex-shrink: 0;
    display: block;
    line-height: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1), opacity 0.25s ease;
}

.kodiq-footer__brand-link:hover,
.kodiq-footer__brand-link:focus-visible {
    transform: scale(1.03);
    opacity: 1;
    outline: none;
}

.kodiq-footer__brand-logo {
    height: clamp(4.7rem, 11vw, 6.3rem);
    width: auto;
    max-width: min(440px, 92vw);
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

.kodiq-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.75rem, 4.5vw, 3.25rem);
    padding-bottom: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: clamp(1.85rem, 4.5vw, 2.75rem);
    border-bottom: 1px solid var(--kf-line);
}

@media (max-width: 991px) {
    .kodiq-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .kodiq-footer__columns {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

.kodiq-footer__column {
    min-width: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .kodiq-footer__column {
        animation: kodiq-footer-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .kodiq-footer__column:nth-child(1) {
        animation-delay: 0.04s;
    }

    .kodiq-footer__column:nth-child(2) {
        animation-delay: 0.1s;
    }

    .kodiq-footer__column:nth-child(3) {
        animation-delay: 0.16s;
    }

    .kodiq-footer__column:nth-child(4) {
        animation-delay: 0.22s;
    }
}

@keyframes kodiq-footer-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kodiq-footer__column {
        animation: none;
    }
}

.kodiq-footer-title {
    margin: 0 0 1.05rem;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--kf-gold-dim);
    position: relative;
    padding-bottom: 0.65rem;
}

.kodiq-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.25rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--kf-gold), rgba(255, 255, 255, 0.22));
}

.kodiq-footer-title--inline {
    margin-bottom: 0.45rem;
}

.kodiq-footer-nav {
    display: block;
}

.kodiq-footer-links,
.kodiq-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kodiq-footer-links li,
.kodiq-footer-contact li {
    display: block !important;
    margin-bottom: 0.42rem;
    color: var(--kf-fg-soft);
    font-size: 0.94rem;
    line-height: 1.55;
}

.kodiq-footer-links a {
    display: inline !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
    padding: 0.12rem 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none;
    box-shadow: 0 1px 0 transparent;
    transition:
        color 0.22s ease,
        box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.22s ease;
}

.kodiq-footer-links a:hover,
.kodiq-footer-links a:focus-visible {
    color: #fff !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
    transform: translateX(3px);
}

.kodiq-footer-contact i {
    width: 1.1rem;
    margin-right: 0.45rem;
    color: var(--kf-fg-muted);
    opacity: 0.95;
}

.kodiq-footer-mini-socials {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.kodiq-footer__icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition:
        transform 0.28s cubic-bezier(0.34, 1.45, 0.64, 1),
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease;
}

.kodiq-footer__icon-link:hover,
.kodiq-footer__icon-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(232, 197, 71, 0.42);
    color: var(--kf-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Newsletter: banda editorial sin caja */
.kodiq-footer__newsletter {
    margin-bottom: clamp(1.85rem, 4.5vw, 2.75rem);
}

.kodiq-footer__newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 2.25rem);
}

.kodiq-footer__newsletter-copy {
    flex: 1 1 280px;
    max-width: 42rem;
}

.kodiq-footer-newsletter-text {
    margin: 0;
    color: var(--kf-fg-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

.kodiq-footer-newsletter-form {
    display: flex;
    flex: 1 1 min(100%, 380px);
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.kodiq-footer-newsletter-form .kodiq-footer__input,
.kodiq-footer-newsletter-form .form-control.kodiq-footer__input {
    flex: 1 1 220px;
    min-height: 48px;
    border-radius: 999px !important;
    padding: 0.55rem 1.2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    box-shadow: none !important;
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.kodiq-footer-newsletter-form .kodiq-footer__input::placeholder,
.kodiq-footer-newsletter-form .form-control.kodiq-footer__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.kodiq-footer-newsletter-form .kodiq-footer__input:hover,
.kodiq-footer-newsletter-form .form-control.kodiq-footer__input:hover {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.kodiq-footer-newsletter-form .kodiq-footer__input:focus,
.kodiq-footer-newsletter-form .form-control.kodiq-footer__input:focus {
    border-color: rgba(232, 197, 71, 0.45) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.12) !important;
    outline: none !important;
}

.kodiq-footer__submit,
.kodiq-footer-newsletter-form .btn.btn-primary.kodiq-footer__submit {
    min-height: 48px;
    border-radius: 999px !important;
    padding: 0.55rem 1.35rem !important;
    border: 1px solid rgba(232, 197, 71, 0.55) !important;
    background: linear-gradient(145deg, #f0d56a, #d4a41a) !important;
    color: #111 !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    font-size: 0.72rem !important;
    transition:
        transform 0.22s ease,
        filter 0.22s ease,
        box-shadow 0.22s ease !important;
}

.kodiq-footer__submit:hover,
.kodiq-footer-newsletter-form .btn.btn-primary.kodiq-footer__submit:hover,
.kodiq-footer__submit:focus-visible,
.kodiq-footer-newsletter-form .btn.btn-primary.kodiq-footer__submit:focus-visible {
    filter: brightness(1.06);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
    color: #111 !important;
}

/* Barra inferior */
.kodiq-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding-top: clamp(1.35rem, 3.2vw, 1.9rem);
    border-top: 1px solid var(--kf-line);
    text-align: center;
}

.kodiq-footer-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.52rem 1.15rem 0.52rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.68rem;
    transition:
        transform 0.25s cubic-bezier(0.34, 1.45, 0.64, 1),
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.kodiq-footer-top__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.kodiq-footer-top:hover .kodiq-footer-top__icon,
.kodiq-footer-top:focus-visible .kodiq-footer-top__icon {
    transform: translateY(-3px);
}

.kodiq-footer-top:hover,
.kodiq-footer-top:focus-visible {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.kodiq-footer .social-icons.kodiq-footer__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kodiq-footer .social-icons.kodiq-footer__social li {
    display: block;
    margin: 0;
}

.kodiq-footer .social-icons.kodiq-footer__social li a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 46px !important;
    height: 46px !important;
    line-height: 1 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition:
        transform 0.28s cubic-bezier(0.34, 1.45, 0.64, 1),
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease !important;
}

.kodiq-footer .social-icons.kodiq-footer__social li a:hover,
.kodiq-footer .social-icons.kodiq-footer__social li a:focus-visible {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(232, 197, 71, 0.4) !important;
    color: var(--kf-gold) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.kodiq-footer__legal {
    margin: 0;
    color: var(--kf-fg-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    max-width: 36rem;
    line-height: 1.55;
}

.kodiq-footer__legal-sub {
    display: inline-block;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 0.06em;
}

/* Ajuste tipográfico heredado (+5px) */
.kodiq-footer .kodiq-footer-title,
.kodiq-footer .kodiq-footer-links li,
.kodiq-footer .kodiq-footer-links a,
.kodiq-footer .kodiq-footer-contact li,
.kodiq-footer .kodiq-footer-newsletter-text,
.kodiq-footer .kodiq-footer-newsletter-form .form-control,
.kodiq-footer .kodiq-footer-newsletter-form .btn.btn-primary,
.kodiq-footer .kodiq-footer-top,
.kodiq-footer .kodiq-footer__legal {
    font-size: calc(100% + 5px);
}

.kodiq-footer .kodiq-footer__submit,
.kodiq-footer-newsletter-form .btn.btn-primary.kodiq-footer__submit {
    font-size: calc(0.72rem + 5px) !important;
}

/* Contacto: asegurar texto claro en el botón de WhatsApp */
#contact-us .whatsapp-btn {
    color: #fff !important;
    background-color: #25d366 !important;
    border: none;
}

#contact-us .whatsapp-btn:hover,
#contact-us .whatsapp-btn:focus {
    color: #fff !important;
    background-color: #128c7e !important;
}

/* Modales de servicios: el HTML debe estar fuera de .service-content (z-index del padre).
   Refuerzo de apilamiento para Bootstrap 3 + backdrop. */
.modal-backdrop {
    z-index: 1040;
}

.kodiq-servicio-modal.modal {
    z-index: 1050;
}

.kodiq-servicio-modal .modal-dialog {
    margin: 2.25rem auto;
}

.kodiq-servicio-modal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(62, 232, 217, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.kodiq-servicio-modal .modal-body {
    padding: 1.75rem 1.85rem;
}

.kodiq-servicio-modal-lead {
    font-size: 1.06rem;
    line-height: 1.75;
    color: #2c2f33;
    margin: 0;
    font-weight: 500;
}

.kodiq-servicio-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
    padding: 0.85rem 1.15rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafbfc;
}

.kodiq-servicio-modal-close.btn-default {
    color: #333 !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    font-weight: 700;
}

.kodiq-servicio-modal-close.btn-default:hover {
    background: #f0f0f0 !important;
}

/* WhatsApp flotante debajo del backdrop del modal para no competir con el foco */
body.modal-open .kodiq-floating-cta {
    z-index: 1030;
}

/* ——— Servicios: layout propio (no depende de .service-item / .left-text del theme) ——— */
.kodiq-services-section.service-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-height: auto !important;
    padding-top: clamp(2.75rem, 7vw, 4.5rem) !important;
    padding-bottom: clamp(2rem, 5vw, 3rem) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background-attachment: scroll !important;
}

.kodiq-services-hero {
    width: 100%;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.kodiq-services-hero .container {
    max-width: none;
}

.kodiq-services-hero__panel {
    width: 100%;
    margin: 0 auto;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(0.75rem, 2vw, 1.5rem);
    text-align: center !important;
    box-sizing: border-box;
}

.kodiq-services-hero__title {
    margin: 0 0 0.65rem;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(2.3rem, 1.4vw + 1.9rem, 3.1rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff !important;
    text-align: center !important;
}

.kodiq-services-hero__rule {
    display: block;
    width: min(240px, 80vw);
    height: 8px;
    margin: 0 auto 1.25rem;
    border-radius: 8px;
    background: linear-gradient(90deg, transparent, var(--kodiq-gold-bright), transparent);
}

.kodiq-services-hero__lead {
    margin: 0 auto 1rem;
    max-width: 58rem;
    font-size: clamp(1.15rem, 0.4vw + 1.05rem, 1.4rem);
    line-height: 1.65;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96) !important;
    text-align: center !important;
}

.kodiq-services-hero__checks {
    list-style: none;
    padding: 0;
    margin: 1.35rem auto 0;
    max-width: 40rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.kodiq-services-hero__checks li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin: 0;
    font-size: clamp(1.06rem, 0.3vw + 1rem, 1.22rem);
    font-weight: 700;
    line-height: 1.45;
    color: #fff !important;
    text-align: center !important;
}

.kodiq-services-hero__checks li i {
    color: var(--kodiq-turquoise-bright);
    font-size: 1.15em;
    flex-shrink: 0;
}

.kodiq-services-hero__cta {
    display: inline-block;
    margin: 1.65rem auto 0;
    padding: 1rem 1.9rem;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(0.98rem, 0.2vw + 0.94rem, 1.08rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: #0a1628 !important;
    background: linear-gradient(180deg, #ffe566 0%, #e8a80c 100%);
    border: 2px solid rgba(10, 22, 40, 0.35);
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.kodiq-services-hero__cta:hover,
.kodiq-services-hero__cta:focus {
    color: #fff !important;
    background: linear-gradient(180deg, #00c4b4 0%, #0a5c54 100%);
    border-color: rgba(62, 232, 217, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.kodiq-services-cards-wrap .container {
    max-width: none;
}

.kodiq-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.35rem);
    align-items: stretch;
    margin-top: 0.25rem;
}

.kodiq-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(1.35rem, 2.7vw, 1.9rem) clamp(1rem, 2vw, 1.4rem);
    background: linear-gradient(165deg, rgba(12, 28, 48, 0.92), rgba(6, 16, 32, 0.88));
    border: 1px solid rgba(62, 232, 217, 0.28);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.kodiq-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--kodiq-gold-bright), var(--kodiq-turquoise-bright));
    border-radius: 16px 0 0 16px;
}

.kodiq-service-card__icon {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: rgba(0, 184, 169, 0.18);
    color: var(--kodiq-turquoise-bright);
    font-size: 2.2rem;
}

.kodiq-service-card__title {
    margin: 0 0 0.5rem;
    font-family: "DM Sans", "Open Sans", sans-serif;
    font-size: clamp(1.25rem, 0.5vw + 1.12rem, 1.55rem);
    font-weight: 800;
    line-height: 1.3;
    color: #fff !important;
}

.kodiq-service-card__rule {
    display: block;
    width: 96px;
    height: 6px;
    margin: 0 auto 0.65rem;
    border-radius: 3px;
    background: var(--kodiq-gold-bright);
    opacity: 0.9;
}

.kodiq-service-card__excerpt {
    margin: 0;
    font-size: clamp(1.02rem, 0.25vw + 0.98rem, 1.18rem);
    font-weight: 600;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.93) !important;
}

.kodiq-service-card__more {
    margin-top: 0.75rem;
    width: 100%;
}

.kodiq-service-card__long {
    margin: 0 0 0.65rem;
    font-size: clamp(0.96rem, 0.22vw + 0.93rem, 1.1rem);
    line-height: 1.55;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88) !important;
}

.kodiq-service-card__actions {
    margin-top: auto;
    padding-top: 0.75rem;
}

.kodiq-service-card__btn {
    display: inline-block;
    padding: 0.72rem 1.2rem;
    font-size: clamp(0.92rem, 0.2vw + 0.88rem, 1.03rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.kodiq-service-card__btn--primary {
    color: #fff !important;
    background: linear-gradient(180deg, #0d6efd 0%, #0a58ca 100%) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.kodiq-service-card__btn--primary:hover {
    background: linear-gradient(180deg, #3d8bfd 0%, #084298 100%) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.kodiq-service-card__btn--ghost {
    color: #0a1628 !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.kodiq-service-card__btn--ghost:hover {
    background: #fff !important;
    color: #0a1628 !important;
}

.kodiq-services-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    padding: 2rem 1rem;
}

/* Ajuste solicitado: +5px aprox en tipografias de Servicios */
.kodiq-services-section .kodiq-services-hero__lead,
.kodiq-services-section .kodiq-services-hero__checks li,
.kodiq-services-section .kodiq-services-hero__cta,
.kodiq-services-section .kodiq-service-card__title,
.kodiq-services-section .kodiq-service-card__excerpt,
.kodiq-services-section .kodiq-service-card__long,
.kodiq-services-section .kodiq-service-card__btn {
    font-size: calc(100% + 5px);
}

/* Mismo ajuste de tipografia para Hero y Sobre Nosotros */
.kodiq-hero .kodiq-hero-title,
.kodiq-hero .kodiq-hero-lead,
.kodiq-hero .kodiq-hero-highlight,
.kodiq-hero .kodiq-btn,
.kodiq-sobre-wrap .section-title,
.kodiq-sobre-wrap h2.section-title,
.kodiq-sobre-wrap h3,
.kodiq-sobre-wrap h4.kodiq-accent,
.kodiq-sobre-wrap p,
.kodiq-sobre-wrap .btn-primary,
.kodiq-sobre-wrap .btn-default {
    font-size: calc(100% + 5px);
}

/* Mismo ajuste de tipografia para Testimonios y Experiencia */
.kodiq-testimonios-wrap h2.kodiq-testimonios-title.section-title,
.kodiq-testimonios-wrap .kodiq-testimonios-subtitle,
.kodiq-testimonios-wrap .kodiq-testimonios-stat h3,
.kodiq-testimonios-wrap .kodiq-testimonios-stat small,
.kodiq-testimonios-wrap .kodiq-testimonio-autor,
.kodiq-testimonios-wrap .kodiq-testimonio-texto,
.kodiq-experiencia-title,
.kodiq-experiencia-subtitle,
.kodiq-experiencia-card-title,
.kodiq-experiencia-desc,
.kodiq-experiencia-focus,
.kodiq-experiencia-link {
    font-size: calc(100% + 5px);
}

/* Mismo ajuste de tipografia para Beneficios, Planes y FAQ */
#beneficios .kodiq-beneficios-title.section-title,
.kodiq-beneficios-subtitle,
.kodiq-beneficio-title,
.kodiq-beneficio-desc,
.kodiq-beneficio-link,
.kodiq-resultados-kicker,
.kodiq-resultados-subkicker,
.kodiq-resultados-title,
.kodiq-resultados-desc,
.kodiq-resultados-stat-card strong,
.kodiq-resultados-stat-card small,
.kodiq-resultados-cta,
#planes .kodiq-planes-title.section-title,
.kodiq-planes-subtitle,
.kodiq-plan-badge,
.kodiq-plan-topline,
#planes .kodiq-plan-card .plan-name,
.kodiq-plan-price,
.kodiq-plan-price small,
.kodiq-plan-custom-price,
.kodiq-plan-custom-note,
.kodiq-plan-features,
.kodiq-plan-btn,
.kodiq-faq-title.section-title,
.kodiq-faq-subtitle,
.kodiq-faq-accordion .panel-title a,
.kodiq-faq-accordion .panel-body,
.kodiq-faq-answer-cta,
.kodiq-faq-side-body h3,
.kodiq-faq-side-body p,
.kodiq-faq-side-link {
    font-size: calc(100% + 5px);
}

/* Mismo ajuste de tipografia para Redes Sociales */
.kodiq-redes .section-title,
.kodiq-redes-subtitle,
.kodiq-redes .kodiq-red-card h4,
.kodiq-redes .kodiq-red-card p,
.kodiq-redes .kodiq-red-card .label,
.kodiq-redes .kodiq-red-card .btn,
.kodiq-redes .kodiq-red-card .btn.btn-default,
footer .social-icons li a,
footer .btn.btn-xs.btn-default {
    font-size: calc(100% + 5px);
}

/* SweetAlert2 en Servicios: mismo aumento tipografico */
.kodiq-swal-servicio-popup {
    background: #fafbfc;
}

.kodiq-swal-servicio-title,
.kodiq-swal-servicio-text,
.kodiq-swal-servicio-link {
    font-size: calc(100% + 5px);
}

.kodiq-swal-servicio-text {
    line-height: 1.6;
    color: #1d2a3a;
}

.kodiq-swal-servicio-link {
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    color: #0d6efd;
}

@media (max-width: 767px) {
    .kodiq-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .kodiq-service-card {
        padding: 0.85rem 0.55rem;
    }

    .kodiq-service-card__icon {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }
}
