.conectado-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    color: #0e668d;
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.conectado-text {
    color: #0e668d;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.conectado-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    cursor: crosshair;
    user-select: none;
    -webkit-user-select: none;
}

.fade-in-bottom {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-bottom.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para el contenedor de imagen con lupa */
.magnifier-container {
    position: relative;
    overflow: visible;
}

/* Estilos para la lupa */
.magnifier-glass {
    position: absolute;
    border: 3px solid #0e668d;
    border-radius: 50%;
    cursor: none;
    width: 200px;
    height: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-color: white;
}

.magnifier-glass.active {
    opacity: 1;
}

/* Modo móvil */
@media (max-width: 768px) {
    .magnifier-glass {
        width: 150px;
        height: 150px;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .conectado-text {
        font-size: 1.2rem;
    }
    
    .conectado-img {
        cursor: grab;
    }
    
    .conectado-img.dragging {
        cursor: grabbing;
    }
}

/* Instrucciones de uso */
.magnifier-instructions {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.85rem;
    color: #0e668d;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.magnifier-container:hover .magnifier-instructions {
    opacity: 1;
}

/* Ocultar instrucciones en desktop */
@media (min-width: 769px) {
    .magnifier-instructions {
        display: none;
    }
}