.elementor-1386 .elementor-element.elementor-element-3fcc63d{--display:flex;}.elementor-1386 .elementor-element.elementor-element-4ff920f{--spacer-size:50px;}.elementor-1386 .elementor-element.elementor-element-904d417{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1386 .elementor-element.elementor-element-38690ef{--spacer-size:50px;}.elementor-1386 .elementor-element.elementor-element-e0f6a00{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1386 .elementor-element.elementor-element-6778e41{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-79a975f *//* Reseteo básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f4f7f6;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* El contenedor principal */
.card-container {
    display: flex;
    width: 850px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Estilo panel izquierdo (Azul) */
.sidebar {
    background-color: #5a6d8e;
    color: white;
    width: 40%;
    padding: 40px;
}

.sidebar h1 {
    font-size: 26px;
    margin-bottom: 20px;
}

.sidebar p {
    color: #cbd5e0;
    line-height: 1.5;
}

/* Estilo panel derecho (Blanco) */
.main-content {
    width: 60%;
    padding: 30px 50px;
    position: relative;
    text-align: center;
}

.close-x {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
}

h3 {
    margin-top: 10px;
    color: #333;
}

.step-text {
    color: #777;
    margin-bottom: 20px;
}

.qr-wrapper img {
    width: 170px;
    margin-bottom: 20px;
}

/* Botones Turquesa */
.button-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
}

.action-btn {
    background-color: #00c2cb;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    background-color: #00a8af;
}

/* Enlaces inferiores */
.links-footer {
    text-align: left;
    font-size: 13px;
}

.helper-text {
    text-align: center;
    color: #999;
    margin-bottom: 15px;
}

.link-block {
    margin-bottom: 12px;
}

.link-block label {
    display: block;
    color: #888;
    margin-bottom: 3px;
}

.url-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.url-copy a {
    color: #00c2cb;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}

.url-copy i {
    color: #bdc3c7;
    cursor: pointer;
}

/* Diseño para móviles */
@media (max-width: 700px) {
    .card-container { flex-direction: column; width: 95%; }
    .sidebar, .main-content { width: 100%; }
}/* End custom CSS */