/* =========================================================
   HERO — PRECIOS DE DOMINIOS
========================================================= */

.domain-prices-hero {
    --td-orange: #f28a1a;
    --td-green: #2f9b57;
    --td-dark: #101211;
    --td-light: #f7f7f3;

    position: relative;
    min-height: 760px;
    padding: 160px 6% 94px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(
            circle at 72% 40%,
            rgba(47, 155, 87, 0.12),
            transparent 34%
        ),
        linear-gradient(135deg, #090b0a 0%, #151816 55%, #0c0e0d 100%);
}

.domain-prices-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.domain-prices-hero__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.domain-prices-hero__glow--orange {
    top: -220px;
    left: 12%;
    background: rgba(242, 138, 26, 0.22);
}

.domain-prices-hero__glow--green {
    right: -180px;
    bottom: -180px;
    background: rgba(47, 155, 87, 0.2);
}

.domain-prices-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
    align-items: center;
    gap: clamp(50px, 8vw, 130px);
    width: min(1420px, 100%);
    margin: 0 auto;
}

/* CONTENIDO */

.domain-prices-hero__content {
    max-width: 760px;
}

.domain-prices-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 27px;
    color: var(--td-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.domain-prices-hero__eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--td-orange);
}

.domain-prices-hero__title {
    max-width: 780px;
    margin: 0;
    font-size: clamp(50px, 5.5vw, 88px);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.062em;
}

.domain-prices-hero__title span {
    display: block;
    color: var(--td-orange);
}

.domain-prices-hero__text {
    max-width: 680px;
    margin: 31px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.75;
}

.domain-prices-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.domain-prices-hero__button {
    display: inline-flex;
    min-height: 57px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    gap: 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

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

.domain-prices-hero__button--primary {
    color: #16120c;
    background: var(--td-orange);
    box-shadow: 0 16px 40px rgba(242, 138, 26, 0.2);
}

.domain-prices-hero__button--primary:hover {
    background: #ffa133;
}

.domain-prices-hero__button--secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
}

.domain-prices-hero__button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
}

.domain-prices-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 24px;
    margin-top: 31px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 12px;
}

.domain-prices-hero__features span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.domain-prices-hero__features i {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    color: var(--td-green);
    background: rgba(47, 155, 87, 0.14);
    font-size: 10px;
    font-style: normal;
}

/* COMPOSICIÓN DE DOMINIOS */

.domain-prices-hero__visual {
    position: relative;
    width: min(100%, 570px);
    aspect-ratio: 1;
    margin-inline: auto;
}

.domain-prices-hero__orbit {
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: domainOrbitSpin 38s linear infinite;
}

.domain-prices-hero__orbit::before,
.domain-prices-hero__orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(242, 138, 26, 0.2);
}

.domain-prices-hero__orbit::before {
    inset: 12%;
}

.domain-prices-hero__orbit::after {
    inset: -18%;
    border-color: rgba(47, 155, 87, 0.16);
}

.domain-prices-hero__center {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    width: 255px;
    min-height: 255px;
    padding: 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    transform: translate(-50%, -50%);
}

.domain-prices-hero__center-icon {
    margin-bottom: 16px;
    color: var(--td-orange);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.07em;
}

.domain-prices-hero__center strong {
    max-width: 170px;
    font-size: 22px;
    line-height: 1.15;
}

.domain-prices-hero__center small {
    max-width: 180px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.5;
}

.domain-prices-hero__domain {
    position: absolute;
    z-index: 4;
    display: flex;
    padding: 17px 21px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(19, 22, 20, 0.8);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px);
    animation: domainCardFloat 5s ease-in-out infinite;
}

.domain-prices-hero__domain strong {
    font-size: 27px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.domain-prices-hero__domain small {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.47);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.domain-prices-hero__domain--com {
    top: 7%;
    left: 8%;
}

.domain-prices-hero__domain--cr {
    top: 11%;
    right: 4%;
    border-color: rgba(242, 138, 26, 0.34);
    animation-delay: -1.2s;
}

.domain-prices-hero__domain--cr strong {
    color: var(--td-orange);
}

.domain-prices-hero__domain--cocr {
    right: 0;
    bottom: 12%;
    border-color: rgba(47, 155, 87, 0.35);
    animation-delay: -2.4s;
}

.domain-prices-hero__domain--cocr strong {
    color: #62c783;
}

.domain-prices-hero__domain--org {
    bottom: 8%;
    left: 11%;
    animation-delay: -3.1s;
}

.domain-prices-hero__domain--net {
    top: 44%;
    left: -2%;
    animation-delay: -1.8s;
}

/* FRANJA INFERIOR */

.domain-prices-hero__bottom {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 64px;
    padding: 15px 6%;
    align-items: center;
    justify-content: center;
    gap: clamp(25px, 6vw, 90px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.56);
    background: rgba(0, 0, 0, 0.18);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

/* ANIMACIONES */

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

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

@keyframes domainOrbitSpin {
    to {
        transform: rotate(360deg);
    }
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .domain-prices-hero {
        padding-top: 145px;
        padding-bottom: 120px;
    }

    .domain-prices-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .domain-prices-hero__content {
        margin-inline: auto;
    }

    .domain-prices-hero__eyebrow,
    .domain-prices-hero__actions,
    .domain-prices-hero__features {
        justify-content: center;
    }

    .domain-prices-hero__text {
        margin-inline: auto;
    }

    .domain-prices-hero__visual {
        width: min(100%, 520px);
    }
}

@media (max-width: 650px) {
    .domain-prices-hero {
        min-height: auto;
        padding: 125px 22px 130px;
    }

    .domain-prices-hero__title {
        font-size: clamp(43px, 14vw, 64px);
    }

    .domain-prices-hero__visual {
        width: 100%;
        margin-top: 15px;
    }

    .domain-prices-hero__center {
        width: 190px;
        min-height: 190px;
        padding: 20px;
    }

    .domain-prices-hero__center-icon {
        font-size: 32px;
    }

    .domain-prices-hero__center strong {
        font-size: 17px;
    }

    .domain-prices-hero__domain {
        padding: 12px 14px;
        border-radius: 13px;
    }

    .domain-prices-hero__domain strong {
        font-size: 21px;
    }

    .domain-prices-hero__domain small {
        display: none;
    }

    .domain-prices-hero__domain--net {
        left: 0;
    }

    .domain-prices-hero__bottom {
        flex-wrap: wrap;
        gap: 7px 18px;
        padding: 14px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .domain-prices-hero__domain,
    .domain-prices-hero__orbit {
        animation: none;
    }
}
/* =========================================================
   BLOQUE 02 — PRECIOS DE DOMINIOS
========================================================= */

.domain-price-list {
    --td-orange: #f28a1a;
    --td-green: #2f9b57;
    --td-dark: #121412;
    --td-border: #dedfd8;
    --td-muted: #6f746f;

    position: relative;
    padding: clamp(90px, 10vw, 150px) 6%;
    background: #f5f5f0;
}

.domain-price-list__inner {
    width: min(1420px, 100%);
    margin: 0 auto;
}

.domain-price-list__header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
    gap: 70px;
    align-items: end;
}

.domain-price-list__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--td-orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.domain-price-list__eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--td-orange);
}

.domain-price-list__header h2 {
    max-width: 800px;
    margin: 0;
    color: var(--td-dark);
    font-size: clamp(45px, 5.5vw, 82px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.domain-price-list__header h2 span {
    display: block;
    color: var(--td-orange);
}

.domain-price-list__header > p {
    margin: 0 0 8px;
    color: var(--td-muted);
    font-size: 16px;
    line-height: 1.75;
}

.domain-price-list__notice {
    display: flex;
    margin-top: 48px;
    padding: 17px 22px;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(242, 138, 26, 0.2);
    border-radius: 15px;
    color: #66513c;
    background: rgba(242, 138, 26, 0.08);
}

.domain-price-list__notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.domain-price-list__notice-icon {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--td-orange);
    font-size: 12px;
    font-weight: 700;
}

.domain-price-list__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.domain-price-card {
    position: relative;
    display: flex;
    min-height: 490px;
    padding: 34px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--td-border);
    border-radius: 28px;
    color: var(--td-dark);
    background: #fff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.domain-price-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    border-radius: 0 0 0 100%;
    background: rgba(18, 20, 18, 0.035);
}

.domain-price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(18, 20, 18, 0.2);
    box-shadow: 0 28px 65px rgba(30, 35, 30, 0.1);
}

.domain-price-card--featured {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(242, 138, 26, 0.25),
            transparent 35%
        ),
        #111311;
}

.domain-price-card--featured::before {
    background: rgba(242, 138, 26, 0.13);
}

.domain-price-card--featured:hover {
    border-color: rgba(242, 138, 26, 0.45);
}

.domain-price-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #17120c;
    background: var(--td-orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.domain-price-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.domain-price-card__label {
    margin-bottom: 15px;
    color: var(--td-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.domain-price-card--featured .domain-price-card__label {
    color: rgba(255, 255, 255, 0.5);
}

.domain-price-card__extension {
    font-size: clamp(55px, 5vw, 76px);
    line-height: 0.9;
    letter-spacing: -0.075em;
}

.domain-price-card--orange .domain-price-card__extension {
    color: var(--td-orange);
}

.domain-price-card--green .domain-price-card__extension {
    color: var(--td-green);
}

.domain-price-card__description {
    min-height: 76px;
    margin: 25px 0 0;
    color: var(--td-muted);
    font-size: 13px;
    line-height: 1.65;
}

.domain-price-card--featured .domain-price-card__description {
    color: rgba(255, 255, 255, 0.58);
}

.domain-price-card__price {
    display: flex;
    margin-top: 26px;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
}

.domain-price-card__price > span {
    width: 100%;
    margin-bottom: 4px;
    color: var(--td-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.domain-price-card--featured .domain-price-card__price > span {
    color: rgba(255, 255, 255, 0.45);
}

.domain-price-card__price strong {
    font-size: 35px;
    line-height: 1;
    letter-spacing: -0.045em;
}

.domain-price-card__price small {
    color: var(--td-muted);
    font-size: 11px;
}

.domain-price-card--featured .domain-price-card__price small {
    color: rgba(255, 255, 255, 0.45);
}

.domain-price-card__consult {
    font-size: 28px !important;
}

.domain-price-card__benefits {
    display: grid;
    gap: 10px;
    margin: 26px 0 28px;
    padding: 23px 0 0;
    border-top: 1px solid rgba(18, 20, 18, 0.09);
    list-style: none;
}

.domain-price-card--featured .domain-price-card__benefits {
    border-color: rgba(255, 255, 255, 0.1);
}

.domain-price-card__benefits li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--td-muted);
    font-size: 11px;
}

.domain-price-card--featured .domain-price-card__benefits li {
    color: rgba(255, 255, 255, 0.6);
}

.domain-price-card__benefits span {
    color: var(--td-green);
    font-weight: 800;
}

.domain-price-card__button {
    display: flex;
    min-height: 51px;
    margin-top: auto;
    padding: 0 19px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(18, 20, 18, 0.14);
    border-radius: 999px;
    color: var(--td-dark);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.domain-price-card__button:hover {
    color: #fff;
    border-color: var(--td-green);
    background: var(--td-green);
}

.domain-price-card--featured .domain-price-card__button {
    color: #16120c;
    border-color: var(--td-orange);
    background: var(--td-orange);
}

.domain-price-card--featured .domain-price-card__button:hover {
    border-color: #ffa13b;
    background: #ffa13b;
}

.domain-price-list__footer {
    display: flex;
    margin-top: 30px;
    padding: 28px 31px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    background: var(--td-dark);
}

.domain-price-list__footer p {
    margin: 0;
    font-size: 13px;
}

.domain-price-list__footer a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 16px;
    color: var(--td-orange);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .domain-price-list__header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .domain-price-list__header > p {
        max-width: 680px;
    }

    .domain-price-list__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 670px) {
    .domain-price-list {
        padding-inline: 20px;
    }

    .domain-price-list__grid {
        grid-template-columns: 1fr;
    }

    .domain-price-card {
        min-height: auto;
        padding: 29px 25px;
    }

    .domain-price-card__description {
        min-height: auto;
    }

    .domain-price-list__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}