.roteiro-card{
     display:grid;
    grid-template-columns:320px 1fr auto;
    gap:0;
    column-gap:40px;
    align-items:center;
    padding:1.5rem;
    border:1px solid #e6e0d3;
    border-radius:20px;
    background:#f9f9f9;
	margin-bottom: 20px;
	text-align: left;
	border-top: 4px solid #00412f;
}

.roteiro-titulo {
    color: #00412f;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-size: 24px;
    text-align: center;
	margin-bottom:10px;
	
}


.roteiro-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    display:block;
}

.roteiro-info h2{
    margin:0 0 .75rem;
    color:#204a2c;
    color:#1f4d2e;
	font-size: 24px;
}

.roteiro-info p{
    margin:0 0 1rem;
    line-height:1.6;
}

.roteiro-meta{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    list-style:none;
    padding:0;
    margin:0;
}

.btn-saiba{
    display:inline-block;
    padding:.9rem 1.8rem;
    border:2px solid #204a2c;
    border-radius:999px;
    text-decoration:none;
    color:#204a2c;
    font-weight:600;
}

.btn-saiba:hover{
    background:#204a2c;
    color:#fff;
}

@media (max-width:900px){
    .roteiro-card{
        grid-template-columns:1fr;
    }

    .roteiro-cta{
        text-align:center;
		margin-top: 15px;
    }

	.roteiro-info h2{
		margin-top:10px;
		
	}
}


@media (max-width: 900px) {
    .roteiro-titulo {
        font-size: 14px !important; 
        margin-bottom: 1.2rem;
    }
}