/* =========================================================
   DISEÑO WEB COSTA RICA
   BLOQUE 01 — HERO
========================================================= */

.dws-hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #f8faf9 0%,
            #ffffff 48%,
            #f4f7f5 100%
        );
    color: #111;
}


/* =========================================================
   BACKGROUND
========================================================= */

.dws-hero__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}


.dws-hero__grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(15, 23, 20, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 20, .035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.8),
            transparent 88%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.8),
            transparent 88%
        );
}


.dws-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}


.dws-hero__glow--orange {
    width: 620px;
    height: 620px;

    right: -220px;
    top: -220px;

    background:
        radial-gradient(
            circle,
            rgba(242, 113, 33, .18),
            rgba(242, 113, 33, 0) 68%
        );
}


.dws-hero__glow--green {
    width: 520px;
    height: 520px;

    left: -260px;
    bottom: -260px;

    background:
        radial-gradient(
            circle,
            rgba(35, 143, 83, .13),
            rgba(35, 143, 83, 0) 70%
        );
}


/* LÍNEAS DECORATIVAS */

.dws-hero__line {
    position: absolute;
    width: 1px;
    height: 250px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(17, 17, 17, .12),
            transparent
        );
}

.dws-hero__line--one {
    left: 9%;
    top: 18%;
}

.dws-hero__line--two {
    right: 7%;
    bottom: 8%;
}


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

.dws-hero__inner {
    position: relative;
    z-index: 2;

    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;

    padding-top: 128px;
}


/* =========================================================
   TOP
========================================================= */

.dws-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 42px;

    border-bottom:
        1px solid rgba(17, 17, 17, .09);
}


.dws-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;

    color: #4f5a55;
}


.dws-hero__eyebrow-line {
    width: 34px;
    height: 2px;

    background: #ef7024;
}


.dws-hero__chapter {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: #89918d;
}


/* =========================================================
   MAIN
========================================================= */

.dws-hero__content {
    display: grid;
    grid-template-columns:
        minmax(0, .95fr)
        minmax(560px, 1.05fr);

    align-items: center;
    gap: 70px;

    min-height: 590px;

    padding: 64px 0 50px;
}


/* =========================================================
   COPY
========================================================= */

.dws-hero__copy {
    position: relative;
    z-index: 5;
}


.dws-hero__label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 24px;

    padding: 8px 14px;

    border-radius: 100px;

    background: rgba(35, 143, 83, .08);

    color: #238f53;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}


.dws-hero__copy h1 {
    margin: 0;

    font-size:
        clamp(50px, 5vw, 79px);

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 500;
}


.dws-hero__copy h1 span,
.dws-hero__copy h1 strong {
    display: block;
}


.dws-hero__copy h1 span {
    color: #121614;
}


.dws-hero__copy h1 strong {
    margin-top: 6px;

    color: #ef7024;

    font-weight: 700;
}


.dws-hero__description {
    max-width: 610px;

    margin: 31px 0 0;

    color: #58625d;

    font-size: 16px;
    line-height: 1.85;

    font-weight: 400;
}


/* =========================================================
   BOTONES
========================================================= */

.dws-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 35px;
}


.dws-button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    padding: 0 24px;

    text-decoration: none;

    border-radius: 4px;

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

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.dws-button span {
    font-size: 17px;

    transition: transform .3s ease;
}


.dws-button:hover span {
    transform: translateX(4px);
}


.dws-button--primary {
    background: #151816;
    color: #fff;

    border: 1px solid #151816;
}


.dws-button--primary:hover {
    background: #ef7024;
    border-color: #ef7024;

    transform: translateY(-2px);
}


.dws-button--ghost {
    background: rgba(255,255,255,.55);

    border:
        1px solid rgba(17,17,17,.14);

    color: #1c211e;
}


.dws-button--ghost:hover {
    background: #fff;
    border-color: rgba(17,17,17,.28);

    transform: translateY(-2px);
}


/* =========================================================
   TRUST
========================================================= */

.dws-hero__trust {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 38px;
}


.dws-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}


.dws-hero__trust-item strong {
    font-size: 24px;
    line-height: 1;

    letter-spacing: -.04em;

    color: #1c211e;
}


.dws-hero__trust-item span {
    max-width: 100px;

    color: #77817c;

    font-size: 10px;
    line-height: 1.45;

    text-transform: uppercase;
    letter-spacing: .07em;
}


.dws-hero__trust-separator {
    width: 1px;
    height: 36px;

    background: rgba(17,17,17,.12);
}


/* =========================================================
   VISUAL
========================================================= */

.dws-hero__visual {
    position: relative;

    min-height: 490px;

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


/* ORBITS */

.dws-hero__orbit {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(17,17,17,.075);
}


.dws-hero__orbit--one {
    width: 540px;
    height: 540px;
}


.dws-hero__orbit--two {
    width: 410px;
    height: 410px;

    border-style: dashed;

    animation:
        dwsOrbitRotate
        32s linear infinite;
}


@keyframes dwsOrbitRotate {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   NAVEGADOR
========================================================= */

.dws-browser {
    position: relative;
    z-index: 4;

    width: min(600px, 88%);

    overflow: hidden;

    border-radius: 12px;

    background: #fff;

    border:
        1px solid rgba(17,17,17,.09);

    box-shadow:
        0 35px 80px rgba(22, 34, 27, .16);
}


.dws-browser__bar {
    height: 43px;

    display: flex;
    align-items: center;

    position: relative;

    padding: 0 15px;

    background: #f3f5f4;

    border-bottom:
        1px solid rgba(17,17,17,.08);
}


.dws-browser__dots {
    display: flex;
    gap: 6px;
}


.dws-browser__dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c4cac7;
}


.dws-browser__dots span:first-child {
    background: #ef7024;
}


.dws-browser__address {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    width: 47%;

    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border-radius: 4px;

    background: #fff;

    font-size: 9px;
    color: #79817d;
}


.dws-browser__lock {
    color: #238f53;
    font-size: 7px;
}


.dws-browser__screen {
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #e9eeeb,
            #f8faf9
        );
}


.dws-browser__screen img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   PHONE
========================================================= */

.dws-phone {
    position: absolute;
    z-index: 8;

    width: 148px;

    right: 4%;
    bottom: 15px;

    padding: 8px;

    background: #151816;

    border-radius: 25px;

    box-shadow:
        0 28px 50px rgba(0,0,0,.23);

    transform: rotate(2deg);
}


.dws-phone__speaker {
    width: 32px;
    height: 4px;

    margin: 2px auto 7px;

    border-radius: 20px;

    background: rgba(255,255,255,.24);
}


.dws-phone__screen {
    overflow: hidden;

    border-radius: 18px;

    aspect-ratio: 9 / 18;

    background: #fff;
}


.dws-phone__screen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.dws-floating {
    position: absolute;
    z-index: 10;

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

    padding: 11px 14px;

    background:
        rgba(255,255,255,.92);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border:
        1px solid rgba(17,17,17,.08);

    border-radius: 7px;

    box-shadow:
        0 15px 35px rgba(30, 45, 37, .10);
}


.dws-floating small {
    display: block;

    margin-bottom: 1px;

    color: #87908b;

    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .09em;
}


.dws-floating strong {
    display: block;

    color: #202622;

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


.dws-floating__icon {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(239,112,36,.10);

    color: #ef7024;

    font-size: 14px;
}


.dws-floating--responsive {
    left: 0;
    top: 54px;
}


.dws-floating--speed {
    right: 4%;
    top: 52px;
}


.dws-floating--admin {
    left: 4%;
    bottom: 38px;
}


.dws-floating__pulse {
    position: relative;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #238f53;
}


.dws-floating__pulse::before {
    content: "";

    position: absolute;
    inset: -5px;

    border-radius: 50%;

    border:
        1px solid rgba(35,143,83,.35);

    animation:
        dwsPulse
        2s ease-out infinite;
}


@keyframes dwsPulse {

    0% {
        opacity: 1;
        transform: scale(.7);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }

}


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

.dws-hero__footer {
    min-height: 72px;

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

    border-top:
        1px solid rgba(17,17,17,.09);
}


.dws-hero__features {
    display: flex;
    align-items: center;
    gap: 0;
}


.dws-hero__features span {
    position: relative;

    padding: 0 20px;

    color: #6f7974;

    font-size: 10px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: .09em;
}


.dws-hero__features span:first-child {
    padding-left: 0;

    color: #238f53;
}


.dws-hero__features span:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #c5cbc8;

    transform: translateY(-50%);
}


.dws-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #5b6560;

    text-decoration: none;

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

    text-transform: uppercase;
    letter-spacing: .12em;
}


.dws-hero__scroll span {
    color: #ef7024;

    font-size: 15px;

    transition:
        transform .25s ease;
}


.dws-hero__scroll:hover span {
    transform: translateY(4px);
}


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

@media (max-width: 1180px) {

    .dws-hero__content {
        grid-template-columns:
            minmax(0, .9fr)
            minmax(480px, 1.1fr);

        gap: 30px;
    }


    .dws-hero__copy h1 {
        font-size:
            clamp(45px, 5vw, 65px);
    }


    .dws-phone {
        width: 125px;
    }

}


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

@media (max-width: 980px) {

    .dws-hero {
        min-height: auto;
    }


    .dws-hero__inner {
        width:
            min(100% - 44px, 820px);

        padding-top: 110px;
    }


    .dws-hero__content {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 50px;
    }


    .dws-hero__copy {
        max-width: 700px;
    }


    .dws-hero__visual {
        min-height: 500px;
    }


    .dws-browser {
        width: min(620px, 85%);
    }


    .dws-hero__footer {
        margin-top: 20px;
    }

}


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

@media (max-width: 680px) {

    .dws-hero__inner {
        width: calc(100% - 32px);

        padding-top: 95px;
    }


    .dws-hero__top {
        padding-bottom: 22px;
    }


    .dws-hero__chapter {
        display: none;
    }


    .dws-hero__eyebrow {
        font-size: 10px;
    }


    .dws-hero__content {
        padding-top: 35px;
    }


    .dws-hero__label {
        margin-bottom: 18px;

        font-size: 9px;
    }


    .dws-hero__copy h1 {
        font-size:
            clamp(41px, 13vw, 57px);

        line-height: 1;
    }


    .dws-hero__description {
        margin-top: 25px;

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


    .dws-hero__actions {
        flex-direction: column;
        align-items: stretch;

        margin-top: 28px;
    }


    .dws-button {
        width: 100%;

        justify-content: space-between;
    }


    .dws-hero__trust {
        gap: 16px;
    }


    .dws-hero__trust-item strong {
        font-size: 20px;
    }


    .dws-hero__trust-item span {
        font-size: 8px;
    }


    /* VISUAL */

    .dws-hero__visual {
        min-height: 360px;
    }


    .dws-hero__orbit--one {
        width: 340px;
        height: 340px;
    }


    .dws-hero__orbit--two {
        width: 270px;
        height: 270px;
    }


    .dws-browser {
        width: 94%;
    }


    .dws-browser__address {
        width: 58%;

        font-size: 7px;
    }


    .dws-phone {
        width: 90px;

        right: 0;
        bottom: 20px;
    }


    .dws-floating {
        padding: 8px 10px;
    }


    .dws-floating small {
        font-size: 6px;
    }


    .dws-floating strong {
        font-size: 8px;
    }


    .dws-floating--responsive {
        left: 0;
        top: 15px;
    }


    .dws-floating--speed {
        right: 0;
        top: 18px;
    }


    .dws-floating--admin {
        left: 0;
        bottom: 12px;
    }


    /* FOOTER */

    .dws-hero__footer {
        min-height: auto;

        padding: 28px 0;

        align-items: flex-end;
    }


    .dws-hero__features {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }


    .dws-hero__features span {
        padding: 0;
    }


    .dws-hero__features span::after {
        display: none;
    }

}

/* =========================================================
   DISEÑO WEB COSTA RICA
   BLOQUE 02 — NECESIDADES
========================================================= */

.dws-needs {
    position: relative;
    overflow: hidden;

    padding: 125px 0 105px;

    background: #111513;

    color: #fff;
}


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

.dws-needs__inner {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
}


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

.dws-needs__header {
    margin-bottom: 72px;
}


.dws-needs__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 30px;

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

    text-transform: uppercase;

    letter-spacing: .14em;

    color: rgba(255,255,255,.53);
}


.dws-needs__eyebrow-line {
    width: 34px;
    height: 2px;

    background: #ef7024;
}


.dws-needs__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .55fr);

    gap: 100px;

    align-items: end;
}


.dws-needs__heading h2 {
    max-width: 800px;

    margin: 0;

    font-size:
        clamp(45px, 5vw, 74px);

    line-height: 1;

    letter-spacing: -.05em;

    font-weight: 400;
}


.dws-needs__heading h2 strong {
    display: block;

    color: #ef7024;

    font-weight: 700;
}


.dws-needs__heading p {
    max-width: 450px;

    margin: 0 0 5px;

    font-size: 14px;
    line-height: 1.85;

    color: rgba(255,255,255,.58);
}


/* =========================================================
   GRID
========================================================= */

.dws-needs__grid {
    display: grid;

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

    border-top:
        1px solid rgba(255,255,255,.13);

    border-bottom:
        1px solid rgba(255,255,255,.13);
}


/* =========================================================
   CARD
========================================================= */

.dws-need-card {
    position: relative;

    min-height: 430px;

    display: flex;
    flex-direction: column;

    padding: 28px 28px 30px;

    border-right:
        1px solid rgba(255,255,255,.13);

    overflow: hidden;

    transition:
        background .45s ease,
        transform .45s ease;
}


.dws-need-card:first-child {
    border-left:
        1px solid rgba(255,255,255,.13);
}


/* FONDO ANIMADO */

.dws-need-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(239,112,36,.98),
            rgba(214,85,10,.96)
        );

    transform: translateY(101%);

    transition:
        transform .5s cubic-bezier(.2,.7,.2,1);
}


.dws-need-card:hover::before {
    transform: translateY(0);
}


/* DESTACADA */

.dws-need-card--featured::before {
    background:
        linear-gradient(
            145deg,
            #238f53,
            #126b3a
        );
}


/* =========================================================
   NUMBER
========================================================= */

.dws-need-card__number {
    position: relative;
    z-index: 2;

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

    letter-spacing: .12em;

    color: rgba(255,255,255,.34);
}


/* =========================================================
   ICON
========================================================= */

.dws-need-card__icon {
    position: relative;
    z-index: 2;

    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    margin-top: 45px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 50%;

    color: #ef7024;

    font-size: 19px;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


.dws-need-card:hover .dws-need-card__icon {
    background: #fff;

    color: #161a18;

    border-color: #fff;

    transform: rotate(8deg);
}


/* =========================================================
   CONTENT
========================================================= */

.dws-need-card__content {
    position: relative;
    z-index: 2;

    margin-top: auto;
}


.dws-need-card__label {
    display: block;

    margin-bottom: 13px;

    color: #ef7024;

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

    text-transform: uppercase;
    letter-spacing: .14em;

    transition: color .35s ease;
}


.dws-need-card h3 {
    max-width: 270px;

    margin: 0;

    font-size: 23px;
    line-height: 1.18;

    letter-spacing: -.025em;

    font-weight: 500;

    color: #fff;
}


.dws-need-card p {
    max-width: 270px;

    margin: 18px 0 0;

    font-size: 12px;
    line-height: 1.75;

    color: rgba(255,255,255,.47);

    transition: color .35s ease;
}


/* HOVER TEXTO */

.dws-need-card:hover
.dws-need-card__label {
    color: rgba(255,255,255,.72);
}


.dws-need-card:hover p {
    color: rgba(255,255,255,.82);
}


/* =========================================================
   ARROW
========================================================= */

.dws-need-card__arrow {
    position: absolute;
    z-index: 2;

    right: 27px;
    top: 27px;

    font-size: 17px;

    color: rgba(255,255,255,.32);

    transition:
        color .35s ease,
        transform .35s ease;
}


.dws-need-card:hover
.dws-need-card__arrow {
    color: #fff;

    transform: translateX(5px);
}


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

.dws-needs__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 34px;
}


.dws-needs__footer p {
    margin: 0;

    color: rgba(255,255,255,.46);

    font-size: 12px;
}


.dws-needs__footer p strong {
    color: #fff;

    font-weight: 500;
}


.dws-needs__link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    text-decoration: none;

    color: #fff;

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

    text-transform: uppercase;

    letter-spacing: .09em;
}


.dws-needs__link span {
    color: #ef7024;

    font-size: 17px;

    transition:
        transform .3s ease;
}


.dws-needs__link:hover span {
    transform: translateX(5px);
}


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

@media (max-width: 1050px) {

    .dws-needs__heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .dws-needs__heading p {
        max-width: 600px;
    }


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


    .dws-need-card {
        min-height: 380px;
    }


    .dws-need-card:nth-child(2) {
        border-right:
            1px solid rgba(255,255,255,.13);
    }


    .dws-need-card:nth-child(3),
    .dws-need-card:nth-child(4) {
        border-top:
            1px solid rgba(255,255,255,.13);
    }

}


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

@media (max-width: 680px) {

    .dws-needs {
        padding:
            85px 0 70px;
    }


    .dws-needs__inner {
        width:
            calc(100% - 32px);
    }


    .dws-needs__header {
        margin-bottom: 45px;
    }


    .dws-needs__heading h2 {
        font-size:
            clamp(38px, 12vw, 52px);
    }


    .dws-needs__heading p {
        font-size: 13px;
    }


    .dws-needs__grid {
        grid-template-columns: 1fr;
    }


    .dws-need-card {
        min-height: 310px;

        border-left:
            1px solid rgba(255,255,255,.13);

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


    .dws-need-card:first-child {
        border-top: none;
    }


    .dws-need-card__icon {
        margin-top: 30px;
    }


    .dws-need-card h3 {
        max-width: 320px;

        font-size: 22px;
    }


    .dws-need-card p {
        max-width: 340px;
    }


    .dws-needs__footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

}

/* =========================================================
   DISEÑO WEB COSTA RICA
   BLOQUE 03 — QUÉ HACEMOS DIFERENTE
========================================================= */

.dws-difference {
    position: relative;

    padding: 125px 0 115px;

    background: #f4f6f5;

    color: #151916;

    overflow: hidden;
}


.dws-difference::before {
    content: "";

    position: absolute;

    width: 640px;
    height: 640px;

    right: -330px;
    top: 100px;

    border-radius: 50%;

    border:
        1px solid rgba(17, 24, 20, .06);

    pointer-events: none;
}


.dws-difference::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: 210px;

    border-radius: 50%;

    border:
        1px dashed rgba(17, 24, 20, .07);

    pointer-events: none;
}


/* =========================================================
   INNER
========================================================= */

.dws-difference__inner {
    position: relative;
    z-index: 2;

    width: min(1380px, calc(100% - 80px));

    margin: 0 auto;
}


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

.dws-difference__header {
    margin-bottom: 68px;
}


.dws-difference__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 30px;

    color: #747f79;

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

    text-transform: uppercase;

    letter-spacing: .14em;
}


.dws-difference__eyebrow-line {
    width: 34px;
    height: 2px;

    background: #238f53;
}


.dws-difference__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .55fr);

    gap: 100px;

    align-items: end;
}


.dws-difference__heading h2 {
    max-width: 820px;

    margin: 0;

    font-size:
        clamp(45px, 5vw, 72px);

    line-height: 1;

    letter-spacing: -.052em;

    font-weight: 400;
}


.dws-difference__heading h2 strong {
    display: block;

    color: #238f53;

    font-weight: 700;
}


.dws-difference__heading p {
    max-width: 440px;

    margin: 0;

    color: #69736e;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   GRID
========================================================= */

.dws-difference__grid {
    display: grid;

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

    gap: 1px;

    overflow: hidden;

    border:
        1px solid #dce1de;

    background: #dce1de;
}


/* =========================================================
   CARD
========================================================= */

.dws-difference-card {
    position: relative;

    min-height: 360px;

    display: flex;
    flex-direction: column;

    padding: 30px;

    background: #fff;

    overflow: hidden;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;
}


.dws-difference-card::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    right: -115px;
    top: -115px;

    border-radius: 50%;

    background:
        rgba(35,143,83,.06);

    transition:
        transform .5s ease,
        background .5s ease;
}


.dws-difference-card:hover::before {
    transform: scale(1.8);

    background:
        rgba(35,143,83,.09);
}


/* =========================================================
   TOP
========================================================= */

.dws-difference-card__top {
    position: relative;
    z-index: 2;

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


.dws-difference-card__number {
    color: #9aa39e;

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

    letter-spacing: .12em;
}


.dws-difference-card__symbol {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border:
        1px solid #dfe4e1;

    color: #238f53;

    font-size: 17px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}


.dws-difference-card:hover
.dws-difference-card__symbol {
    transform: rotate(9deg);

    background: #238f53;

    border-color: #238f53;

    color: #fff;
}


/* =========================================================
   CONTENT
========================================================= */

.dws-difference-card__content {
    position: relative;
    z-index: 2;

    margin-top: auto;

    padding-top: 70px;
}


.dws-difference-card h3 {
    max-width: 280px;

    margin: 0;

    font-size: 25px;

    line-height: 1.16;

    letter-spacing: -.03em;

    font-weight: 500;

    color: #191e1b;
}


.dws-difference-card p {
    max-width: 310px;

    margin: 18px 0 0;

    color: #747e79;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER CARD
========================================================= */

.dws-difference-card__footer {
    position: relative;
    z-index: 2;

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

    margin-top: 28px;

    padding-top: 18px;

    border-top:
        1px solid #e6e9e7;

    color: #8b9590;

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

    text-transform: uppercase;

    letter-spacing: .12em;
}


.dws-difference-card__footer span {
    color: #238f53;

    font-size: 15px;

    transition:
        transform .3s ease;
}


.dws-difference-card:hover
.dws-difference-card__footer span {
    transform: translateX(4px);
}


/* =========================================================
   ORANGE CARD
========================================================= */

.dws-difference-card--orange {
    background:
        linear-gradient(
            145deg,
            #ef7024,
            #dc5d10
        );
}


.dws-difference-card--orange::before {
    background:
        rgba(255,255,255,.08);
}


.dws-difference-card--orange
.dws-difference-card__number,

.dws-difference-card--orange p,

.dws-difference-card--orange
.dws-difference-card__footer {
    color:
        rgba(255,255,255,.72);
}


.dws-difference-card--orange h3 {
    color: #fff;
}


.dws-difference-card--orange
.dws-difference-card__symbol {
    border-color:
        rgba(255,255,255,.28);

    color: #fff;
}


.dws-difference-card--orange
.dws-difference-card__footer {
    border-color:
        rgba(255,255,255,.20);
}


.dws-difference-card--orange
.dws-difference-card__footer span {
    color: #fff;
}


.dws-difference-card--orange:hover
.dws-difference-card__symbol {
    background: #fff;

    color: #ef7024;

    border-color: #fff;
}


/* =========================================================
   GREEN CARD
========================================================= */

.dws-difference-card--green {
    background:
        linear-gradient(
            145deg,
            #238f53,
            #167643
        );
}


.dws-difference-card--green::before {
    background:
        rgba(255,255,255,.08);
}


.dws-difference-card--green
.dws-difference-card__number,

.dws-difference-card--green p,

.dws-difference-card--green
.dws-difference-card__footer {
    color:
        rgba(255,255,255,.72);
}


.dws-difference-card--green h3 {
    color: #fff;
}


.dws-difference-card--green
.dws-difference-card__symbol {
    border-color:
        rgba(255,255,255,.28);

    color: #fff;
}


.dws-difference-card--green
.dws-difference-card__footer {
    border-color:
        rgba(255,255,255,.20);
}


.dws-difference-card--green
.dws-difference-card__footer span {
    color: #fff;
}


.dws-difference-card--green:hover
.dws-difference-card__symbol {
    background: #fff;

    color: #238f53;

    border-color: #fff;
}


/* =========================================================
   CLOSING
========================================================= */

.dws-difference__closing {
    display: grid;

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

    align-items: center;

    gap: 24px;

    margin-top: 45px;

    padding-top: 35px;

    border-top:
        1px solid #d9dfdc;
}


.dws-difference__closing-mark {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: #171b19;

    border-radius: 50%;

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .05em;
}


.dws-difference__closing-copy small {
    display: block;

    margin-bottom: 5px;

    color: #8a948f;

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

    letter-spacing: .12em;

    text-transform: uppercase;
}


.dws-difference__closing-copy p {
    margin: 0;

    color: #262d29;

    font-size: 15px;

    font-weight: 500;
}


.dws-difference__closing-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    color: #262d29;

    text-decoration: none;

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

    text-transform: uppercase;

    letter-spacing: .1em;
}


.dws-difference__closing-link span {
    color: #ef7024;

    font-size: 16px;

    transition:
        transform .3s ease;
}


.dws-difference__closing-link:hover span {
    transform: translateY(4px);
}


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

@media (max-width: 1050px) {

    .dws-difference__heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .dws-difference__heading p {
        max-width: 600px;
    }


    .dws-difference__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


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

@media (max-width: 680px) {

    .dws-difference {
        padding:
            85px 0 70px;
    }


    .dws-difference__inner {
        width:
            calc(100% - 32px);
    }


    .dws-difference__header {
        margin-bottom: 45px;
    }


    .dws-difference__heading h2 {
        font-size:
            clamp(38px, 12vw, 52px);
    }


    .dws-difference__heading p {
        font-size: 13px;
    }


    .dws-difference__grid {
        grid-template-columns: 1fr;
    }


    .dws-difference-card {
        min-height: 330px;

        padding: 26px;
    }


    .dws-difference-card__content {
        padding-top: 55px;
    }


    .dws-difference-card h3 {
        font-size: 23px;
    }


    .dws-difference__closing {
        grid-template-columns:
            auto 1fr;

        gap: 18px;
    }


    .dws-difference__closing-link {
        grid-column: 1 / -1;

        margin-top: 10px;
    }

}

/* =========================================================
   DISEÑO WEB COSTA RICA
   BLOQUE 04 — PROCESO
========================================================= */

.dws-process {
    position: relative;

    padding: 125px 0 110px;

    background: #fff;

    color: #161a18;

    overflow: hidden;
}


/* DETALLE FONDO */

.dws-process::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: -260px;
    bottom: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(239,112,36,.08),
            rgba(239,112,36,0) 68%
        );

    pointer-events: none;
}


/* =========================================================
   INNER
========================================================= */

.dws-process__inner {
    position: relative;
    z-index: 2;

    width: min(1380px, calc(100% - 80px));

    margin: 0 auto;
}


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

.dws-process__header {
    margin-bottom: 80px;
}


.dws-process__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 30px;

    color: #77817c;

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

    letter-spacing: .14em;

    text-transform: uppercase;
}


.dws-process__eyebrow-line {
    width: 34px;
    height: 2px;

    background: #ef7024;
}


.dws-process__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .55fr);

    gap: 100px;

    align-items: end;
}


.dws-process__heading h2 {
    max-width: 800px;

    margin: 0;

    font-size:
        clamp(45px, 5vw, 72px);

    line-height: 1;

    letter-spacing: -.052em;

    font-weight: 400;
}


.dws-process__heading h2 strong {
    display: block;

    color: #ef7024;

    font-weight: 700;
}


.dws-process__heading p {
    max-width: 430px;

    margin: 0;

    color: #6f7974;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   TRACK
========================================================= */

.dws-process__track {
    position: relative;

    display: grid;

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

    gap: 0;

    padding-top: 38px;
}


/* LÍNEA CENTRAL */

.dws-process__line {
    position: absolute;

    left: 10%;
    right: 10%;

    top: 60px;

    height: 1px;

    background: #dfe4e1;
}


.dws-process__line span {
    position: absolute;

    left: 0;
    top: -1px;

    width: 55%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #238f53,
            #ef7024
        );

    border-radius: 20px;
}


/* =========================================================
   STEP
========================================================= */

.dws-process-step {
    position: relative;

    padding: 0 26px;
}


.dws-process-step:first-of-type {
    padding-left: 0;
}


.dws-process-step:last-of-type {
    padding-right: 0;
}


/* =========================================================
   POINT
========================================================= */

.dws-process-step__point {
    position: relative;
    z-index: 3;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    margin-bottom: 38px;

    background: #fff;

    border:
        1px solid #d9dfdc;

    border-radius: 50%;

    box-shadow:
        0 8px 25px rgba(25, 38, 31, .05);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.dws-process-step__point span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .08em;

    color: #858f8a;
}


.dws-process-step:hover
.dws-process-step__point {
    transform: translateY(-4px);

    background: #171b19;

    border-color: #171b19;
}


.dws-process-step:hover
.dws-process-step__point span {
    color: #fff;
}


/* ACTIVO */

.dws-process-step--active
.dws-process-step__point {
    background: #ef7024;

    border-color: #ef7024;

    transform: scale(1.12);

    box-shadow:
        0 12px 30px rgba(239,112,36,.20);
}


.dws-process-step--active
.dws-process-step__point span {
    color: #fff;
}


/* =========================================================
   CONTENT
========================================================= */

.dws-process-step__label {
    display: block;

    margin-bottom: 12px;

    color: #238f53;

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

    text-transform: uppercase;

    letter-spacing: .13em;
}


.dws-process-step--active
.dws-process-step__label {
    color: #ef7024;
}


.dws-process-step h3 {
    max-width: 210px;

    margin: 0;

    color: #181d1a;

    font-size: 23px;

    line-height: 1.14;

    letter-spacing: -.03em;

    font-weight: 500;
}


.dws-process-step p {
    max-width: 230px;

    margin: 18px 0 0;

    color: #78827d;

    font-size: 11px;

    line-height: 1.8;
}


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

.dws-process__footer {
    display: flex;

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

    margin-top: 75px;

    padding-top: 32px;

    border-top:
        1px solid #dfe4e1;
}


.dws-process__footer-copy {
    display: flex;
    align-items: center;
    gap: 16px;
}


.dws-process__footer-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(35,143,83,.08);

    color: #238f53;

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


.dws-process__footer-copy small {
    display: block;

    margin-bottom: 4px;

    color: #89928e;

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

    letter-spacing: .12em;

    text-transform: uppercase;
}


.dws-process__footer-copy p {
    margin: 0;

    color: #29302c;

    font-size: 13px;

    font-weight: 500;
}


.dws-process__link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: #232925;

    text-decoration: none;

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

    text-transform: uppercase;

    letter-spacing: .1em;
}


.dws-process__link span {
    color: #ef7024;

    font-size: 16px;

    transition:
        transform .3s ease;
}


.dws-process__link:hover span {
    transform: translateY(4px);
}


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

@media (max-width: 1050px) {

    .dws-process__heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .dws-process__heading p {
        max-width: 600px;
    }


    .dws-process__track {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 0;
    }


    .dws-process__line {
        display: none;
    }


    .dws-process-step {
        padding: 0 35px 35px 0;

        border-bottom:
            1px solid #e1e5e3;
    }


    .dws-process-step:nth-child(even) {
        padding-left: 35px;
    }

}


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

@media (max-width: 680px) {

    .dws-process {
        padding:
            85px 0 70px;
    }


    .dws-process__inner {
        width:
            calc(100% - 32px);
    }


    .dws-process__header {
        margin-bottom: 45px;
    }


    .dws-process__heading h2 {
        font-size:
            clamp(38px, 12vw, 52px);
    }


    .dws-process__heading p {
        font-size: 13px;
    }


    .dws-process__track {
        display: block;

        padding-top: 0;
    }


    .dws-process-step {
        position: relative;

        padding:
            0 0 35px 72px;

        margin-bottom: 35px;

        border-bottom:
            1px solid #e2e6e4;
    }


    .dws-process-step:nth-child(even) {
        padding-left: 72px;
    }


    .dws-process-step__point {
        position: absolute;

        left: 0;
        top: 0;

        margin: 0;
    }


    .dws-process-step h3 {
        max-width: 280px;

        font-size: 22px;
    }


    .dws-process-step p {
        max-width: 100%;

        font-size: 12px;
    }


    .dws-process__footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        margin-top: 40px;
    }

}
/* =========================================================
   DISEÑO WEB COSTA RICA
   BLOQUE 05 — TIPOS DE SITIOS
========================================================= */

.dws-types {
    position: relative;

    padding: 125px 0 110px;

    background: #121614;

    color: #fff;

    overflow: hidden;
}


.dws-types::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -350px;
    top: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35,143,83,.13),
            rgba(35,143,83,0) 70%
        );

    pointer-events: none;
}


/* =========================================================
   INNER
========================================================= */

.dws-types__inner {
    position: relative;
    z-index: 2;

    width: min(1380px, calc(100% - 80px));

    margin: 0 auto;
}


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

.dws-types__header {
    margin-bottom: 65px;
}


.dws-types__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.48);

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

    letter-spacing: .14em;

    text-transform: uppercase;
}


.dws-types__eyebrow-line {
    width: 34px;
    height: 2px;

    background: #238f53;
}


.dws-types__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .55fr);

    gap: 100px;

    align-items: end;
}


.dws-types__heading h2 {
    max-width: 850px;

    margin: 0;

    font-size:
        clamp(45px, 5vw, 72px);

    line-height: 1;

    letter-spacing: -.052em;

    font-weight: 400;
}


.dws-types__heading h2 strong {
    display: block;

    color: #ef7024;

    font-weight: 700;
}


.dws-types__heading p {
    max-width: 440px;

    margin: 0;

    color: rgba(255,255,255,.54);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   LIST
========================================================= */

.dws-types__list {
    border-top:
        1px solid rgba(255,255,255,.12);
}


/* =========================================================
   TYPE
========================================================= */

.dws-type {
    position: relative;

    display: grid;

    grid-template-columns:
        70px
        minmax(0, 1fr)
        180px
        42px;

    align-items: center;

    gap: 25px;

    min-height: 150px;

    padding: 22px 10px;

    border-bottom:
        1px solid rgba(255,255,255,.12);

    overflow: hidden;

    transition:
        padding .35s ease,
        background .35s ease;
}


.dws-type::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(239,112,36,.13),
            rgba(239,112,36,.02)
        );

    transform: translateX(-101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);
}


.dws-type:hover::before {
    transform: translateX(0);
}


.dws-type:hover {
    padding-left: 22px;
}


/* =========================================================
   INDEX
========================================================= */

.dws-type__index {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,.26);

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

    letter-spacing: .12em;
}


/* =========================================================
   MAIN
========================================================= */

.dws-type__main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        130px
        300px
        minmax(250px, 1fr);

    align-items: center;

    gap: 28px;
}


.dws-type__tag {
    color: #ef7024;

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

    letter-spacing: .12em;

    text-transform: uppercase;
}


.dws-type h3 {
    margin: 0;

    color: #fff;

    font-size: 25px;

    line-height: 1.15;

    letter-spacing: -.025em;

    font-weight: 500;
}


.dws-type p {
    max-width: 470px;

    margin: 0;

    color: rgba(255,255,255,.48);

    font-size: 12px;

    line-height: 1.75;

    transition:
        color .35s ease;
}


.dws-type:hover p {
    color: rgba(255,255,255,.72);
}


/* =========================================================
   META
========================================================= */

.dws-type__meta {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,.35);

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

    letter-spacing: .09em;

    text-align: right;

    text-transform: uppercase;
}


/* =========================================================
   ARROW
========================================================= */

.dws-type__arrow {
    position: relative;
    z-index: 2;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 50%;

    color: rgba(255,255,255,.45);

    font-size: 15px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
}


.dws-type:hover
.dws-type__arrow {
    transform: rotate(45deg);

    background: #ef7024;

    border-color: #ef7024;

    color: #fff;
}


/* =========================================================
   FEATURED ORANGE
========================================================= */

.dws-type--featured {
    background:
        rgba(239,112,36,.07);
}


.dws-type--featured::before {
    background:
        linear-gradient(
            90deg,
            rgba(239,112,36,.92),
            rgba(215,88,13,.72)
        );
}


.dws-type--featured:hover
.dws-type__tag,

.dws-type--featured:hover
.dws-type__index,

.dws-type--featured:hover
.dws-type__meta {
    color: rgba(255,255,255,.77);
}


.dws-type--featured:hover p {
    color: rgba(255,255,255,.85);
}


.dws-type--featured:hover
.dws-type__arrow {
    background: #fff;

    border-color: #fff;

    color: #ef7024;
}


/* =========================================================
   GREEN
========================================================= */

.dws-type--green {
    background:
        rgba(35,143,83,.07);
}


.dws-type--green::before {
    background:
        linear-gradient(
            90deg,
            rgba(35,143,83,.90),
            rgba(15,104,58,.67)
        );
}


.dws-type--green .dws-type__tag {
    color: #4fc67e;
}


.dws-type--green:hover
.dws-type__tag,

.dws-type--green:hover
.dws-type__index,

.dws-type--green:hover
.dws-type__meta {
    color: rgba(255,255,255,.78);
}


.dws-type--green:hover p {
    color: rgba(255,255,255,.86);
}


.dws-type--green:hover
.dws-type__arrow {
    background: #fff;

    border-color: #fff;

    color: #238f53;
}


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

.dws-types__footer {
    display: flex;

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

    gap: 30px;

    margin-top: 45px;

    padding-top: 34px;
}


.dws-types__footer-copy small {
    display: block;

    margin-bottom: 6px;

    color: #4fc67e;

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

    text-transform: uppercase;

    letter-spacing: .12em;
}


.dws-types__footer-copy p {
    margin: 0;

    color: rgba(255,255,255,.76);

    font-size: 15px;

    font-weight: 500;
}


.dws-types__button {
    min-height: 50px;

    display: inline-flex;

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

    gap: 30px;

    padding: 0 22px;

    background: #fff;

    border-radius: 4px;

    color: #171b19;

    text-decoration: none;

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

    letter-spacing: .09em;

    text-transform: uppercase;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.dws-types__button span {
    color: #ef7024;

    font-size: 17px;

    transition:
        transform .3s ease;
}


.dws-types__button:hover {
    background: #ef7024;

    color: #fff;

    transform: translateY(-2px);
}


.dws-types__button:hover span {
    color: #fff;

    transform: translateX(4px);
}


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

@media (max-width: 1100px) {

    .dws-types__heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .dws-types__heading p {
        max-width: 620px;
    }


    .dws-type {
        grid-template-columns:
            50px
            minmax(0, 1fr)
            40px;
    }


    .dws-type__main {
        grid-template-columns:
            110px
            250px
            1fr;
    }


    .dws-type__meta {
        display: none;
    }

}


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

@media (max-width: 850px) {

    .dws-type__main {
        grid-template-columns:
            1fr;

        gap: 9px;
    }


    .dws-type {
        min-height: 180px;
    }


    .dws-type h3 {
        font-size: 23px;
    }


    .dws-type p {
        max-width: 600px;
    }

}


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

@media (max-width: 680px) {

    .dws-types {
        padding:
            85px 0 70px;
    }


    .dws-types__inner {
        width:
            calc(100% - 32px);
    }


    .dws-types__header {
        margin-bottom: 45px;
    }


    .dws-types__heading h2 {
        font-size:
            clamp(38px, 12vw, 52px);
    }


    .dws-types__heading p {
        font-size: 13px;
    }


    .dws-type {
        grid-template-columns:
            34px
            minmax(0, 1fr);

        gap: 14px;

        min-height: 220px;

        padding: 25px 5px;
    }


    .dws-type:hover {
        padding-left: 5px;
    }


    .dws-type__main {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .dws-type__tag {
        font-size: 8px;
    }


    .dws-type h3 {
        font-size: 22px;
    }


    .dws-type p {
        font-size: 11px;
    }


    .dws-type__arrow {
        position: absolute;

        right: 4px;
        top: 24px;

        width: 32px;
        height: 32px;

        font-size: 13px;
    }


    .dws-types__footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

}
/* =========================================================
   DISEÑO WEB COSTA RICA
   BLOQUE 06 — CIERRE COMERCIAL
========================================================= */

.dws-closing {
    position: relative;

    min-height: 760px;

    padding: 115px 0 65px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f7f9f8 0%,
            #ffffff 52%,
            #f2f5f3 100%
        );

    color: #171b19;
}


/* =========================================================
   BACKGROUND
========================================================= */

.dws-closing__background {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}


.dws-closing__year {
    position: absolute;

    left: -35px;
    bottom: -105px;

    font-size:
        clamp(220px, 29vw, 520px);

    line-height: .75;

    font-weight: 800;

    letter-spacing: -.09em;

    color:
        rgba(18, 25, 21, .025);

    white-space: nowrap;

    user-select: none;
}


.dws-closing__glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -280px;
    top: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(239,112,36,.14),
            rgba(239,112,36,0) 70%
        );
}


.dws-closing__circle {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(17,23,20,.06);
}


.dws-closing__circle--one {
    width: 470px;
    height: 470px;

    right: -150px;
    bottom: -180px;
}


.dws-closing__circle--two {
    width: 350px;
    height: 350px;

    right: -90px;
    bottom: -120px;

    border-style: dashed;
}


/* =========================================================
   INNER
========================================================= */

.dws-closing__inner {
    position: relative;

    z-index: 2;

    width:
        min(1380px, calc(100% - 80px));

    margin: 0 auto;
}


/* =========================================================
   TOP
========================================================= */

.dws-closing__top {
    display: flex;

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

    padding-bottom: 35px;

    border-bottom:
        1px solid rgba(17,23,20,.10);
}


.dws-closing__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    color: #69736e;

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

    text-transform: uppercase;

    letter-spacing: .14em;
}


.dws-closing__eyebrow-line {
    width: 34px;
    height: 2px;

    background: #ef7024;
}


.dws-closing__chapter {
    color: #959e99;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .13em;
}


/* =========================================================
   CONTENT
========================================================= */

.dws-closing__content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(420px, .62fr);

    align-items: center;

    gap: 100px;

    padding: 85px 0 90px;
}


/* =========================================================
   MAIN
========================================================= */

.dws-closing__main {
    max-width: 820px;
}


.dws-closing__pretitle {
    display: inline-flex;

    margin-bottom: 24px;

    padding: 8px 14px;

    border-radius: 100px;

    background:
        rgba(35,143,83,.08);

    color: #238f53;

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

    text-transform: uppercase;

    letter-spacing: .1em;
}


.dws-closing__main h2 {
    margin: 0;

    font-size:
        clamp(49px, 5.4vw, 82px);

    line-height: .98;

    letter-spacing: -.058em;

    font-weight: 400;
}


.dws-closing__main h2 span,
.dws-closing__main h2 strong {
    display: block;
}


.dws-closing__main h2 strong {
    color: #ef7024;

    font-weight: 700;
}


.dws-closing__main > p {
    max-width: 630px;

    margin: 31px 0 0;

    color: #68726d;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   PANEL
========================================================= */

.dws-closing__panel {
    position: relative;

    padding: 30px;

    background: #151917;

    border-radius: 10px;

    box-shadow:
        0 30px 70px rgba(24,38,30,.16);

    color: #fff;
}


.dws-closing__panel-top {
    display: flex;

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

    margin-bottom: 50px;
}


.dws-closing__status {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.56);

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

    text-transform: uppercase;

    letter-spacing: .11em;
}


.dws-closing__status-dot {
    position: relative;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #3fba70;
}


.dws-closing__status-dot::after {
    content: "";

    position: absolute;

    inset: -4px;

    border:
        1px solid rgba(63,186,112,.4);

    border-radius: 50%;

    animation:
        dwsClosingPulse
        2s ease-out infinite;
}


@keyframes dwsClosingPulse {

    0% {
        opacity: 1;
        transform: scale(.6);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }

}


.dws-closing__panel-number {
    color: rgba(255,255,255,.28);

    font-size: 8px;

    letter-spacing: .12em;
}


.dws-closing__panel h3 {
    max-width: 300px;

    margin: 0 0 27px;

    font-size: 27px;

    line-height: 1.12;

    letter-spacing: -.03em;

    font-weight: 500;
}


/* =========================================================
   ACTIONS
========================================================= */

.dws-closing__action {
    min-height: 82px;

    display: flex;

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

    gap: 20px;

    margin-top: 10px;

    padding: 15px 17px;

    border:
        1px solid rgba(255,255,255,.11);

    border-radius: 5px;

    color: #fff;

    text-decoration: none;

    transition:
        background .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


.dws-closing__action small {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.38);

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

    text-transform: uppercase;

    letter-spacing: .12em;
}


.dws-closing__action strong {
    display: block;

    font-size: 12px;

    font-weight: 500;
}


.dws-closing__action-arrow {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.07);

    font-size: 14px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


/* PRIMARY */

.dws-closing__action--primary:hover {
    background: #ef7024;

    border-color: #ef7024;

    transform: translateX(4px);
}


.dws-closing__action--primary:hover
.dws-closing__action-arrow {
    background: #fff;

    color: #ef7024;

    transform: rotate(45deg);
}


/* WHATSAPP */

.dws-closing__action--whatsapp {
    background:
        rgba(35,143,83,.08);

    border-color:
        rgba(62,185,112,.20);
}


.dws-closing__action-info {
    display: flex;

    align-items: center;

    gap: 13px;
}


.dws-closing__whatsapp-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #238f53;

    color: #fff;

    font-size: 13px;
}


.dws-closing__action--whatsapp:hover {
    background: #238f53;

    border-color: #238f53;

    transform: translateX(4px);
}


.dws-closing__action--whatsapp:hover
.dws-closing__action-arrow {
    background: #fff;

    color: #238f53;

    transform: rotate(45deg);
}


/* NOTE */

.dws-closing__panel-note {
    margin: 22px 0 0;

    padding-top: 18px;

    border-top:
        1px solid rgba(255,255,255,.09);

    color: rgba(255,255,255,.35);

    font-size: 9px;

    line-height: 1.6;
}


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

.dws-closing__footer {
    min-height: 75px;

    display: flex;

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

    gap: 30px;

    padding-top: 25px;

    border-top:
        1px solid rgba(17,23,20,.10);
}


.dws-closing__brand {
    display: flex;

    align-items: center;

    gap: 12px;
}


.dws-closing__brand-mark {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #171b19;

    color: #fff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .05em;
}


.dws-closing__brand small {
    display: block;

    margin-bottom: 2px;

    color: #89928d;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .1em;
}


.dws-closing__brand strong {
    display: block;

    color: #303733;

    font-size: 10px;

    font-weight: 600;
}


/* FEATURES */

.dws-closing__features {
    display: flex;

    align-items: center;

    gap: 0;
}


.dws-closing__features span {
    position: relative;

    padding: 0 18px;

    color: #7c8681;

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

    text-transform: uppercase;

    letter-spacing: .09em;
}


.dws-closing__features span:first-child {
    color: #238f53;
}


.dws-closing__features span:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #c2c9c5;

    transform: translateY(-50%);
}


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

@media (max-width: 1050px) {

    .dws-closing__content {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .dws-closing__main {
        max-width: 800px;
    }


    .dws-closing__panel {
        max-width: 600px;
    }


    .dws-closing__footer {
        align-items: flex-start;

        flex-direction: column;
    }

}


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

@media (max-width: 680px) {

    .dws-closing {
        min-height: auto;

        padding:
            85px 0 50px;
    }


    .dws-closing__inner {
        width:
            calc(100% - 32px);
    }


    .dws-closing__chapter {
        display: none;
    }


    .dws-closing__content {
        padding:
            55px 0 65px;
    }


    .dws-closing__main h2 {
        font-size:
            clamp(40px, 12vw, 56px);
    }


    .dws-closing__main > p {
        font-size: 13px;
    }


    .dws-closing__panel {
        padding: 24px 20px;
    }


    .dws-closing__panel-top {
        margin-bottom: 35px;
    }


    .dws-closing__panel h3 {
        font-size: 24px;
    }


    .dws-closing__action {
        min-height: 78px;
    }


    .dws-closing__features {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }


    .dws-closing__features span {
        padding: 0;
    }


    .dws-closing__features span::after {
        display: none;
    }


    .dws-closing__year {
        left: -15px;

        bottom: 0;

        font-size: 180px;
    }

}