.feature-section {
    padding: 100px 0;
    background-color: #fff;
}

/* Fundo cinza claro alternado para separar as seções visualmente */
.feature-section:nth-child(even) {
    background-color: #0a1041;
}

.feature-section:nth-child(even) .feature-title{
    color: white;
}

.feature-section:nth-child(even) .feature-text{
    color: rgb(189, 189, 189);
}

.feature-section:nth-child(even) .feature-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.feature-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Classe de inversão aplicada pelo PHP */
.feature-section.row-reverse .feature-grid {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    text-align: left;
}

.feature-img-box {
    flex: 1;
}

.feature-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 25px 25px 50px rgba(0,0,0,0.05);
}

.feature-badge {
    color: #0040ff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-align: left;
}

.feature-title {
    font-size: 2.8rem;
    color: #1e293b;
    margin: 15px 0 25px;
    line-height: 1.1;
    text-align: left;
}

.feature-text {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: left;
}

.feature-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #1e293b;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    align-self: flex-start  
}

.feature-btn:hover {
    background: #1e293b;
    color: #fff;
}

/* Responsividade Mobile */
@media (max-width: 992px) {
    .feature-grid {
        flex-direction: column !important; /* Força empilhar no mobile */
        gap: 40px;
        text-align: center;
    }
    
    .feature-img {
        height: 300px;
    }

    .feature-title {
        font-size: 2rem;
    }
}