.seccion-qr {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.card-qr {
    background: #F5F5F7;
    border-radius: 20px;
    display: flex;
    width: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    z-index: 1;
    /* border: 1px solid #e0e0e0; */
}

.card-qr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 82, 79, 0.05) 0%, rgba(128, 184, 177, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card-qr:hover {
    transform: translateY(-10px);
}

.card-qr:hover::before {
    opacity: 1;
}

.qr-left {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.card-qr-content {
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.card-qr-img {
    background-image: url('../../repos/images/phone1_1.png');
    background-size: contain;
    background-position: center;
    width: 22%;
    min-height: 292px;
    transition: all 0.4s ease;
    background-repeat: no-repeat;
}

.card-qr:hover .card-qr-img {
    transform: scale(1.02);
}

.qr-icon-container {
    margin-bottom: 15px;
}

.icon-qr {
    font-size: 28px;
    color: #39524F;
    transition: all 0.3s ease;
}

.card-qr:hover .icon-qr {
    transform: scale(1.2);
    color: #80B8B1;
}

.card-qr-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: #222;
    position: relative;
    display: inline-block;
}

.card-qr-titulo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #80B8B1 0%, #39524F 100%);
    transition: all 0.4s ease;
}

.card-qr:hover .card-qr-titulo::after {
    width: 100px;
}

.card-qr-texto {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 30px;
    color: #555;
    max-width: 80%;
}

.qr-code-container {
    text-align: center;
    padding: 15px;
    background-color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.card-qr:hover .qr-code-container {
    transform: scale(1.05);
}

.qr-code {
    width: 150px;
    height: 150px;
    transition: all 0.3s ease;
}

.card-qr:hover .qr-code {
    transform: scale(1.03);
}

/* BOTÓN oculto por defecto */
.boton-probar {
    display: none;
}

/* TABLET */
@media (max-width: 768px) {
    .card-qr {
        flex-direction: row-reverse;
    }

    .qr-left,
    .card-qr-content,
    .card-qr-img {
        width: 100%;
    }

    .qr-left {
        order: 1;
        padding: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .card-qr-content {
        order: 2;
        padding: 0px;
    }

    .card-qr-titulo {
        margin: 0 0 10px;
    }

    .card-qr-texto {
        margin: 0 0 15px;
    }

    .card-qr-img {
        order: 3;
        height: 200px;
        min-height: 205px;
        border-top: 1px solid #f0f0f0;
    }

    .card-qr-texto {
        max-width: 100%;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .card-qr-titulo {
        font-size: 1.4rem;
    }

    .qr-left {
        display: none;
    }

    .card-qr-texto,
    .qr-code-container {
        display: none;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }

    .card-qr-img {
        height: 280px;
        min-height: 280px;
        background-size: 80%;
    }

    .boton-probar {
        display: inline-block;
        background-color: #000;
        color: white;
        font-size: 15px;
        padding: 6px 23px;
        border: 2px solid #000;
        border-radius: 30px;
        cursor: pointer;
        outline: none;
        transition: all 0.3s ease;
        margin-top: 15px;
        font-weight: 500;
        font-family: 'Montserrat';
        letter-spacing: 0.2px;
    }

    .boton-probar:hover {
        background-color: white;
        color: #000;
    }

    .boton-probar:active {
        transform: scale(0.97);
    }

    .product-popup.dos {
        position: absolute;
        bottom: 57%;
        right: 9px;
        width: 210px;
        height: 95px;
    }
}