:root {
    --sat: #93d500;
    --sat-green-dark: #7fb300;
}

.hero {
    background: url('../img/banner-principal.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    height: 75vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.badge-float {
    position: absolute;
    top: 200px;
    right: 20px;
    background: var(--sat);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    animation: pulse 2s infinite;
    z-index: 1140;
}

.tag-icon{
    display: flex;
    justify-content: center;
    gap: 1.3rem;
    margin-top: 20px;
    flex-wrap: wrap;
}
.tag-icon p strong{
    color: var(--sat);
}
.cont-ban-btn{
    width: 100%;
    padding: 10px;
}
.cont-ban-btn a{
    background: #fff;
    color: var(--sat);
    display: block;
    width: 50vw;
    min-width: 100px;
    max-width: 400px;
    margin: auto;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--sat);
    transition: 0.3s;
}
.cont-ban-btn a:hover{
    background: var(--sat);
    color: #fff;
}

.tag-icon .badge {
    width: 13%;
    height: 32px;
    padding: 10px 5px;;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--sat);
    color: #fff;
}

.cont-prob-solu{
    width: 100%;
    padding: 30px 0;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0px;
}
.cont-prob-solu h2{
    text-align: center;
}

.split-screen {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.split-left,.split-right{
    background: #fff;
}
.split-left {
    width: 45%;
    border-radius: 10px 0px 0px 10px;
}
.split-right {
    width: 45%;
    border-radius: 0px 10px 10px 0px;
}
.split-screen .split-left img{
    width: 100%;
    border-radius: 10px 0px 0px 0px;
}
.split-screen .split-right img{
    width: 100%;
    border-radius: 0px 10px 0px 0px;
}
.split-screen .cont-head-vs h2{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 77px;
    padding: 10px 20px;
    font-size: clamp(1rem, 1.2vw, 1.4rem);
}
.cont-body-vs ul{
    margin-bottom: 0px !important;
}
.split-screen .cont-body-vs{
    padding: 12px 15px;
    font-size: 16px;
}
.split-left .cont-body-vs {
    background: #f8d7da;
    border-radius: 0px 0px 0px 10px;
}
.split-right .cont-body-vs {
    background: #d4edda;
    border-radius: 0px 0px 10px 0px;    
}
.btn-vs-contiza{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px 0px;
}
.btn-vs-contiza a{
    display: block;
    background: #fff;
    color: var(--sat);
    width: 50vw;
    min-width: 320px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--sat);
    box-shadow: 3px 5px 15px -2px rgba(0,0,0,0.25);
    transition: 0.3s;
}
.btn-vs-contiza a:hover{
    background: var(--sat);
    color: #fff;
}

.faq .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    transform: rotate(0deg);
}

.faq .accordion-button:not(.collapsed)::after {
    content: '-';
}
.carousel{
    margin-top: 20px;
}
.carousel h2{
    text-align: center;
}
.carousel img {
    width: 15%;
    object-fit: contain;
    margin: auto;
    margin: 0px 4%;
}
.carousel-inner .active{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* nichos */
.cont-cards{
    background: #fff;
    padding: 35px 0px;
}
.images-grid{
    display: flex;
    align-items: stretch;
}
.images-grid .items-img{
    width: 25%;
}
.images-grid .items-img figure{
    width: 100%;
    overflow: hidden;
    transition: all 500ms ease;
    display: block;
    margin-bottom: 0px;
}
.images-grid .items-img figure img{
    width: 100%;
    transition: all 500ms ease;
}
.images-grid .items-img figure img:hover{
    transform: scale(1.2);
}
.images-grid .items-img .img-body{
    text-align: center;
    transition: all 500ms ease;
}
.images-grid .items-img .img-body h5{
    background: none;
    padding: 10px 0px;
    transition: all 500ms ease;
}
.images-grid .items-img:hover .img-body h5{
    color: #fff;
    background: var(--sat);
    font-weight: bold;
}

/* cards products */
.cont-products{
    background: #f5f5f5;
    padding: 20px 0px !important;
}
.products-cards{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}
.cont-products .card{
    width: 350px;
    transition: all 500ms ease;
    box-shadow: 5px 5px 10px -9px rgba(0,0,0,0.3);
}
.cont-products .card:hover{
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3);
}
.cont-products figure{
    width: 100%;
    /* height: 300px; */
    overflow: hidden;
    transition: all 500ms ease;
    display: block;
    border-radius: 6px;
}
.cont-products figure img{
    width: 100%;
    height: 100%;
    transition: all 500ms ease;
}
.cont-products figure img:hover{
    transform: scale(1.2);
}
.cont-products .card-body{
    text-align: center;
}
.cont-products .card-body h5{
    border-bottom: 1px solid #cdcdce;
    padding-bottom: .5rem;
}
.cont-products .card-btn{
    display: block;
    width: 75%;
    margin: auto;
    padding: 10px 20px;
    border-radius: 10px;
    background: #fff;
    color: var(--sat);
    border: 2px solid var(--sat);
    box-shadow: 3px 5px 15px -2px rgba(0,0,0,0.25);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.cont-products .card-btn:hover{
    background: var(--sat);
    color: #fff;
}

.btn-pesona{
    background: #fff;
    color: var(--sat);
    border: 2px solid var(--sat);
    box-shadow: 3px 5px 15px -2px rgba(0,0,0,0.25);
    padding: 10px 50px;
    transition: 0.3s;
}
.btn-pesona:hover{
    background: var(--sat);
    color: #fff;
}
.software-recomendados h2{
    text-align: center;
}
.cards-software{
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.cards-software .card-soft{
    width: 200px;
    width: 200px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}
.cards-software .card-soft img{
    width: 100%;
    transition: transform 0.5s ease;
}
.cards-software .card-soft .softimg {
    width: 100%;
    border-radius: 10px;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.card-soft .h-card-soft{
    position: absolute;
    bottom: -100%; /* fuera de la tarjeta */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* fondo semi-transparente */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    transition: bottom 0.5s ease;
}

/* Hover: sube el texto */
.cards-software .card-soft:hover .h-card-soft {
    bottom: 0;
}

/* Efecto zoom a la imagen en hover */
.cards-software .card-soft:hover img {
    transform: scale(1.1);
}

.btn-sof{
    background: #fff;
    color: var(--sat);
    border: 2px solid var(--sat);
    display: block;
    width: 80%;
    margin: 0px 10%;
    padding: 5px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}
.btn-sof:hover{
    background: var(--sat);
    color: #fff;
}

@media (max-width: 765px) {
    .carousel img {
        width: 26%;
        object-fit: contain;
        margin: auto;
        margin: 0px 4%;
    }
    .images-grid{
        display: grid;
        align-items: stretch;
        grid-template-columns: repeat(2, 1fr);
    }
    .images-grid .items-img{
        width: 100%;
    }
    .split-screen {
        gap: 10px;
    }
    .split-left, .split-right {
        width: 90%;
        border-radius: 10px;
    }
    .split-left .cont-body-vs,
    .split-right .cont-body-vs{
        border-radius: 0px 0px 10px 10px;
    }
    
    .images-grid .items-img .img-body h5{
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .tag-icon span{
        width: 21%;
        min-width: 130px;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}