/* Card container */
.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}

 
/* Card styles */
.card {
  width: 220px;
  height: 320px;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 5px 2px 30px black;
}

.card:hover {
  transform: scale(1.05);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: -1;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.card-content tt {
  margin: 0 0 10px 0;
  font-size: 1.5em;
  /*text-align: bottom; /*  o título */
}

.card-content pp {
  margin: 0;
  font-size: 0.9em;
  /*text-align: bottom; /*  o texto */
}

.layer {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  justify-content: bottom;
}

.info pp {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 5px;
  /*text-align: bottom; /*  o texto */
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Link Style */
.image-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.pp{
	background-color: rgba(128, 128, 128, 0.0);
	position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.tt{
	bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}



.goto-btn-container {
  text-align: center;
  margin-top: 2em;
}

.goto-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.goto-btn-img {
  width: 300px;
  height: 180pX;
  display: block;
}

.goto-label {
  margin-top: 0.5em;
  color: #333;
  font-size: 1em;
}



.portf-accordion .accordion-container,
.portf-accordion .accordion-item,
.portf-accordion .accordion-title,
.portf-accordion .accordion-content {
    background: transparent !important;
}



.portf-accordion .accordion-item:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(2px) !important;

  border-radius: 10px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.5s ease !important;
}

