.svr-living-kgraph {
    position: relative;
    color: #fff;
    font-family: "Inter", sans-serif;
    overflow: hidden;
}

/* === HEADER FIJO (solo visible dentro del bloque) === */
.fixed-header {
    position: absolute;
    top: 12vh;
    left: 0;
    z-index: 100;
    max-width: 550px;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    transform: translateY(-50%);
}

.fixed-header.visible {
    opacity: 1;
    transform: translateY(0%);
}

.fixed-header h2 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(92deg, rgba(237, 237, 237, 0.30) 4.93%, #EDEDED 40.82%, rgba(237, 237, 237, 0.50) 88.27%, rgba(237, 237, 237, 0.03) 103.58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.fixed-header p {
    font-size: 18px;
    color: #bfc7da;
    line-height: 1.6;
}

/* === BOTÓN FIJO ABAJO (solo visible dentro del bloque) === */
.btn-fixed {
    position: absolute;
    bottom: 10vh;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: all 0.6s ease;
    transform: translateY(50%);
}

.btn-fixed.visible {
    opacity: 1;
    transform: translateY(0%);
}

.btn-demo {
    display: inline-block;

    color: #FFF;

text-align: center;
font-family: Britanica-Bold;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;


    text-decoration: none;
    transition: all 0.3s ease;
}



/* === BLOQUE PRINCIPAL === */
.sticky-dual {
    display: flex;
    justify-content: space-between;
    gap: 5vw;
    padding: 0vh 6vw;
    min-height: 400vh;
    margin-top: 0;
    /*padding-top: 400px;*/ /* si quieres mantener el espacio superior visual */
    position: relative;
}

.column-left,
.column-right {
    width: 45%;
    position: relative;
    height: 100vh !important;
}

/* === CARDS === */
.cards-wrapper {
    height: 60vh;
    top: 40vh;
    position: relative;
}

.info-block {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.info-block-container {
    border-radius: 15px;
    transition: opacity 0.6s ease;
    backdrop-filter: blur(5px);
    background: #515380;


    border: 2px solid #7893D7;
    overflow: hidden;
    padding: 7px;

}

.info-block.active {
    opacity: 1;
}

.info-block-border {
    border-radius: 15px;
    background: #000000;
    background: linear-gradient(23deg, rgba(0, 0, 0, 1) 72%, rgba(255, 109, 0, 1) 100%);
    padding: 1px;
}

.info-block-inner {
    display:grid;
    grid-template-columns: 20% 80%;
    border-radius: 16px;

    background: #060A20;
    padding: 12px;
}
.info-block-inner .the-icon {
    display:flex;
    align-content:center;
}

.info-block-inner .icon {
    width: 62px;
    height: 62px;
}

.info-block-inner h3 {
        font-size: 24px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}
.info-block-inner p {
    font-size: 16px;
    color: #d0d4e8;
}

/* === IMÁGENES === */
.images-wrapper {
    width: 100%;
    height: 80vh;
}

.images-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease;
    margin: auto;
}

.images-wrapper img.visible {
    opacity: 1;
}