/* ========================================
   L+ SISTEMAS - WHY CHOOSE CARDS
   Layout igual aos serviços
   ======================================== */

/* Cards */
.why-choose-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.why-choose-two__single-inner {
    position: relative;
    display: block;
    background: var(--logistiq-white);
    overflow: hidden;
    border-radius: var(--logistiq-bdr-radius);
    z-index: 1;
}

.why-choose-two__single-inner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(var(--logistiq-black-rgb), 0.50);
    z-index: 1;
    transition: all 500ms ease;
}

.why-choose-two__single:hover .why-choose-two__single-inner::before {
    opacity: 0.70;
}

/* Área da imagem */
.why-choose-two__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.why-choose-two__img-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #1a3a52 0%, #0d1f2d 100%);
}

.why-choose-two__single-img img {
    width: 100%;
    transform: scale(1.0);
    transition: transform 500ms ease;
}

.why-choose-two__single:hover .why-choose-two__single-img img {
    transform: scale(1.05);
}

/* Conteúdo */
.why-choose-two__single-content {
    position: relative;
    display: block;
    padding: 42px 40px 47px;
    z-index: 2;
}

.why-choose-two__single-content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 17px;
}

.why-choose-two__single-content h2 a {
    color: var(--logistiq-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.why-choose-two__single-content h2 a:hover {
    color: var(--logistiq-base);
}

.why-choose-two__single-content p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

/* Ícone flutuante no canto direito */
.why-choose-two__single .icon {
    position: absolute;
    top: 230px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: var(--logistiq-base);
    border-radius: 50%;
    z-index: 3;
    transition: all 500ms ease;
}

.why-choose-two__single .icon span {
    position: relative;
    display: inline-block;
    color: var(--logistiq-white);
    font-size: 45px;
    line-height: 45px;
    transition: all 500ms ease;
}

.why-choose-two__single:hover .icon {
    background: var(--logistiq-black);
}

.why-choose-two__single:hover .icon span {
    transform: rotate(360deg);
}

/* Responsivo */
@media (max-width: 991px) {
    .why-choose-two {
        padding: 80px 0px 50px;
    }
    
    .why-choose-two__single {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-two {
        padding: 60px 0px 30px;
    }
    
    .why-choose-two__img-placeholder {
        height: 240px;
    }
    
    .why-choose-two__single .icon {
        top: 190px;
        right: 30px;
        width: 80px;
        height: 80px;
    }
    
    .why-choose-two__single .icon span {
        font-size: 40px;
    }
    
    .why-choose-two__single-content {
        padding: 35px 30px 40px;
    }
    
    .why-choose-two__single-content h2 {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .why-choose-two__img-placeholder {
        height: 220px;
    }
    
    .why-choose-two__single .icon {
        top: 170px;
        right: 25px;
        width: 70px;
        height: 70px;
    }
    
    .why-choose-two__single .icon span {
        font-size: 35px;
    }
    
    .why-choose-two__single-content {
        padding: 30px 25px 35px;
    }
    
    .why-choose-two__single-content h2 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .why-choose-two__single-content p {
        font-size: 15px;
        line-height: 24px;
    }
}
