.tama-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}

.tama-carousel {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.tama_card {
  min-width: calc(100% / 3); /* Mostra 3 card */
  box-sizing: border-box;
  padding: 10px;
}

.carousel-prev,
.carousel-next {
  background: #ccc;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.2rem;
}

.card-link {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/*----------------------------------------*/
:root {
  --blue: #004c9d;
  --light-blue: #6694c4;
  --green: #b5c931;
  --background-color-contact-form: #57718b;
}

.tama_container_card{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tama_card_image {
  position: relative;
}
.tama_card:hover .tama_card_image::before{
content: "+";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 28px;
font-weight: 700;
border: 2px solid #004c9d;
background: #004c9d;
width: 45px;
height: 45px;
text-align: center;
line-height: 42px;
pointer-events: none;
}
.tama_card:nth-child(even) .tama_container_card{
    flex-direction: column-reverse;
}

.tama_container_card .tama_card_image{
    height: auto;
}

.tama_container_card .tama_card_image img {
  width: 100%;
  height: 100%;
  display: block;
}

.tama_container_card .tama_card_description{
    height: auto;
    background: #fff;
    position: relative;
    padding: 20px;
}

.tama_container_card .tama_card_description::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 0px;
    height: 0px;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 20px;
}
.tama_container_card p{
  color:#004c9d;
  font-weight:700;
  line-height: 24px;
}
.view_more_home span{
  color: #000;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 2px solid #b5c931 !important;
  letter-spacing: 0px;
}
.view_more_home:hover span{
  color:#004c9d;
}
.tama_card:nth-child(even) .tama_container_card .tama_card_description::before {
    bottom: unset;
    top: 100%;
    border-color: #fff transparent transparent;
}

.tama_card:nth-child(odd) .tama_container_card .tama_card_description::before {
    bottom: 100%;
    top: unset;
    border-color: transparent transparent #fff transparent;
}

.carousel-prev, .carousel-next{
    background: #fff;
    border-radius: 7px;
    line-height: 1.2rem;
}

.carousel-prev::before{
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--blue);
}

.carousel-next::before{
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--blue);
}



/* MOBILE */
@media (max-width: 767px) {
  .tama_card {
    min-width: calc(100% / 1); /* Mostra 1 card */
  }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 991px) {
  .tama_card {
    min-width: calc(100% / 2); /* Mostra 2 card */
  }
}

/* DESKTOP  */
@media (min-width: 992px) {

}