* {
  box-sizing: border-box;
}


.talento {
  padding: 96px 24px;
}

.talento-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.talento-copy h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tags span {
  border: 1px solid #000;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.talento-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.talento-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}

.talento-name {
  font-size: 18px;
  font-weight: 600;
}

.talento-role {
  font-size: 14px;
  color: #444;
}

/* Responsive */
@media (max-width: 900px) {
  .talento-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Carousel */
.talento-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

/* Card */
.talento-card {
  min-width: 320px;
  max-width: 320px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.talento-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.talento-card-body {
  padding: 20px;
}

.talento-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.talento-role {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #000;
}

.talento-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}

.carousel-btn.prev {
  left: -8px;
}

.carousel-btn.next {
  right: -8px;
}

.carousel-btn:hover {
  background: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .talento-card {
    min-width: 260px;
  }
}
.pod-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  height: 220px;
  overflow: hidden;
}

.pod-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
