/*
Theme Name: DevWhile Studio
Theme URI: https://devwhile.com
Author: DevWhile
Author URI: https://devwhile.com
Description: Sitio corporativo y portafolio profesional de DevWhile. WordPress nativo, Elementor-friendly, contenido administrable desde el Personalizador, modo claro/oscuro y animaciones.
Version: 4.8.17
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: devwhile-studio
*/

/* ========================================================================
   DEVWHILE STUDIO
   Version 4.8.17
   ------------------------------------------------------------------------
   Hoja de estilos consolidada.
   - WordPress / Elementor friendly
   - Modo claro / oscuro
   - Diseño responsive
   - Animaciones
   - Formularios
   - Variables administrables
   - Capa visual por sección
   ======================================================================== */


/* ========================================================================
   01. VARIABLES
   ======================================================================== */

:root {
    --bg: var(--dw-light-bg, #fbfaf8);
    --surface: var(--dw-light-surface, #ffffff);
    --surface-2: color-mix(in srgb, var(--surface) 90%, var(--primary) 10%);
    --surface-3: color-mix(in srgb, var(--surface) 82%, var(--primary) 18%);

    --text: var(--dw-light-text, #17223b);
    --muted: var(--dw-light-muted, #697181);

    --primary: var(--dw-primary, #28c4d2);
    --primary-2: #55d6dc;
    --gold: var(--dw-gold, #f2c14d);
    --cyan: #28b9c5;

    --line: rgba(23, 34, 59, .10);
    --shadow: 0 20px 60px rgba(47, 31, 73, .10);

    --radius: 24px;
    --header: 82px;
    --max: 1220px;

    --dw-visual-accent: var(--dw-accent, #22c7d6);
}


html.dark-mode {
    --bg: var(--dw-dark-bg, #070c18);
    --surface: var(--dw-dark-surface, #101827);
    --surface-2: color-mix(in srgb, var(--surface) 78%, var(--primary) 22%);
    --surface-3: color-mix(in srgb, var(--surface) 65%, var(--primary) 35%);

    --text: var(--dw-dark-text, #f7f7f4);
    --muted: var(--dw-dark-muted, #b8c0cc);

    --primary: var(--dw-primary, #2cc4d2);
    --primary-2: #55d6dc;
    --gold: var(--dw-gold, #f2c14d);
    --cyan: #2cc4cf;

    --line: rgba(255, 255, 255, .11);
    --shadow: 0 22px 70px rgba(0, 0, 0, .34);
}


/* ========================================================================
   02. RESET / BASE
   ======================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;

    transition:
        background-color .55s ease,
        color .45s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
        radial-gradient(var(--primary) .55px, transparent .55px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, black, transparent 62%);
    z-index: -1;
    transition: opacity .5s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.dw-container {
    width: min(var(--max), calc(100% - 42px));
    margin-inline: auto;
}


/* ========================================================================
   03. HEADER / NAVIGATION
   ======================================================================== */

.dw-header {
    height: var(--header);
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;

    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--line);

    transition:
        background-color .55s ease,
        border-color .45s ease;
}

.dw-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.dw-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 23px;
    font-weight: 900;
    letter-spacing: -.7px;
    white-space: nowrap;
}

.dw-logo img {
    width: auto;
    height: 48px;
    display: block;
}

.dw-logo-mark {
    width: 49px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 3px solid var(--primary);
    border-radius: 9px 9px 16px 16px;

    color: var(--primary);
    font: 900 15px ui-monospace, monospace;

    position: relative;

    box-shadow:
        0 6px 18px
        color-mix(in srgb, var(--primary) 15%, transparent);
}

.dw-logo-mark::after {
    content: "";
    position: absolute;

    width: 13px;
    height: 18px;

    right: -12px;
    top: 7px;

    border: 3px solid currentColor;
    border-left: 0;
    border-radius: 0 10px 10px 0;
}

.dw-logo-mark::before {
    content: "~";

    position: absolute;
    top: -30px;
    left: 12px;

    color: var(--muted);
    font-size: 25px;
}

.dw-logo .dev {
    color: var(--primary);
}

.dw-logo .while {
    color: var(--gold);
}

.dw-menu {
    display: flex;
    list-style: none;
    gap: 30px;

    margin: 0;
    padding: 0;
}

.dw-menu a {
    font-weight: 700;
    position: relative;
    padding: 8px 0;
}

.dw-menu a::after {
    content: "";

    position: absolute;
    height: 2px;

    background: var(--primary);

    left: 0;
    right: 100%;
    bottom: 0;

    transition: right .25s ease;
}

.dw-menu a:hover::after,
.dw-menu a.active::after {
    right: 0;
}

.dw-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dw-theme {
    width: 70px;
    height: 36px;

    border: 1px solid var(--line);
    background: var(--surface);

    border-radius: 99px;
    padding: 3px;

    cursor: pointer;
}

.dw-theme span {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: var(--primary);
    color: #fff;

    display: grid;
    place-items: center;

    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
    font-size: 14px;
}

.dw-theme:active span {
    transform: scale(.85);
}

html.dark-mode .dw-theme span {
    transform: translateX(34px);
    background: var(--gold);
    color: #111;
}

.dw-toggle {
    display: none;

    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);

    border-radius: 12px;

    width: 42px;
    height: 42px;
}


/* ========================================================================
   04. HERO
   ======================================================================== */

.dw-hero {
    min-height: 755px;

    padding:
        calc(var(--header) + 45px)
        0
        65px;

    display: flex;
    align-items: center;

    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.dw-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 45px;
}

.dw-hero .dw-hero-inner,
.dw-hero > .container {
    position: relative;
    z-index: 3;
}

.dw-kicker {
    color: var(--primary);

    font-size: 22px;
    font-weight: 900;

    margin: 0 0 8px;
}

.dw-title {
    font-size: clamp(44px, 5.1vw, 68px);
    line-height: 1.01;

    letter-spacing: -3.4px;

    margin: 0 0 24px;

    font-weight: 950;
}

.dw-lead {
    font-size: clamp(18px, 1.55vw, 21px);

    color: var(--muted);

    max-width: 600px;

    margin: 0 0 31px;
}

.dw-actions-row {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.dw-btn {
    min-height: 53px;

    padding: 0 22px;

    border-radius: 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    font-weight: 900;

    border: 1px solid transparent;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background-color .4s ease,
        color .4s ease,
        border-color .4s ease;
}

.dw-btn:hover {
    transform: translateY(-3px);
}

.dw-btn-primary {
    background: var(--primary);
    color: #fff;

    box-shadow:
        0 14px 30px
        color-mix(in srgb, var(--primary) 28%, transparent);
}

.dw-btn-outline {
    border-color: var(--gold);
    color: var(--gold);
}

.dw-socials {
    display: flex;
    gap: 11px;
    margin-top: 25px;
}

.dw-social {
    width: 43px;
    height: 43px;

    border: 1px solid var(--line);
    border-radius: 12px;

    background: var(--surface);

    display: grid;
    place-items: center;

    font-weight: 900;

    transition:
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.dw-social:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}


/* ========================================================================
   05. HERO ART / CUP / FLOATING ELEMENTS
   ======================================================================== */

.dw-art {
    min-height: 500px;

    display: grid;
    place-items: center;

    position: relative;
}

.dw-art .dw-glow {
    position: absolute;

    width: 520px;
    aspect-ratio: 1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            color-mix(in srgb, var(--primary) 16%, transparent),
            transparent 67%
        );

    box-shadow:
        0 0 100px
        color-mix(in srgb, var(--primary) 10%, transparent);

    transition:
        background .55s ease,
        box-shadow .55s ease;
}

.dw-cup-svg {
    width: min(570px, 94%);

    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 28px 28px rgba(16, 21, 37, .15));

    transition:
        filter .55s ease,
        transform .6s ease;

    animation:
        dwHeroFloat 7s ease-in-out infinite;
}

.dw-art:hover .dw-cup-svg {
    transform:
        translateY(-5px)
        rotate(-.6deg);
}

.dw-hero .dw-glow {
    animation: dwGlow 5s ease-in-out infinite;
}

.dw-spark {
    position: absolute;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-weight: 950;
    color: var(--gold);

    font-size: 22px;
    line-height: 1;

    letter-spacing: -1px;

    z-index: 3;

    user-select: none;
    pointer-events: none;

    text-shadow:
        0 0 18px
        color-mix(in srgb, currentColor 22%, transparent);

    will-change: transform;

    transition:
        color .4s ease,
        filter .4s ease;
}

.dw-art:hover .dw-spark {
    filter:
        drop-shadow(
            0 0 8px
            color-mix(in srgb, currentColor 22%, transparent)
        );
}

.dw-spark.s1 {
    top: 8%;
    left: 8%;
    animation: dwSparkA 5.4s ease-in-out infinite;
}

.dw-spark.s2 {
    top: 18%;
    right: 7%;
    animation: dwSparkB 6.1s ease-in-out infinite;
}

.dw-spark.s3 {
    top: 34%;
    left: 2%;
    color: var(--primary);
    animation: dwSparkC 4.8s ease-in-out infinite;
}

.dw-spark.s4 {
    top: 49%;
    right: 3%;
    color: var(--primary);
    animation: dwSparkA 6.7s ease-in-out infinite;
}

.dw-spark.s5 {
    top: 5%;
    left: 38%;
    color: var(--primary);
    font-size: 18px;
    animation: dwSparkB 5.1s ease-in-out infinite;
}

.dw-spark.s6 {
    top: 27%;
    left: 15%;
    color: var(--primary);
    font-size: 18px;
    animation: dwSparkC 7.2s ease-in-out infinite;
}

.dw-spark.s7 {
    top: 13%;
    right: 26%;
    font-size: 18px;
    animation: dwSparkA 5.8s ease-in-out infinite;
}

.dw-spark.s8 {
    bottom: 16%;
    left: 4%;
    color: var(--gold);
    font-size: 18px;
    animation: dwSparkB 6.9s ease-in-out infinite;
}

.dw-spark.s9 {
    bottom: 7%;
    left: 24%;
    color: var(--primary);
    font-size: 17px;
    animation: dwSparkC 5.6s ease-in-out infinite;
}

.dw-spark.s10 {
    bottom: 22%;
    right: 5%;
    color: var(--primary);
    font-size: 18px;
    animation: dwSparkA 7.1s ease-in-out infinite;
}

.dw-spark.s11 {
    bottom: 7%;
    right: 27%;
    font-size: 17px;
    animation: dwSparkB 5.3s ease-in-out infinite;
}

.dw-spark.s12 {
    top: 42%;
    right: 18%;
    color: var(--gold);
    font-size: 18px;
    animation: dwSparkC 6.4s ease-in-out infinite;
}

.dw-wave {
    position: absolute;

    bottom: -1px;
    left: -5%;

    width: 110%;
    height: 55px;

    background: var(--surface-2);

    clip-path:
        polygon(
            0 55%,
            4% 45%,
            9% 65%,
            15% 40%,
            21% 61%,
            28% 42%,
            35% 60%,
            43% 39%,
            51% 62%,
            58% 42%,
            66% 58%,
            73% 38%,
            81% 61%,
            88% 43%,
            95% 57%,
            100% 44%,
            100% 100%,
            0 100%
        );
}


/* ========================================================================
   06. FLOATING CODE FIELD
   ======================================================================== */

.dw-floating-code {
    position: absolute;
    z-index: 1;

    pointer-events: none;
    user-select: none;

    font-family:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        monospace;

    font-size: clamp(.72rem, 1vw, 1rem);
    font-weight: 700;
    letter-spacing: .02em;

    opacity: .18;
    color: var(--dw-visual-accent);

    filter:
        drop-shadow(
            0 0 10px
            color-mix(
                in srgb,
                var(--dw-visual-accent) 38%,
                transparent
            )
        );

    animation:
        dwFloatCode
        var(--dw-float-duration, 12s)
        ease-in-out
        infinite
        alternate;
}

.dw-floating-code:nth-child(3n) {
    animation-delay: -3s;
}

.dw-floating-code:nth-child(4n) {
    animation-delay: -7s;
}

.dw-visual-grid {
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .16;

    background-image:
        linear-gradient(
            to right,
            color-mix(
                in srgb,
                var(--dw-visual-accent) 12%,
                transparent
            ) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            color-mix(
                in srgb,
                var(--dw-visual-accent) 12%,
                transparent
            ) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );
}


/* ========================================================================
   07. OVERVIEW
   ======================================================================== */

.dw-overview {
    position: relative;
    z-index: 3;

    margin-top: -45px;
}

.dw-overview-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr 1.2fr;
    gap: 21px;
}


/* ========================================================================
   08. CARDS
   ======================================================================== */

.dw-card {
    background:
        color-mix(
            in srgb,
            var(--surface) 91%,
            transparent
        );

    border: 1px solid var(--line);
    border-radius: var(--radius);

    padding: 28px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(12px);

    transition:
        background-color .35s ease,
        border-color .35s ease,
        transform .35s cubic-bezier(.2, .8, .2, 1),
        box-shadow .35s ease;

    will-change: transform;
}

.dw-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 55px
        color-mix(
            in srgb,
            var(--dw-visual-accent) 14%,
            transparent
        );

    border-color:
        color-mix(
            in srgb,
            var(--dw-visual-accent) 70%,
            transparent
        );
}

.dw-card h3 {
    font-size: 23px;
    margin: 0 0 12px;
}

.dw-card p {
    color: var(--muted);
}

.dw-icon {
    width: 45px;
    height: 45px;

    border-radius: 14px;

    display: grid;
    place-items: center;

    background:
        color-mix(
            in srgb,
            var(--primary) 13%,
            transparent
        );

    color: var(--primary);

    font-weight: 950;

    margin-bottom: 16px;

    transition:
        transform .35s ease,
        filter .35s ease,
        color .35s ease,
        background-color .35s ease;
}

.dw-card:hover .dw-icon {
    transform:
        translateY(-3px)
        scale(1.08)
        rotate(-2deg);

    filter:
        drop-shadow(
            0 0 14px
            color-mix(
                in srgb,
                var(--dw-visual-accent) 35%,
                transparent
            )
        );
}

.dw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.dw-tag {
    padding: 8px 12px;

    border-radius: 11px;

    border: 1px solid var(--line);

    background:
        color-mix(
            in srgb,
            var(--primary) 8%,
            var(--surface)
        );

    font-weight: 750;
    font-size: 14px;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.dw-tag:hover {
    transform: translateY(-2px);
}


/* ========================================================================
   09. CODE CARD
   ======================================================================== */

.dw-code-card {
    background: #0a0f1d;
    color: #e9eef7;

    padding: 0;

    overflow: hidden;

    border-color: rgba(255, 255, 255, .08);
}

.dw-code-head {
    height: 50px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 0 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);
}

.dw-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #ff5f57;
}

.dw-dot:nth-child(2) {
    background: #ffbd2e;
}

.dw-dot:nth-child(3) {
    background: #28c840;
}

.dw-code-card pre {
    margin: 0;
    padding: 19px;

    overflow: auto;

    font:
        14px/1.8
        ui-monospace,
        SFMono-Regular,
        Menlo,
        monospace;
}

.dw-code-card .k {
    color: #ff7ab2;
}

.dw-code-card .s {
    color: #f0c44f;
}

.dw-code-card .p {
    color: #67dce5;
}

.dw-code-card .f {
    color: #a9df75;
}


/* ========================================================================
   10. SECTIONS
   ======================================================================== */

.dw-section {
    padding: 105px 0;

    position: relative;

    background:
        var(--dw-section-bg, var(--surface-2));

    transition:
        background-color .55s ease,
        background-image .55s ease;
}

.dw-section::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 8% 12%,
            color-mix(
                in srgb,
                var(--dw-section-accent, var(--primary)) 7%,
                transparent
            ),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 82%,
            color-mix(
                in srgb,
                var(--dw-section-accent, var(--primary)) 5%,
                transparent
            ),
            transparent 28%
        );

    opacity: .85;

    z-index: 0;

    transition: opacity .55s ease;
}

.dw-section > .dw-container {
    position: relative;
    z-index: 1;
}

.dw-section.dw-soft {
    background:
        var(--dw-section-bg, var(--surface-2));
}

.dw-soft {
    background: var(--surface-2);
}

.dw-head {
    text-align: center;

    max-width: 780px;

    margin: 0 auto 52px;

    position: relative;
}

.dw-head::after {
    content: "";

    display: block;

    width: 54px;
    height: 3px;

    border-radius: 99px;

    margin: 19px auto 0;

    background:
        var(--dw-section-accent, var(--primary));

    box-shadow:
        0 0 22px
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 28%,
            transparent
        );

    transition:
        width .35s ease,
        background-color .35s ease;
}

.dw-head:hover::after {
    width: 82px;
}

.dw-eyebrow {
    text-transform: uppercase;

    letter-spacing: 2px;

    color:
        var(--dw-section-accent, var(--primary));

    font-weight: 950;
    font-size: 13px;
}

.dw-section-title {
    font-size: clamp(38px, 5vw, 58px);

    line-height: 1;

    letter-spacing: -2.6px;

    margin: 11px 0 16px;
}

.dw-desc {
    color: var(--muted);
    font-size: 18px;
    margin: 0;
}

.dw-section .dw-section-title,
.dw-section .dw-head h2,
.dw-section h3 {
    color:
        var(--dw-section-title, var(--text));
}

.dw-section .dw-desc,
.dw-section .dw-head p,
.dw-section .dw-card p,
.dw-section .dw-capability p {
    color:
        var(--dw-section-text, var(--muted));
}


/* ========================================================================
   11. COMPANY
   ======================================================================== */

.dw-company {
    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 24px;

    align-items: stretch;
}

.dw-company-copy {
    padding: 38px;
}

.dw-company-copy p {
    font-size: 17px;
    color: var(--muted);
}

.dw-company-list {
    display: grid;
    gap: 12px;

    margin-top: 25px;
}

.dw-company-list div {
    display: flex;

    gap: 13px;

    align-items: flex-start;
}

.dw-company-list b {
    color: var(--primary);
}

.dw-company-panel {
    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--primary) 18%,
                var(--surface)
            ),
            var(--surface)
        );

    display: grid;
    place-items: center;

    min-height: 360px;

    position: relative;
    overflow: hidden;
}

.dw-company-panel::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    border:
        1px solid
        color-mix(
            in srgb,
            var(--primary) 30%,
            transparent
        );

    box-shadow:
        0 0 0 55px
        color-mix(
            in srgb,
            var(--primary) 5%,
            transparent
        ),
        0 0 0 110px
        color-mix(
            in srgb,
            var(--primary) 3%,
            transparent
        );
}

.dw-company-code {
    position: relative;
    z-index: 2;

    font:
        900 70px/1
        ui-monospace,
        monospace;

    color: var(--primary);

    text-shadow:
        0 0 30px
        color-mix(
            in srgb,
            var(--primary) 25%,
            transparent
        );
}


/* ========================================================================
   12. SERVICES
   ======================================================================== */

.dw-services {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;
}

.dw-service {
    min-height: 220px;
}

.dw-service h3 {
    font-size: 19px;
}

.dw-service p {
    font-size: 14px;
}

.dw-service .dw-icon {
    font-size: 18px;
}


/* ========================================================================
   13. TECHNOLOGY
   ======================================================================== */

.dw-tech-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;
}

.dw-tech-box {
    padding: 32px;
}

.dw-tech-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.dw-tech-tags span {
    padding: 10px 14px;

    border-radius: 12px;

    background: var(--surface);

    border: 1px solid var(--line);

    font-weight: 800;
    font-size: 14px;

    transition:
        transform .25s ease,
        background-color .25s ease,
        border-color .25s ease;
}

.dw-tech-tags span:hover {
    transform: translateY(-2px);
}

.dw-tech-note {
    color: var(--muted);
    font-size: 14px;
}


/* ========================================================================
   14. PROJECTS
   ======================================================================== */

.dw-projects {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.dw-project-image {
    height: 190px;

    border-radius: 18px;

    margin-bottom: 20px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 30% 25%,
            color-mix(
                in srgb,
                var(--primary) 35%,
                transparent
            ),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--surface-2),
            color-mix(
                in srgb,
                var(--primary) 12%,
                var(--surface)
            )
        );
}

.dw-project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.dw-project-image span {
    font:
        950 54px
        ui-monospace;

    color: var(--primary);
}

.dw-project h3 {
    margin: 0 0 7px;
    font-size: 22px;
}

.dw-project p {
    color: var(--muted);
}

.dw-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin: 15px 0 20px;
}

.dw-meta span {
    font-size: 12px;

    padding: 5px 9px;

    border-radius: 999px;

    background:
        color-mix(
            in srgb,
            var(--primary) 10%,
            transparent
        );

    color: var(--primary);

    font-weight: 850;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.dw-meta span:hover {
    transform: translateY(-2px);
}


/* ========================================================================
   15. PROCESS / METHODOLOGY
   ======================================================================== */

.dw-process {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 16px;

    position: relative;
}

.dw-process .dw-card {
    position: relative;

    padding: 23px;

    min-height: 245px;
}

.dw-process h3 {
    font-size: 19px;
}

.dw-process p {
    font-size: 14px;
}

.dw-step {
    font:
        950 42px/1
        ui-monospace;

    color:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 30%,
            transparent
        );

    margin-bottom: 18px;

    transition: transform .3s ease;
}

.dw-process .dw-card:hover .dw-step {
    transform: translateY(-3px);
}

.dw-process-icon {
    width: 56px !important;
    height: 56px !important;

    min-width: 56px;
    min-height: 56px;

    display: grid !important;
    place-items: center !important;

    border-radius: 50% !important;

    background:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 10%,
            transparent
        ) !important;

    border:
        1px solid
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 25%,
            var(--line)
        ) !important;

    color:
        var(--dw-section-accent, var(--primary)) !important;

    box-shadow:
        0 8px 24px
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 10%,
            transparent
        );

    overflow: hidden;

    transition:
        transform .35s ease,
        background-color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.dw-process-icon .dw-svg-icon {
    width: 26px !important;
    height: 26px !important;

    display: grid !important;
    place-items: center !important;

    line-height: 1;
}

.dw-process-icon .dw-svg-icon svg {
    width: 100% !important;
    height: 100% !important;

    display: block;

    fill: none !important;
    stroke: currentColor !important;

    stroke-width: 1.8 !important;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.dw-process .dw-card:hover .dw-process-icon {
    background:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 16%,
            transparent
        ) !important;

    border-color:
        var(--dw-section-accent, var(--primary)) !important;

    transform:
        translateY(-3px)
        scale(1.05);

    box-shadow:
        0 12px 30px
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 18%,
            transparent
        );
}

.dw-process-icon,
.dw-process-icon * {
    box-sizing: border-box;
}


/* ========================================================================
   16. CAPABILITIES
   ======================================================================== */

.dw-capabilities-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    margin-top: 48px;
}

.dw-capability {
    position: relative;

    min-height: 260px;

    padding: 28px 26px 25px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            color-mix(
                in srgb,
                var(--surface) 96%,
                var(--primary) 4%
            ),
            var(--surface)
        );

    overflow: hidden;

    transition:
        background-color .35s ease,
        border-color .35s ease,
        transform .35s cubic-bezier(.2, .8, .2, 1),
        box-shadow .35s ease;

    will-change: transform;
}

.dw-capability::before {
    content: "";

    position: absolute;
    inset: -1px;

    background:
        radial-gradient(
            circle at 85% 10%,
            color-mix(
                in srgb,
                var(--primary) 22%,
                transparent
            ),
            transparent 38%
        );

    opacity: 0;

    transition: opacity .4s ease;
}

.dw-capability::after {
    content: "";

    position: absolute;

    left: -30%;
    bottom: -55%;

    width: 160%;
    height: 120%;

    background:
        linear-gradient(
            120deg,
            transparent 35%,
            color-mix(
                in srgb,
                var(--primary) 9%,
                transparent
            ),
            transparent 65%
        );

    transform:
        translateX(-45%)
        rotate(-8deg);

    opacity: 0;

    transition:
        transform .7s ease,
        opacity .4s ease;
}

.dw-capability:hover {
    transform: translateY(-8px);

    border-color:
        color-mix(
            in srgb,
            var(--dw-visual-accent) 70%,
            transparent
        );

    box-shadow:
        0 18px 48px
        color-mix(
            in srgb,
            var(--dw-visual-accent) 14%,
            transparent
        );
}

.dw-capability:hover::before {
    opacity: 1;
}

.dw-capability:hover::after {
    opacity: 1;

    transform:
        translateX(28%)
        rotate(-8deg);
}

.dw-capability > * {
    position: relative;
    z-index: 2;
}

.dw-capability-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.dw-capability-icon {
    width: 56px;
    height: 56px;

    border-radius: 16px;

    display: grid;
    place-items: center;

    background:
        color-mix(
            in srgb,
            var(--primary) 12%,
            var(--surface)
        );

    border:
        1px solid
        color-mix(
            in srgb,
            var(--primary) 20%,
            var(--line)
        );

    color: var(--primary);

    font:
        900 16px
        ui-monospace,
        SFMono-Regular,
        Menlo,
        monospace;

    transition:
        transform .4s ease,
        background-color .4s ease,
        box-shadow .4s ease,
        color .35s ease;
}

.dw-capability-code {
    color: var(--gold);

    font:
        900 15px
        ui-monospace,
        SFMono-Regular,
        Menlo,
        monospace;

    opacity: .72;

    transition:
        transform .3s ease,
        color .3s ease;
}

.dw-capability:hover .dw-capability-icon {
    transform:
        translateY(-3px)
        rotate(-5deg)
        scale(1.06);

    background:
        color-mix(
            in srgb,
            var(--primary) 19%,
            var(--surface)
        );

    box-shadow:
        0 10px 28px
        color-mix(
            in srgb,
            var(--primary) 18%,
            transparent
        );
}

.dw-capability:hover .dw-capability-code {
    transform:
        translate(3px, -3px)
        rotate(8deg);

    color: var(--dw-visual-accent);
}

.dw-capability h3 {
    font-size: 22px;
    line-height: 1.15;

    margin: 0 0 12px;

    letter-spacing: -.5px;
}

.dw-capability p {
    color: var(--muted);

    margin: 0;

    line-height: 1.7;
}

.dw-capability-arrow {
    position: absolute !important;

    right: 23px;
    bottom: 19px;

    color: var(--primary);

    font-size: 20px;
    font-weight: 900;

    opacity: 0;

    transform:
        translate(-8px, 8px);

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.dw-capability:hover .dw-capability-arrow {
    opacity: 1;

    transform:
        translate(5px, -5px);
}


/* ========================================================================
   17. SECTION-SPECIFIC VISUAL VARIABLES
   ======================================================================== */

.dw-section .dw-card,
.dw-section .dw-capability {
    background:
        var(--dw-card-bg, var(--surface));

    border-color:
        var(--dw-card-border, var(--line));

    transition:
        background-color .4s ease,
        border-color .35s ease,
        transform .35s cubic-bezier(.2, .8, .2, 1),
        box-shadow .35s ease;
}

.dw-section .dw-card:hover,
.dw-section .dw-capability:hover {
    background:
        var(
            --dw-card-hover,
            var(--dw-card-bg, var(--surface))
        );

    border-color:
        var(--dw-section-accent, var(--primary));

    box-shadow:
        0 22px 55px
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 12%,
            transparent
        ),
        0 0 0 1px
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 9%,
            transparent
        ) inset;
}

.dw-section .dw-icon,
.dw-section .dw-capability-icon,
.dw-section .dw-process-icon {
    color:
        var(--dw-section-accent, var(--primary)) !important;

    background:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 11%,
            transparent
        );

    border-color:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 22%,
            var(--line)
        );
}

.dw-section .dw-card:hover .dw-icon,
.dw-section .dw-capability:hover .dw-capability-icon {
    background:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 17%,
            transparent
        );

    box-shadow:
        0 10px 28px
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 16%,
            transparent
        );
}

.dw-section .dw-tech-tags span,
.dw-section .dw-meta span,
.dw-section .dw-tag {
    border-color:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 22%,
            var(--line)
        );

    background:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 7%,
            var(--dw-card-bg, var(--surface))
        );

    color:
        var(--dw-section-title, var(--text));
}

.dw-section .dw-tech-tags span:hover,
.dw-section .dw-meta span:hover,
.dw-section .dw-tag:hover {
    background:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 16%,
            var(--dw-card-bg, var(--surface))
        );

    border-color:
        var(--dw-section-accent, var(--primary));

    transform: translateY(-2px);
}

.dw-section .dw-step {
    color:
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 30%,
            transparent
        );
}

.dw-section .dw-capability-code {
    color:
        var(--dw-section-accent, var(--gold));
}

.dw-section .dw-capability-arrow {
    color:
        var(--dw-section-accent, var(--primary));
}


/* ========================================================================
   18. CONTACT
   ======================================================================== */

.dw-contact {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 35px;
}

.dw-contact-list {
    display: grid;

    gap: 12px;

    margin-top: 25px;
}

.dw-contact-item {
    border:
        1px solid
        var(--dw-card-border, var(--line));

    background:
        var(--dw-card-bg, var(--surface));

    padding: 16px;

    border-radius: 16px;

    transition:
        background-color .4s ease,
        border-color .3s ease,
        transform .3s ease;
}

.dw-contact-item:hover {
    border-color:
        var(--dw-section-accent, var(--primary));

    transform: translateY(-2px);
}

.dw-contact-item span {
    display: block;

    color: var(--muted);

    font-size: 14px;
}


/* ========================================================================
   19. FORM
   ======================================================================== */

.dw-form {
    display: grid;
    gap: 15px;
}

.dw-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.dw-field {
    display: grid;
    gap: 7px;
}

.dw-field label {
    font-size: 14px;
    font-weight: 850;
}

.dw-field input,
.dw-field textarea {
    width: 100%;

    border:
        1px solid
        var(--dw-card-border, var(--line));

    border-radius: 14px;

    padding: 13px 15px;

    background:
        var(--dw-card-bg, var(--surface));

    color:
        var(--dw-section-title, var(--text));

    outline: none;

    transition:
        background-color .4s ease,
        border-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

.dw-field textarea {
    min-height: 150px;
    resize: vertical;
}

.dw-field input:focus,
.dw-field textarea:focus {
    border-color:
        var(--dw-section-accent, var(--primary));

    box-shadow:
        0 0 0 4px
        color-mix(
            in srgb,
            var(--dw-section-accent, var(--primary)) 11%,
            transparent
        );
}

.dw-field-help {
    display: block;

    margin-top: 7px;

    font-size: 12px;
    line-height: 1.5;

    color: var(--muted);
}

.dw-form-note {
    display: block;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.5;

    margin-top: -3px;
}

.dw-honeypot {
    position: absolute !important;

    left: -10000px !important;
    top: auto !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}

.dw-form-message {
    margin: 20px 0;

    padding: 14px 16px;

    border-radius: 14px;

    border:
        1px solid
        var(--line);

    font-weight: 750;
}

.dw-form-message.success {
    background:
        color-mix(
            in srgb,
            #22a06b 12%,
            var(--surface)
        );

    color: #168254;
}

.dw-form-message.error {
    background:
        color-mix(
            in srgb,
            #d94a4a 10%,
            var(--surface)
        );

    color: #b43b3b;
}


/* ========================================================================
   20. ICON SYSTEM
   ======================================================================== */

.dw-svg-icon {
    display: inline-grid;

    place-items: center;

    width: 1.25em;
    height: 1.25em;

    line-height: 1;

    vertical-align: -.18em;
}

.dw-svg-icon svg {
    width: 100%;
    height: 100%;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.dw-icon .dw-svg-icon {
    width: 25px;
    height: 25px;
}

.dw-btn .dw-svg-icon {
    width: 18px;
    height: 18px;
}

.dw-social .dw-svg-icon {
    width: 20px;
    height: 20px;
}

.dw-logo-mark .dw-svg-icon {
    width: 25px;
    height: 25px;
}

.dw-icon-text {
    display: inline-block;
    line-height: 1;
}


/* ========================================================================
   21. COFFEE MARK
   ======================================================================== */

.dw-coffee-mark {
    font-size: 24px !important;

    border-radius: 50% !important;

    display: grid !important;
    place-items: center !important;

    border:
        2px solid
        var(--primary) !important;

    background:
        color-mix(
            in srgb,
            var(--primary) 10%,
            transparent
        );

    width: 45px !important;
    height: 45px !important;

    box-shadow:
        0 5px 18px
        color-mix(
            in srgb,
            var(--primary) 15%,
            transparent
        );
}

.dw-coffee-mark::before,
.dw-coffee-mark::after {
    display: none !important;
}


/* ========================================================================
   22. FOOTER
   ======================================================================== */

.dw-footer {
    padding: 28px 0;

    background: var(--surface-2);

    border-top:
        1px solid
        var(--line);

    transition:
        background-color .55s ease,
        border-color .45s ease;
}

.dw-footer-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.dw-footer small {
    color: var(--muted);
}

.dw-footer-brand .dw-logo {
    gap: 9px;
}

.dw-footer-brand .dw-logo img {
    width: auto;
    height: 48px;
    display: block;
}

.dw-footer-nav {
    margin-left: auto;
}

.dw-footer-menu {
    display: flex;

    gap: 18px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.dw-footer-menu a {
    font-size: 13px;

    color: var(--muted);

    font-weight: 750;

    transition: color .25s ease;
}

.dw-footer-menu a:hover {
    color: var(--primary);
}


/* ========================================================================
   23. BACK TO TOP
   ======================================================================== */

.dw-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 45px;
    height: 45px;

    border:
        1px solid
        var(--line);

    background: var(--surface);
    color: var(--text);

    border-radius: 14px;

    z-index: 800;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.dw-top.show {
    opacity: 1;
    visibility: visible;
}


/* ========================================================================
   24. REVEAL ANIMATIONS
   ======================================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2, .8, .2, 1);
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .08s;
}

.reveal-delay-2 {
    transition-delay: .16s;
}

.reveal-delay-3 {
    transition-delay: .24s;
}


/* ========================================================================
   25. THEME TRANSITION / FLASH
   ======================================================================== */

.dw-theme-flash {
    position: fixed;
    inset: 0;

    pointer-events: none;

    z-index: 2000;

    background:
        radial-gradient(
            circle at var(--x, 50%) var(--y, 50%),
            color-mix(
                in srgb,
                var(--primary) 18%,
                transparent
            ),
            transparent 24%
        );

    opacity: 0;

    mix-blend-mode: screen;
}

.dw-theme-flash.play {
    animation:
        themeFlash .7s ease-out;
}


/* ========================================================================
   26. HERO / GLOBAL ANIMATIONS
   ======================================================================== */

@keyframes dwHeroFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform:
            translateY(-9px)
            rotate(.45deg);
    }
}

@keyframes dwGlow {
    0%,
    100% {
        transform: scale(.96);
        opacity: .7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes dwFloatCode {
    0% {
        transform:
            translate3d(0, 14px, 0)
            rotate(-2deg);
    }

    50% {
        transform:
            translate3d(12px, -8px, 0)
            rotate(2deg);
    }

    100% {
        transform:
            translate3d(-8px, -22px, 0)
            rotate(-1deg);
    }
}

@keyframes floatSpark {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(0)
            scale(1);

        opacity: .65;
    }

    50% {
        transform:
            translate3d(0, -14px, 0)
            rotate(8deg)
            scale(1.08);

        opacity: 1;
    }
}

@keyframes dwSparkA {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(0)
            scale(1);

        opacity: .52;
    }

    50% {
        transform:
            translate3d(5px, -17px, 0)
            rotate(7deg)
            scale(1.08);

        opacity: 1;
    }
}

@keyframes dwSparkB {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(0)
            scale(.96);

        opacity: .48;
    }

    50% {
        transform:
            translate3d(-8px, 12px, 0)
            rotate(-8deg)
            scale(1.12);

        opacity: .96;
    }
}

@keyframes dwSparkC {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(-3deg);

        opacity: .58;
    }

    50% {
        transform:
            translate3d(9px, -10px, 0)
            rotate(5deg);

        opacity: 1;
    }
}

@keyframes themeFlash {
    0% {
        opacity: 0;
        transform: scale(.2);
    }

    20% {
        opacity: .75;
    }

    100% {
        opacity: 0;
        transform: scale(4);
    }
}


/* ========================================================================
   27. ANIMATIONS OFF
   ======================================================================== */

.dw-animations-off .dw-cup-svg,
.dw-animations-off .dw-glow,
.dw-animations-off .dw-art .dw-spark,
.dw-animations-off .dw-floating-code {
    animation: none !important;
}

.dw-animations-off .dw-card:hover,
.dw-animations-off .dw-capability:hover {
    transform: none;
}


/* ========================================================================
   28. WORDPRESS / ELEMENTOR COMPATIBILITY
   ======================================================================== */

.elementor-page .dw-header {
    z-index: 999;
}

.elementor-page .site-content,
.elementor-page .content-area {
    width: 100%;
    max-width: none;

    padding: 0;
    margin: 0;
}

.dw-elementor-fullwidth {
    width: 100%;
}


/* ========================================================================
   29. CUSTOMIZER SECTION TARGETS
   ======================================================================== */

#empresa,
#servicios,
#tecnologias,
#proyectos,
#metodologia,
#experiencia,
#contacto {
    background-color:
        var(
            --dw-section-bg,
            var(--surface-2)
        );
}


/* ========================================================================
   30. RESPONSIVE — TABLET / LARGE
   ======================================================================== */

@media (max-width: 1100px) {

    .dw-capabilities-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ========================================================================
   31. RESPONSIVE — 1050
   ======================================================================== */

@media (max-width: 1050px) {

    .dw-menu {
        gap: 19px;
    }

    .dw-overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dw-code-card {
        grid-column: 1 / -1;
    }

    .dw-services {
        grid-template-columns: 1fr 1fr;
    }

    .dw-process {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .dw-projects {
        grid-template-columns: 1fr 1fr;
    }

}


/* ========================================================================
   32. RESPONSIVE — 900
   ======================================================================== */

@media (min-width: 900px) {

    .dw-process {
        display: grid;

        grid-template-columns:
            repeat(6, minmax(0, 1fr));

        gap: 1rem;
    }

    .dw-process .dw-card {
        min-width: 0;
    }

}


/* ========================================================================
   33. RESPONSIVE — MOBILE
   ======================================================================== */

@media (max-width: 780px) {

    .dw-container {
        width: calc(100% - 28px);
    }

    .dw-menu {
        position: absolute;

        left: 14px;
        right: 14px;

        top: calc(100% + 8px);

        padding: 12px;

        display: flex;
        flex-direction: column;

        gap: 2px;

        background: var(--surface);

        border:
            1px solid
            var(--line);

        border-radius: 18px;

        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-8px);

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;
    }

    .dw-menu.open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dw-menu a {
        display: block;
        padding: 11px;
    }

    .dw-toggle {
        display: block;
    }

    .dw-theme {
        width: 62px;
    }

    .dw-hero {
        min-height: auto;

        padding-top:
            calc(var(--header) + 45px);
    }

    .dw-hero-grid {
        grid-template-columns: 1fr;
    }

    .dw-art {
        min-height: 370px;
    }

    .dw-title {
        font-size:
            clamp(38px, 10vw, 52px);

        letter-spacing: -2.2px;
    }

    .dw-overview {
        margin-top: 0;
    }

    .dw-overview-grid,
    .dw-company,
    .dw-tech-grid,
    .dw-projects,
    .dw-services,
    .dw-process,
    .dw-contact,
    .dw-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .dw-code-card {
        grid-column: auto;
    }

    .dw-section {
        padding: 76px 0;
    }

    .dw-form-grid {
        grid-template-columns: 1fr;
    }

    .dw-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .dw-footer-nav {
        margin-left: 0;
    }

    .dw-footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dw-company-panel {
        min-height: 300px;
    }

    .dw-section::before {
        opacity: .55;
    }

    .dw-head::after {
        margin-top: 15px;
    }

    .dw-art .dw-spark {
        font-size: 17px;
    }

    .dw-art .s5,
    .dw-art .s7,
    .dw-art .s11 {
        font-size: 14px;
    }

}


/* ========================================================================
   34. RESPONSIVE — SMALL MOBILE
   ======================================================================== */

@media (max-width: 600px) {

    .dw-capabilities-grid {
        grid-template-columns: 1fr;
    }

}


/* ========================================================================
   35. REDUCED MOTION / ACCESSIBILITY
   ======================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation: none !important;

        transition:
            none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .dw-floating-code {
        animation: none;
    }

    .dw-card,
    .dw-capability,
    .dw-icon,
    .dw-capability-icon,
    .dw-process-icon {
        transition: none;
    }

}