/* ======================================================
   HERO — DOMINIOS .GO.CR
======================================================= */

.gocr-hero {
    --gocr-dark: #171714;
    --gocr-coffee: #242019;
    --gocr-orange: #f28a1a;
    --gocr-green: #2f9b57;
    --gocr-cream: #f7f4ed;
    --gocr-white: #ffffff;

    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 24px 90px;
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(242, 138, 26, .12),
            transparent 31%
        ),
        linear-gradient(135deg, #171714 0%, #242019 100%);
    font-family: "Poppins", sans-serif;
}

.gocr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to right, transparent, #000);
    pointer-events: none;
}

.gocr-hero__container {
    position: relative;
    z-index: 3;
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: center;
    gap: clamp(50px, 7vw, 105px);
}

.gocr-hero__content {
    max-width: 680px;
}

.gocr-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 26px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gocr-hero__eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gocr-orange);
    box-shadow: 0 0 0 7px rgba(242,138,26,.13);
}

.gocr-hero__title {
    max-width: 760px;
    margin: 0;
    color: var(--gocr-white);
    font-size: clamp(48px, 5.5vw, 84px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.055em;
}

.gocr-hero__title span {
    display: block;
    color: var(--gocr-orange);
}

.gocr-hero__text {
    max-width: 625px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(16px, 1.35vw, 19px);
    font-weight: 400;
    line-height: 1.8;
}

.gocr-hero__text strong {
    color: var(--gocr-white);
    font-weight: 700;
}

.gocr-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.gocr-hero__button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 25px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition:
        transform .25s ease,
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

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

.gocr-hero__button--primary {
    color: #171714;
    background: var(--gocr-orange);
    box-shadow: 0 16px 35px rgba(242,138,26,.22);
}

.gocr-hero__button--primary:hover {
    background: #ffa12f;
}

.gocr-hero__button--primary span {
    font-size: 20px;
}

.gocr-hero__button--secondary {
    color: var(--gocr-white);
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(8px);
}

.gocr-hero__button--secondary:hover {
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.1);
}

.gocr-hero__phone-icon {
    color: var(--gocr-green);
    font-size: 17px;
}

.gocr-hero__notice {
    max-width: 590px;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 32px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.gocr-hero__notice-icon {
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gocr-green);
    font-size: 13px;
    font-weight: 700;
}

.gocr-hero__notice p {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 13px;
    line-height: 1.6;
}

/* Tarjeta visual */

.gocr-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.gocr-domain-card {
    position: relative;
    width: min(100%, 490px);
    padding: 31px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.045)
        );
    box-shadow: 0 40px 90px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    transform: rotate(1.8deg);
    animation: gocrCardFloat 6s ease-in-out infinite;
}

.gocr-domain-card::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(242,138,26,.13);
    filter: blur(2px);
}

.gocr-domain-card__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gocr-domain-card__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.75);
    letter-spacing: 0;
    text-transform: none;
}

.gocr-domain-card__status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gocr-green);
    box-shadow: 0 0 0 5px rgba(47,155,87,.13);
}

.gocr-domain-card__domain {
    position: relative;
    margin-top: 49px;
    color: var(--gocr-white);
    font-size: clamp(31px, 4vw, 47px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.05em;
}

.gocr-domain-card__domain strong {
    color: var(--gocr-orange);
    font-weight: 700;
}

.gocr-domain-card__line {
    height: 1px;
    margin: 33px 0 27px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,.22),
        transparent
    );
}

.gocr-domain-card__details {
    position: relative;
    display: grid;
    gap: 19px;
}

.gocr-domain-card__details > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.gocr-domain-card__check {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--gocr-green);
    background: rgba(47,155,87,.13);
    font-size: 13px;
    font-weight: 700;
}

.gocr-domain-card__details p {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    line-height: 1.5;
}

.gocr-domain-card__details strong {
    display: block;
    margin-bottom: 2px;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 600;
}

.gocr-domain-card__footer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 18px;
    border-radius: 17px;
    background: rgba(0,0,0,.18);
}

.gocr-domain-card__shield {
    flex: 0 0 auto;
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #171714;
    background: var(--gocr-orange);
    font-size: 12px;
    font-weight: 800;
}

.gocr-domain-card__footer p {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 10px;
    line-height: 1.5;
}

.gocr-domain-card__footer strong {
    display: block;
    color: rgba(255,255,255,.85);
    font-size: 12px;
}

/* Decoración */

.gocr-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gocr-hero__ring {
    position: absolute;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.gocr-hero__ring--one {
    top: 20%;
    right: -115px;
    width: 430px;
    height: 430px;
}

.gocr-hero__ring--two {
    right: 9%;
    bottom: -210px;
    width: 480px;
    height: 480px;
}

.gocr-hero__dot {
    position: absolute;
    border-radius: 50%;
}

.gocr-hero__dot--orange {
    top: 20%;
    right: 11%;
    width: 13px;
    height: 13px;
    background: var(--gocr-orange);
    animation: gocrDotMove 5s ease-in-out infinite;
}

.gocr-hero__dot--green {
    right: 47%;
    bottom: 13%;
    width: 9px;
    height: 9px;
    background: var(--gocr-green);
    animation: gocrDotMove 6s ease-in-out infinite reverse;
}

@keyframes gocrCardFloat {
    0%,
    100% {
        transform: rotate(1.8deg) translateY(0);
    }

    50% {
        transform: rotate(.4deg) translateY(-13px);
    }
}

@keyframes gocrDotMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

/* Responsive */

@media (max-width: 980px) {
    .gocr-hero {
        min-height: auto;
        padding: 135px 24px 80px;
    }

    .gocr-hero__container {
        grid-template-columns: 1fr;
    }

    .gocr-hero__content {
        max-width: 760px;
    }

    .gocr-hero__visual {
        justify-content: flex-start;
    }

    .gocr-domain-card {
        width: min(100%, 590px);
    }
}

@media (max-width: 600px) {
    .gocr-hero {
        padding: 115px 18px 65px;
    }

    .gocr-hero__title {
        font-size: clamp(42px, 13vw, 58px);
    }

    .gocr-hero__text {
        margin-top: 24px;
        font-size: 16px;
    }

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

    .gocr-hero__button {
        width: 100%;
    }

    .gocr-domain-card {
        padding: 24px 20px;
        border-radius: 23px;
        transform: none;
        animation: none;
    }

    .gocr-domain-card__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .gocr-domain-card__domain {
        margin-top: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gocr-domain-card,
    .gocr-hero__dot {
        animation: none;
    }

    .gocr-hero__button {
        transition: none;
    }
}
/* ======================================================
   BLOQUE 02 — QUIÉNES PUEDEN REGISTRAR .GO.CR
======================================================= */

.gocr-who {
    --gocr-dark: #171714;
    --gocr-orange: #f28a1a;
    --gocr-green: #2f9b57;
    --gocr-cream: #f7f4ed;

    position: relative;
    padding: clamp(85px, 10vw, 145px) 24px;
    overflow: hidden;
    color: var(--gocr-dark);
    background:
        radial-gradient(
            circle at 5% 95%,
            rgba(47, 155, 87, .08),
            transparent 27%
        ),
        var(--gocr-cream);
    font-family: "Poppins", sans-serif;
}

.gocr-who__container {
    width: min(1220px, 100%);
    margin: 0 auto;
}

.gocr-who__heading {
    display: grid;
    grid-template-columns: .55fr 1.45fr .85fr;
    align-items: end;
    gap: clamp(25px, 5vw, 75px);
    margin-bottom: clamp(55px, 7vw, 90px);
}

.gocr-who__label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 9px;
    color: #746f66;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gocr-who__label span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(23, 23, 20, .13);
    border-radius: 50%;
    color: var(--gocr-orange);
    font-size: 11px;
}

.gocr-who__heading h2 {
    margin: 0;
    font-size: clamp(39px, 5vw, 70px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.gocr-who__heading h2 span {
    color: var(--gocr-orange);
}

.gocr-who__heading > p {
    margin: 0;
    padding-bottom: 8px;
    color: #6f6b63;
    font-size: 15px;
    line-height: 1.75;
}

.gocr-who__content {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
    gap: clamp(22px, 3vw, 38px);
}

.gocr-who__main {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(30px, 4vw, 50px);
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(242, 138, 26, .18),
            transparent 35%
        ),
        linear-gradient(145deg, #171714, #28241d);
}

.gocr-who__main::after {
    content: ".go.cr";
    position: absolute;
    right: -18px;
    bottom: -31px;
    color: rgba(255, 255, 255, .035);
    font-size: clamp(85px, 11vw, 145px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.08em;
    pointer-events: none;
}

.gocr-who__main-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.gocr-who__seal {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--gocr-dark);
    background: var(--gocr-orange);
    font-size: 14px;
    font-weight: 800;
}

.gocr-who__badge {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 100px;
    color: rgba(255, 255, 255, .63);
    background: rgba(255, 255, 255, .045);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gocr-who__main h3 {
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: clamp(55px, 7vw, 90px) 0 20px;
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.gocr-who__main > p {
    position: relative;
    z-index: 1;
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.8;
}

.gocr-who__main > p strong {
    color: var(--gocr-orange);
}

.gocr-who__warning {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: auto;
    padding-top: 42px;
}

.gocr-who__warning > span {
    flex: 0 0 auto;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--gocr-green);
    font-size: 13px;
    font-weight: 800;
}

.gocr-who__warning p {
    max-width: 380px;
    margin: 0;
    color: rgba(255, 255, 255, .53);
    font-size: 12px;
    line-height: 1.65;
}

.gocr-who__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gocr-who__item {
    min-height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(25px, 3vw, 35px);
    border: 1px solid rgba(23, 23, 20, .09);
    border-radius: 25px;
    background: rgba(255, 255, 255, .64);
    box-shadow: 0 18px 55px rgba(39, 34, 25, .045);
    transition:
        transform .3s ease,
        border-color .3s ease,
        background-color .3s ease;
}

.gocr-who__item:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 138, 26, .34);
    background: #fff;
}

.gocr-who__number {
    color: var(--gocr-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.gocr-who__item h3 {
    margin: 38px 0 9px;
    color: var(--gocr-dark);
    font-size: 19px;
    font-weight: 650;
    letter-spacing: -.025em;
}

.gocr-who__item p {
    margin: 0;
    color: #77736b;
    font-size: 12px;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 960px) {
    .gocr-who__heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gocr-who__heading h2 {
        max-width: 760px;
    }

    .gocr-who__heading > p {
        max-width: 570px;
    }

    .gocr-who__content {
        grid-template-columns: 1fr;
    }

    .gocr-who__main {
        min-height: 470px;
    }
}

@media (max-width: 620px) {
    .gocr-who {
        padding-right: 18px;
        padding-left: 18px;
    }

    .gocr-who__list {
        grid-template-columns: 1fr;
    }

    .gocr-who__main {
        min-height: 520px;
        border-radius: 24px;
    }

    .gocr-who__main-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .gocr-who__item {
        min-height: 205px;
        border-radius: 21px;
    }
}
/* ======================================================
   BLOQUE 03 — DOCUMENTOS PARA REGISTRAR .GO.CR
======================================================= */

.gocr-docs {
    --gocr-dark: #171714;
    --gocr-orange: #f28a1a;
    --gocr-green: #2f9b57;
    --gocr-white: #fff;

    position: relative;
    padding: clamp(85px, 10vw, 145px) 24px;
    overflow: hidden;
    color: var(--gocr-white);
    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(242, 138, 26, .12),
            transparent 27%
        ),
        linear-gradient(145deg, #171714 0%, #242119 100%);
    font-family: "Poppins", sans-serif;
}

.gocr-docs::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.gocr-docs__container {
    position: relative;
    z-index: 2;
    width: min(1220px, 100%);
    margin: 0 auto;
}

.gocr-docs__intro {
    max-width: 850px;
    margin-bottom: clamp(50px, 7vw, 82px);
}

.gocr-docs__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.gocr-docs__label span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    color: var(--gocr-orange);
}

.gocr-docs__intro h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(40px, 5.2vw, 72px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -.055em;
}

.gocr-docs__intro h2 span {
    color: var(--gocr-orange);
}

.gocr-docs__intro > p {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.6);
    font-size: 15px;
    line-height: 1.8;
}

.gocr-docs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gocr-docs__card {
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3vw, 39px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 27px;
    background: rgba(255,255,255,.05);
    transition:
        transform .3s ease,
        border-color .3s ease,
        background-color .3s ease;
}

.gocr-docs__card::before {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}

.gocr-docs__card:hover {
    transform: translateY(-7px);
    border-color: rgba(242,138,26,.38);
    background: rgba(255,255,255,.075);
}

.gocr-docs__card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gocr-docs__number {
    color: var(--gocr-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.gocr-docs__icon {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--gocr-orange);
    background: rgba(242,138,26,.12);
    font-size: 20px;
}

.gocr-docs__card h3 {
    position: relative;
    z-index: 1;
    margin: 66px 0 16px;
    font-size: clamp(21px, 2vw, 27px);
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.gocr-docs__card > p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,.57);
    font-size: 13px;
    line-height: 1.75;
}

.gocr-docs__detail {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
    color: rgba(255,255,255,.7);
    font-size: 11px;
    line-height: 1.6;
}

.gocr-docs__detail span {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--gocr-green);
    box-shadow: 0 0 0 5px rgba(47,155,87,.11);
}

/* Revisión */

.gocr-docs__review {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    margin-top: 22px;
    padding: clamp(25px, 3vw, 37px);
    border-radius: 25px;
    color: var(--gocr-dark);
    background: var(--gocr-orange);
}

.gocr-docs__review-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #fff;
    background: var(--gocr-green);
    font-size: 22px;
    font-weight: 800;
}

.gocr-docs__review-content > span {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.gocr-docs__review-content h3 {
    margin: 0 0 8px;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.gocr-docs__review-content p {
    max-width: 640px;
    margin: 0;
    color: rgba(23,23,20,.7);
    font-size: 12px;
    line-height: 1.65;
}

.gocr-docs__button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 23px;
    border-radius: 100px;
    color: #fff;
    background: var(--gocr-dark);
    text-decoration: none;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    transition: transform .25s ease, background-color .25s ease;
}

.gocr-docs__button:hover {
    transform: translateY(-3px);
    background: #292923;
}

.gocr-docs__button span {
    font-size: 18px;
}

.gocr-docs__legal {
    max-width: 760px;
    margin: 27px 0 0;
    color: rgba(255,255,255,.4);
    font-size: 11px;
    line-height: 1.7;
}

.gocr-docs__legal strong {
    color: rgba(255,255,255,.7);
}

/* Responsive */

@media (max-width: 920px) {
    .gocr-docs__grid {
        grid-template-columns: 1fr;
    }

    .gocr-docs__card {
        min-height: 315px;
    }

    .gocr-docs__card h3 {
        margin-top: 45px;
    }

    .gocr-docs__review {
        grid-template-columns: auto 1fr;
    }

    .gocr-docs__button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 570px) {
    .gocr-docs {
        padding-right: 18px;
        padding-left: 18px;
    }

    .gocr-docs__card {
        min-height: 340px;
        border-radius: 22px;
    }

    .gocr-docs__review {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .gocr-docs__review-icon {
        width: 50px;
        height: 50px;
    }
}
/* ======================================================
   BLOQUE 04 — PROCESO DE REGISTRO .GO.CR
======================================================= */

.gocr-process {
    --gocr-dark: #171714;
    --gocr-orange: #f28a1a;
    --gocr-green: #2f9b57;
    --gocr-cream: #f7f4ed;

    position: relative;
    padding: clamp(85px, 10vw, 145px) 24px;
    overflow: hidden;
    color: var(--gocr-dark);
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.gocr-process::before {
    content: "";
    position: absolute;
    top: 0;
    right: -170px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(242, 138, 26, .12);
    border-radius: 50%;
    box-shadow:
        0 0 0 65px rgba(242, 138, 26, .025),
        0 0 0 130px rgba(242, 138, 26, .018);
    pointer-events: none;
}

.gocr-process__container {
    position: relative;
    z-index: 2;
    width: min(1220px, 100%);
    margin: 0 auto;
}

.gocr-process__header {
    margin-bottom: clamp(55px, 7vw, 90px);
}

.gocr-process__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: #777269;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.gocr-process__label span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(23, 23, 20, .13);
    border-radius: 50%;
    color: var(--gocr-orange);
}

.gocr-process__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    align-items: end;
    gap: clamp(35px, 7vw, 110px);
}

.gocr-process__heading h2 {
    margin: 0;
    font-size: clamp(40px, 5.2vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.gocr-process__heading h2 span {
    color: var(--gocr-orange);
}

.gocr-process__heading p {
    margin: 0 0 7px;
    color: #706c64;
    font-size: 14px;
    line-height: 1.8;
}

/* Pasos */

.gocr-process__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.gocr-process__steps::before {
    content: "";
    position: absolute;
    top: 91px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(242, 138, 26, .35),
        rgba(47, 155, 87, .35),
        transparent
    );
}

.gocr-process__step {
    position: relative;
    z-index: 1;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #ebe9e4;
    border-radius: 25px;
    background: #faf9f6;
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.gocr-process__step:hover {
    transform: translateY(-7px);
    border-color: rgba(242, 138, 26, .35);
    box-shadow: 0 22px 55px rgba(32, 28, 21, .08);
}

.gocr-process__step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gocr-process__number {
    color: var(--gocr-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.gocr-process__status {
    padding: 7px 10px;
    border-radius: 100px;
    color: #777269;
    background: #efede7;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gocr-process__icon {
    position: relative;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 38px 0 46px;
    border: 7px solid #ffffff;
    border-radius: 50%;
    background: var(--gocr-orange);
    box-shadow: 0 0 0 1px rgba(242, 138, 26, .25);
}

.gocr-process__icon span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gocr-dark);
}

.gocr-process__icon--check {
    color: #ffffff;
    background: var(--gocr-green);
    box-shadow: 0 0 0 1px rgba(47, 155, 87, .25);
    font-size: 18px;
    font-weight: 800;
}

.gocr-process__step h3 {
    margin: 0 0 14px;
    font-size: 19px;
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -.03em;
}

.gocr-process__step p {
    margin: 0;
    color: #767169;
    font-size: 12px;
    line-height: 1.75;
}

.gocr-process__step p strong {
    color: var(--gocr-orange);
}

/* Nota informativa */

.gocr-process__note {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 22px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 23px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(242, 138, 26, .16),
            transparent 25%
        ),
        var(--gocr-dark);
}

.gocr-process__note-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: var(--gocr-orange);
    background: rgba(255, 255, 255, .05);
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 700;
}

.gocr-process__note span {
    display: block;
    margin-bottom: 5px;
    color: var(--gocr-orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gocr-process__note p {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.7;
}

.gocr-process__note strong {
    color: #ffffff;
}

/* Responsive */

@media (max-width: 1040px) {
    .gocr-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gocr-process__steps::before {
        display: none;
    }

    .gocr-process__step {
        min-height: 350px;
    }
}

@media (max-width: 760px) {
    .gocr-process__heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gocr-process__heading p {
        max-width: 570px;
    }
}

@media (max-width: 590px) {
    .gocr-process {
        padding-right: 18px;
        padding-left: 18px;
    }

    .gocr-process__steps {
        grid-template-columns: 1fr;
    }

    .gocr-process__step {
        min-height: 330px;
        border-radius: 21px;
    }

    .gocr-process__icon {
        margin: 34px 0 39px;
    }

    .gocr-process__note {
        align-items: start;
        grid-template-columns: 1fr;
    }
}
/* ======================================================
   CIERRE — DOMINIOS .GO.CR
======================================================= */

.gocr-final {
    --gocr-dark: #171714;
    --gocr-orange: #f28a1a;
    --gocr-green: #2f9b57;

    position: relative;
    padding: clamp(80px, 9vw, 125px) 24px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(242, 138, 26, .17),
            transparent 30%
        ),
        linear-gradient(135deg, #171714, #28231b);
    font-family: "Poppins", sans-serif;
}

.gocr-final::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -240px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 50%;
    box-shadow:
        0 0 0 85px rgba(255,255,255,.018),
        0 0 0 170px rgba(255,255,255,.012);
}

.gocr-final__container {
    position: relative;
    z-index: 2;
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
    align-items: center;
    gap: clamp(45px, 8vw, 115px);
}

.gocr-final__content {
    max-width: 740px;
}

.gocr-final__eyebrow {
    display: block;
    margin-bottom: 23px;
    color: var(--gocr-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.gocr-final h2 {
    margin: 0;
    font-size: clamp(41px, 5.2vw, 73px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.gocr-final h2 strong {
    display: inline-block;
    color: var(--gocr-orange);
    font-weight: 700;
}

.gocr-final__content > p {
    max-width: 640px;
    margin: 27px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.8;
}

.gocr-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.gocr-final__button {
    min-height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    border-radius: 100px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition:
        transform .25s ease,
        background-color .25s ease,
        border-color .25s ease;
}

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

.gocr-final__button--whatsapp {
    background: var(--gocr-green);
    box-shadow: 0 17px 38px rgba(47,155,87,.2);
}

.gocr-final__button--whatsapp:hover {
    background: #27874a;
}

.gocr-final__button--whatsapp span {
    font-size: 18px;
}

.gocr-final__button--phone {
    border: 1px solid rgba(255,255,255,.17);
    background: rgba(255,255,255,.05);
}

.gocr-final__button--phone:hover {
    border-color: rgba(255,255,255,.34);
    background: rgba(255,255,255,.1);
}

/* Tarjeta del dominio */

.gocr-final__domain {
    padding: clamp(28px, 4vw, 43px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 27px;
    background: rgba(255,255,255,.06);
    box-shadow: 0 35px 75px rgba(0,0,0,.25);
    backdrop-filter: blur(12px);
}

.gocr-final__domain > span {
    display: block;
    color: rgba(255,255,255,.42);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gocr-final__domain > div {
    margin-top: 45px;
    white-space: nowrap;
    font-size: clamp(24px, 3.1vw, 40px);
    line-height: 1;
    letter-spacing: -.05em;
}

.gocr-final__domain small {
    color: rgba(255,255,255,.85);
    font: inherit;
}

.gocr-final__domain strong {
    color: var(--gocr-orange);
    font: inherit;
    font-weight: 700;
}

.gocr-final__domain p {
    margin: 40px 0 0;
    padding-top: 19px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.4);
    font-size: 11px;
}

/* Responsive */

@media (max-width: 850px) {
    .gocr-final__container {
        grid-template-columns: 1fr;
    }

    .gocr-final__domain {
        max-width: 550px;
    }
}

@media (max-width: 560px) {
    .gocr-final {
        padding-right: 18px;
        padding-left: 18px;
    }

    .gocr-final__actions {
        flex-direction: column;
    }

    .gocr-final__button {
        width: 100%;
    }

    .gocr-final__domain {
        border-radius: 22px;
    }

    .gocr-final__domain > div {
        white-space: normal;
    }
}