
/* =========================
   SOFTWARE SIAP
========================= */

.software-section{
    padding: 0px 0;
    background: #f8fafc;
    position: relative;
}

.hero-badge{
    margin-bottom: 15px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;

    letter-spacing: 1px;
	text-align: center;
}

.hero-badge-modulos{
    margin-bottom: 15px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
	text-align: center;
}

/* TITLE */
.hero-title{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 20px;
}

/* TEXT */
.card-text_servicios{
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-text);
    text-align:justify;
}
/* HEADER */

.software-header{
    text-align: center;
    margin-bottom: 60px;
}

.section-tag{
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #dbeafe;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-title-modern{
    font-size: 54px;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-description{
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: var(--color-text-muted);
}

/* HERO VIDEO */

.software-hero-video{
    position: relative;
    width: 75%;
    height: 500px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--color-heading);
    margin-bottom: 80px;
    place-self: center;
}

.software-hero-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */

.video-overlay{
    position: absolute;
    inset: 0;
}

/* VIDEO CONTENT */

.video-content{
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 234px;
    background-color: #ffffffab;
    border-radius: 33px;
    padding: 10px;
    text-align: center;
}

.video-badge{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}



/* GRID */

.software-content-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    margin-bottom: 90px;
}

/* VIDEO SECUNDARIO */

.software-video-card{
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--color-heading);
    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}

.software-video-card video{
    width: 100%;
    display: block;
    object-fit: cover;
}

/* TEXTO */

.software-text-card{
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

.mini-badge{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #dbeafe;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}



/* CARDS */

.software-cards-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
}

.software-card{
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

.software-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(15,23,42,0.10);
}

/* CARD VIDEO */

.software-card-video{
    width: 100%;
    background: var(--color-heading);
    overflow: hidden;
}

.software-card-video video{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* CARD CONTENT */

.software-card-content{
    padding: 35px;
}

.software-subtitle{
    color: var(--color-primary) !important;
    font-weight: 700;
    margin-bottom: 18px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .software-content-grid{
        grid-template-columns: 1fr;
    }

    .video-content{
        left: 40px;
        right: 40px;
        max-width: 100%;
    }

    .video-content h3{
        font-size: 46px;
    }

}

@media(max-width:768px){

    .software-section{
        padding: 70px 0;
    }

    .section-title-modern{
        font-size: 38px;
    }

    .section-description{
        font-size: 16px;
    }

    .software-hero-video{
        height: 420px;
        border-radius: 24px;
    }

    .video-content{
        left: 25px;
        right: 25px;
    }

    .video-content h3{
        font-size: 34px;
    }

    .video-content p{
        font-size: 15px;
    }


    .software-card-content{
        padding: 28px;
    }

    .software-card-video video{
        height: 220px;
    }

    .hero-badge{
		font-size: 20px;
		padding: 10px 18px;
	}

	.hero-title{
		font-size: 20px;
	}

	.card-text_servicios
	{
		font-size: 20px;
	}

}

