/* #imgEvento {
	background-image: url("/wwwroot/siteold/JAP/images/JAP_Evento.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	//width: 100%;
	height: 100%;
} */

/* #container_txt p {
	font-size: 13px;
}

#container_txt span {
	font-size: 13px;
}

#img_Mini {
	height: 25px;
	margin-bottom: 10px;
}


@media (max-width: 767px) {
	#imgEvento {
		margin-top: 20px;
		height: 250px;
		background-size: cover;
		background-position: center;
	}
} */

/* CONTAINER */
.container {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* CARD */
.roteiro-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.10);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.roteiro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* TOPO */
.roteiro-topo {
    padding: 18px 18px 10px 18px;
}

.roteiro-categoria {
    display: flex;
    align-items: center;       /* Centraliza verticalmente */
    justify-content: center;   /* Centraliza horizontalmente */

    background: #f2f2f2;
    color: #666;
    font-size: 12px;
    font-weight: 600;

    padding: 6px 12px;
    border-radius: 15px;

    margin-bottom: 12px;

    height: 50px;
    width: 100%;

    text-align: center;
}

.roteiro-titulo {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin: 0;
}

/* IMAGEM */
.roteiro-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* BODY */
.roteiro-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* SUBTÍTULO */
.roteiro-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}

/* TEXTOS */
.roteiro-body span {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* LINHA */
.roteiro-body hr {
    margin: 15px 0;
    border-color: #e5e5e5;
}

/* GUIA */
.roteiro-guia {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .roteiro-titulo {
        font-size: 18px;
    }

    .roteiro-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .roteiro-card {
        border-radius: 18px;
    }

    .roteiro-img {
        height: 180px;
    }
}