/* ================= BENEFITS HIGH-DENSITY 2026 ================= */
.benefits {
    background-color: #ffffff;
    /* Un degradado muy suave que apenas toca el blanco */
    background-image:
        radial-gradient(circle at 100% 0%, rgba(96, 226, 255, 0.452) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(39, 139, 154, 0.375) 0%, transparent 40%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Marca de agua estática corregida */
.benefits::before {
    transform: translateY(var(--watermark-pos, 0));
    will-change: transform;

    content: "SOFTWARE";
    position: absolute;
    top: 25%;
    right: -2%;
    font-size: 12vw;
    font-weight: 950;
    color: rgba(39, 154, 148, 0.1);
    letter-spacing: -5px;
    z-index: 0;
    pointer-events: none;
}

/* Nueva marca de agua inferior para equilibrio */
.benefits::after {
    transform: translateY(var(--watermark-pos, 0));
    will-change: transform;

    content: "EXPANCIÓN";
    position: absolute;
    bottom: 20%;
    left: 2%;
    font-size: 10vw;
    font-weight: 950;
    color: rgba(39, 154, 148, 0.1);
    letter-spacing: -5px;
    z-index: 0;
    pointer-events: none;
}

.benefit-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    /* Un poco más estrecho para mayor foco */
    margin: 0 auto 60px;
    /* Reducción de 120px a 60px para comprimir vertical */
    padding: 0 40px;
    gap: 60px;
    /* Gap más técnico y apretado */
    position: relative;
    z-index: 1;
}

/* TEXTO: Más compacto y potente */
.text {
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.text h2,
.text h3 {
    line-height: 1;
    /* Títulos más pegados */
    letter-spacing: -2.5px;
    color: #01080b;
}

.text h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.text h3 {
    font-size: 38px;
    margin-bottom: 12px;
}

.text p {
    color: #444;
    line-height: 1.5;
    font-size: 17px;
    max-width: 90%;
}

/* TAG: Minimalista */
.tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    background: #f0fdfa;
    color: #279a94;
    border-radius: 4px;
    /* Más cuadrado = más industrial/pro */
    margin-bottom: 15px;
    font-weight: 800;
    border-left: 3px solid #279a94;
}

/* VISUALES: Estilo Glass-Edge */
/* VISUALES: Estilo Glass-Edge con Animación 2026 */
.visual {
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    /* Fondo base para que la imagen resalte */

    /* Transición suave para todos los estados */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

/* El efecto de "Barrido de Luz" (Flare) */
.visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(96, 226, 255, 0.2),
            transparent);
    transition: left 0.8s ease;
    z-index: 2;
}

/* Control de la imagen interna */
.visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 0.6s ease;
}

/* --- ESTADO HOVER --- */
.visual:hover {
    transform: translateY(-10px) scale(1.02) rotateX(2deg);
    /* Sombra con el color #60e2ff */
}

.visual:hover::before {
    left: 150%;
    /* Dispara el destello de luz de izquierda a derecha */
}

.visual:hover img {
    transform: scale(1.1);
    /* Zoom suave a la imagen */
    filter: saturate(1.2);
    /* Sutil aumento de viveza */
}

.visual.big {
    height: 440px;
    /* Reducido de 580px para compactar el diseño */
}


/* ASIMETRÍA SUTIL (Menos agresiva para no desperdiciar espacio) */
.block-1 .visual {
    transform: translateY(-15px);
}

.block-2 .visual {
    transform: translateY(15px);
    order: -1;
}

.block-3 .visual {
    transform: translateY(-10px);
}

/* Animación activa */
.is-visible .text {
    opacity: 1;
    transform: translateY(0);
}