/* =========================================================
   REAL ESTATE — HERO
========================================================= */

.re-hero {
    position: relative;
    min-height: 100svh;

    overflow: hidden;

    background: #080a0d;
    color: #fff;
}

.re-hero__background {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

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

    opacity: .2;

    background-image:
        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );

    background-size: 80px 80px;
}

.re-hero__glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);
}

.re-hero__glow--green {
    width: 600px;
    height: 600px;

    right: 8%;
    top: 12%;

    background:
        rgba(21,148,71,.15);
}

.re-hero__glow--orange {
    width: 500px;
    height: 500px;

    right: 35%;
    bottom: -15%;

    background:
        rgba(255,101,0,.10);
}


/* CONTENEDOR */

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

    width:
        min(
            calc(100% - 64px),
            1500px
        );

    min-height: 100svh;

    margin: auto;

    padding:
        clamp(130px, 14vh, 170px)
        0
        50px;

    display: flex;
    flex-direction: column;
}


/* TOP */

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

    gap: 30px;
}

.re-hero__eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

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

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

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

.re-hero__eyebrow > span {
    width: 35px;
    height: 2px;

    background:
        var(--td-orange, #ff6500);
}

.re-hero__product {
    font-size: 9px;
    font-weight: 600;

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

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


/* CONTENIDO */

.re-hero__content {
    flex: 1;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(600px, 1.1fr);

    gap:
        clamp(
            60px,
            7vw,
            120px
        );

    align-items: center;
}


/* COPY */

.re-hero__category {
    display: block;

    margin-bottom: 24px;

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

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

    color:
        var(--td-green, #159447);
}

.re-hero__copy h1 {
    margin: 0;

    max-width: 860px;

    font-size:
        clamp(
            54px,
            6vw,
            102px
        );

    font-weight: 700;

    line-height: .88;

    letter-spacing: -.062em;
}

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

.re-hero__copy h1 span {
    color:
        rgba(255,255,255,.48);
}

.re-hero__copy h1 strong {
    margin-top: 12px;

    color:
        var(--td-orange, #ff6500);
}

.re-hero__copy p {
    max-width: 620px;

    margin:
        38px
        0
        0;

    font-size: 15px;
    line-height: 1.8;

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


/* BOTONES */

.re-hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}

.re-button {
    min-height: 58px;

    padding:
        0
        25px;

    display: inline-flex;

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

    gap: 23px;

    border-radius: 100px;

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

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

.re-button--primary {
    background:
        var(--td-orange, #ff6500);

    color: #fff;
}

.re-button--primary:hover {
    transform: translateY(-3px);

    background: #ed5e00;
}

.re-button--ghost {
    border:
        1px solid
        rgba(255,255,255,.18);

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

.re-button--ghost:hover {
    border-color:
        var(--td-green, #159447);

    background:
        rgba(21,148,71,.08);

    transform:
        translateY(-3px);
}


/* FEATURES */

.re-hero__features {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 35px;
}

.re-hero__features span {
    padding:
        7px
        11px;

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

    border-radius: 100px;

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

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


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

.re-hero__visual {
    position: relative;

    min-height: 670px;

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


/* DASHBOARD */

.re-dashboard {
    position: relative;
    z-index: 3;

    width:
        min(
            100%,
            720px
        );

    overflow: hidden;

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

    border-radius: 18px;

    background: #111317;

    box-shadow:
        0 50px 110px
        rgba(0,0,0,.45);

    transform:
        perspective(1300px)
        rotateY(-5deg)
        rotateX(2deg);

    transition:
        transform .8s
        cubic-bezier(.22,1,.36,1);
}

.re-hero__visual:hover
.re-dashboard {
    transform:
        perspective(1300px)
        rotateY(-1deg)
        rotateX(0)
        translateY(-5px);
}


/* BARRA */

.re-dashboard__bar {
    height: 52px;

    padding:
        0
        18px;

    display: grid;

    grid-template-columns:
        90px
        1fr
        90px;

    align-items: center;

    background: #17191e;

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

.re-dashboard__dots {
    display: flex;

    gap: 6px;
}

.re-dashboard__dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

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

.re-dashboard__dots span:first-child {
    background:
        var(--td-orange, #ff6500);
}

.re-dashboard__bar > span {
    justify-self: center;

    font-size: 8px;

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


/* DASHBOARD INTERNO */

.re-dashboard__content {
    min-height: 410px;

    display: grid;

    grid-template-columns:
        170px
        1fr;
}

.re-dashboard__sidebar {
    padding: 30px 20px;

    display: flex;
    flex-direction: column;

    gap: 8px;

    background:
        #0c0e11;

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

.re-dashboard__sidebar strong {
    margin-bottom: 15px;

    font-size: 12px;
}

.re-dashboard__sidebar span {
    padding:
        9px
        10px;

    border-radius: 7px;

    font-size: 9px;

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

.re-dashboard__sidebar span.is-active {
    color: #fff;

    background:
        rgba(21,148,71,.15);
}


/* PROPIEDADES */

.re-dashboard__properties {
    padding: 25px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.re-property {
    overflow: hidden;

    background: #fff;

    color: #111317;

    border-radius: 11px;
}

.re-property__image {
    height: 170px;

    overflow: hidden;
}

.re-property__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.re-property > div:last-child {
    padding: 14px;
}

.re-property small {
    display: block;

    margin-bottom: 7px;

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

    color:
        var(--td-green, #159447);
}

.re-property strong {
    display: block;

    font-size: 11px;

    margin-bottom: 5px;
}

.re-property span {
    font-size: 8px;

    color:
        rgba(17,19,23,.55);
}


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

.re-phone {
    position: absolute;

    z-index: 6;

    width: 150px;

    right: -10px;
    bottom: 55px;

    padding: 7px;

    border-radius: 27px;

    background:
        #0d0f12;

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

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.35);

    transform:
        rotate(4deg);

    transition:
        transform .7s
        cubic-bezier(.22,1,.36,1);
}

.re-phone img {
    width: 100%;

    display: block;

    border-radius: 20px;
}

.re-hero__visual:hover
.re-phone {
    transform:
        rotate(1deg)
        translateY(-6px);
}


/* =========================================================
   TAGS
========================================================= */

.re-admin-tag,
.re-search-tag {
    position: absolute;

    z-index: 8;

    padding:
        13px
        16px;

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

    border-radius: 12px;

    background:
        rgba(12,14,17,.88);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25);
}

.re-admin-tag {
    left: -22px;
    top: 20%;

    display: flex;

    align-items: center;

    gap: 10px;
}

.re-search-tag {
    right: 2%;
    top: 13%;
}

.re-admin-tag__dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--td-green, #159447);

    box-shadow:
        0 0 14px
        rgba(21,148,71,.6);
}

.re-admin-tag small,
.re-search-tag small {
    display: block;

    margin-bottom: 3px;

    font-size: 8px;

    text-transform: uppercase;

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

.re-admin-tag strong,
.re-search-tag strong {
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

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

        padding:
            70px
            0;
    }

}


@media (max-width: 700px) {

    .re-hero__inner {
        width:
            min(
                calc(100% - 36px),
                1500px
            );

        padding:
            115px
            0
            45px;
    }

    .re-hero__product {
        display: none;
    }

    .re-hero__copy h1 {
        font-size:
            clamp(
                46px,
                13vw,
                68px
            );
    }

    .re-hero__actions {
        flex-direction: column;
    }

    .re-button {
        width: 100%;
    }

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

    .re-dashboard {
        transform: none;
    }

    .re-dashboard__content {
        grid-template-columns: 1fr;
    }

    .re-dashboard__sidebar {
        display: none;
    }

    .re-dashboard__properties {
        padding: 15px;
    }

    .re-phone {
        width: 110px;

        right: -5px;
        bottom: 15px;
    }

}
/* =========================================================
   REAL ESTATE — FUNCIONES
========================================================= */

.re-functions {
    position: relative;

    padding:
        clamp(110px, 10vw, 180px)
        0;

    background: #f3f2ee;

    color: #111317;
}


.re-functions__inner {
    width:
        min(
            calc(100% - 64px),
            1400px
        );

    margin: auto;
}


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

.re-functions__header {
    margin-bottom:
        clamp(70px, 8vw, 120px);
}


.re-functions__eyebrow,
.re-seo__eyebrow {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 30px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: #50555a;
}


.re-functions__eyebrow span,
.re-seo__eyebrow span {
    width: 35px;
    height: 2px;

    background:
        var(--td-orange, #ff6500);
}


.re-functions__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

    gap:
        clamp(50px, 8vw, 130px);

    align-items: end;
}


.re-functions__heading h2 {
    margin: 0;

    font-size:
        clamp(
            50px,
            5.5vw,
            86px
        );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -.055em;
}


.re-functions__heading h2 strong {
    display: block;

    font-weight: inherit;

    color:
        var(--td-green, #159447);
}


.re-functions__heading p {
    max-width: 500px;

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: #484d51;
}


/* =========================================================
   DOS PANELES
========================================================= */

.re-functions__grid {
    display: grid;

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

    border-top:
        1px solid
        rgba(17,19,23,.18);

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


.re-function-panel {
    position: relative;

    min-width: 0;

    padding:
        clamp(40px, 5vw, 75px);

    transition:
        background .6s ease,
        color .6s ease;
}


.re-function-panel:first-child {
    border-right:
        1px solid
        rgba(17,19,23,.18);
}


.re-function-panel--visitor:hover {
    background:
        #ffffff;
}


.re-function-panel--admin:hover {
    background:
        #111317;

    color: #ffffff;
}


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

.re-function-panel__top {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 85px;
}


.re-function-panel__number {
    font-size: 11px;

    font-weight: 700;

    color:
        var(--td-orange, #ff6500);
}


.re-function-panel__type {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    color: #62676b;
}


.re-function-panel--admin:hover
.re-function-panel__type {
    color:
        rgba(255,255,255,.55);
}


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

.re-function-panel__small {
    display: block;

    margin-bottom: 12px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .13em;

    color:
        var(--td-green, #159447);
}


.re-function-panel__title h3 {
    margin:
        0
        0
        25px;

    font-size:
        clamp(
            39px,
            4vw,
            64px
        );

    font-weight: 700;

    line-height: .95;

    letter-spacing: -.05em;
}


.re-function-panel__title h3 strong {
    display: block;

    color:
        var(--td-orange, #ff6500);

    font-weight: inherit;
}


.re-function-panel__title > p {
    max-width: 500px;

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: #4c5155;
}


.re-function-panel--admin:hover
.re-function-panel__title > p {
    color:
        rgba(255,255,255,.70);
}


/* =========================================================
   LISTA FUNCIONES
========================================================= */

.re-function-list {
    margin-top: 60px;

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


.re-function {
    display: grid;

    grid-template-columns:
        35px
        1fr;

    gap: 20px;

    padding:
        24px
        0;

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


.re-function > span {
    padding-top: 3px;

    font-size: 9px;

    font-weight: 700;

    color:
        var(--td-green, #159447);
}


.re-function strong {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;

    font-weight: 700;
}


.re-function p {
    max-width: 420px;

    margin: 0;

    font-size: 12px;

    line-height: 1.65;

    color: #555a5e;
}


.re-function-panel--admin:hover
.re-function-list {
    border-color:
        rgba(255,255,255,.13);
}


.re-function-panel--admin:hover
.re-function {
    border-color:
        rgba(255,255,255,.13);
}


.re-function-panel--admin:hover
.re-function p {
    color:
        rgba(255,255,255,.62);
}


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

.re-function-panel__footer {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 35px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;

    color: #62676b;
}


.re-function-panel__status {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--td-green, #159447);

    box-shadow:
        0 0 12px
        rgba(21,148,71,.4);
}


.re-function-panel--admin:hover
.re-function-panel__footer {
    color:
        rgba(255,255,255,.60);
}


/* =========================================================
   SEO
========================================================= */

.re-seo {
    padding:
        clamp(120px, 11vw, 190px)
        0;

    background:
        #ffffff;

    color:
        #111317;
}


.re-seo__inner {
    width:
        min(
            calc(100% - 64px),
            1400px
        );

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0,.85fr)
        minmax(500px,1.15fr);

    gap:
        clamp(70px, 9vw, 150px);

    align-items: center;
}


.re-seo__content h2 {
    margin: 0;

    font-size:
        clamp(
            50px,
            5.5vw,
            86px
        );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -.055em;
}


.re-seo__content h2 strong {
    display: block;

    font-weight: inherit;

    color:
        var(--td-orange, #ff6500);
}


.re-seo__content > p {
    max-width: 570px;

    margin:
        35px
        0
        0;

    font-size: 15px;

    line-height: 1.8;

    color: #484d51;
}


/* CHECKS */

.re-seo__checks {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 35px;
}


.re-seo__checks span {
    padding:
        8px
        12px;

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

    border-radius: 100px;

    font-size: 9px;

    font-weight: 600;
}


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

.re-seo-card {
    padding:
        clamp(30px, 4vw, 55px);

    background:
        #111317;

    color: #fff;

    box-shadow:
        0 40px 90px
        rgba(0,0,0,.13);
}


.re-seo-card__top {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 25px;

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


.re-seo-card__status {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--td-green, #159447);
}


.re-seo-card__top small {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: .13em;

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


.re-seo-card__url {
    padding:
        35px
        0;

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


.re-seo-card__url small {
    display: block;

    margin-bottom: 9px;

    font-size: 8px;

    color:
        var(--td-green, #159447);
}


.re-seo-card__url strong {
    font-size:
        clamp(
            12px,
            1.3vw,
            16px
        );

    font-weight: 500;

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


.re-seo-card__result {
    padding:
        40px
        0;
}


.re-seo-card__result small {
    color:
        var(--td-green, #159447);
}


.re-seo-card__result h3 {
    max-width: 560px;

    margin:
        10px
        0
        15px;

    font-size:
        clamp(
            27px,
            3vw,
            43px
        );

    line-height: 1.05;

    letter-spacing: -.04em;
}


.re-seo-card__result p {
    max-width: 500px;

    margin: 0;

    font-size: 12px;

    line-height: 1.7;

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


.re-seo-card__technical {
    display: grid;

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

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


.re-seo-card__technical div {
    padding:
        20px
        5px;

    font-size: 8px;

    font-weight: 700;

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


.re-seo-card__technical span {
    margin-right: 5px;

    color:
        var(--td-green, #159447);
}


/* =========================================================
   CTA FINAL
========================================================= */

.re-cta {
    position: relative;

    overflow: hidden;

    padding:
        clamp(120px, 11vw, 190px)
        0;

    background:
        var(--td-orange, #ff6500);

    color: #ffffff;
}


.re-cta__inner {
    width:
        min(
            calc(100% - 64px),
            1400px
        );

    margin: auto;
}


.re-cta__label {
    display: block;

    margin-bottom: 30px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.re-cta h2 {
    max-width: 1100px;

    margin: 0;

    font-size:
        clamp(
            52px,
            6.5vw,
            105px
        );

    font-weight: 700;

    line-height: .9;

    letter-spacing: -.06em;
}


.re-cta h2 strong {
    display: block;

    font-weight: inherit;

    color: #111317;
}


.re-cta p {
    max-width: 600px;

    margin:
        40px
        0
        0;

    font-size: 15px;

    line-height: 1.8;

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


.re-cta__button {
    display: inline-flex;

    align-items: center;

    gap: 35px;

    margin-top: 40px;

    min-height: 60px;

    padding:
        0
        27px;

    border-radius: 100px;

    background: #111317;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .4s ease;
}


.re-cta__button:hover {
    transform:
        translateY(-4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .re-functions__heading,
    .re-seo__inner {
        grid-template-columns: 1fr;
    }


    .re-functions__grid {
        grid-template-columns: 1fr;
    }


    .re-function-panel:first-child {
        border-right: 0;

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

}


@media (max-width: 700px) {

    .re-functions__inner,
    .re-seo__inner,
    .re-cta__inner {
        width:
            calc(100% - 36px);
    }


    .re-function-panel {
        padding:
            45px
            20px;
    }


    .re-function-panel__top {
        margin-bottom: 55px;
    }


    .re-seo-card__technical {
        grid-template-columns:
            repeat(2,1fr);
    }

}