#ced-1 .contenedor {
    font-family: var(--e-global-typography-cfb8296-font-family), Sans-serif;
    margin: 0 auto;
    max-width: 1300px;
    padding: 60px 20px;
}

#ced-1 .container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    #ced-1 .container-grid { 
        grid-template-columns: 1fr;
    }
}

/* ---- Columna izquierda: formulario ---- */
#ced-1 .eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    color: #555;
    margin: 0 0 8px;
    text-transform: uppercase;
}
#ced-1 .titulo-form {
    font-size: 50px;
    font-style: normal;
    font-weight: 300 !important;
    margin: 0 0 6px;
    line-height: 1.15;
}
#ced-1 .subtitle-form {
    color: #666;
    margin: 0 0 30px !important;
    font-size: 14px;
}

/* ---- Columna derecha: tabs + slider ---- */
#ced-1 .tabs-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 24px;
}
#ced-1 .tabs {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}
#ced-1 .tabs::-webkit-scrollbar {
    display: none;
}

#ced-1 .tabs .tab-dorm {
    white-space: nowrap;
    padding: 10px 2px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    background: none !important;
}
#ced-1 .tabs .tab-dorm.active {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    border-bottom: 3px solid #FFC629 !important;
}

#ced-1 .tabs-arrow {
    margin-left: auto;
    padding-left: 12px;
    cursor: pointer;
    color: #999;
    font-size: 22px;
    display: none;
}
@media (max-width: 900px) {
    #ced-1 .tabs {
        display: none;
    }
    #ced-1 .tabs-arrow {
        display: none;
    }
}

#ced-1 .tabs-mobile-select {
    display: none;
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
}

@media (max-width: 900px) {
    #ced-1 .tabs-mobile-select {
        display: block;
    }
}

/* ---- Tarjeta del plano ---- */
#ced-1 .plano-image-box {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
#ced-1 .plano-image-box img.slider-img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

#ced-1 .zoom-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
}

#ced-1 .zoom-btn svg {
    pointer-events: none;
}

#ced-1 .slide-arrow {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    background: #fff;
    cursor: pointer;
}

#ced-1 .slide-arrow svg {
    width: 24px;
    display: block;
    pointer-events: none;
}

#ced-1 .slide-arrow:hover {
    background: #f7f7f7;
}

#ced-1 .plano-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 28px;
}

#ced-1 .ced-lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: none; align-items: center; justify-content: center; z-index: 1000;
}
#ced-1 .ced-lightbox img {
    max-width: 90%;
    max-height: 90%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    border-radius: 8px;
}
#ced-1 .ced-close-lightbox {
    position: absolute; top: 20px; right: 30px;
    color: white; font-size: 40px; font-weight: bold; cursor: pointer;
}