.card-concurso {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  /* height: 100%; */
  box-shadow: 0 1px 5px rgba(127, 116, 116, 0.26);
}

.card-concurso:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.card-badge-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.tag-categoria {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #eff6ff;
  color: #006365;
  padding: 0.35rem 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-badge {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #d1fae5;
  background: #ecfdf5;
  color: #065f46;
}

.card-concurso h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #0f172a;
}

.card-concurso p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-info {
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
}

.info-item i {
  color: #cbd5e1;
  width: 14px;
}

.card-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.deadline-box span {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.deadline-date {
  color: #ff0000bf;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-details {
  background: #006365;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-details:hover {
  background: #fecf10;
  color: #ffffff;
}

.carousel-slide {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.carousel-slide .card-concurso {
  width: calc(33.333% - 1rem);
}

@media (max-width: 992px) {
  .carousel-slide .card-concurso {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
  }

  .carousel-slide .card-concurso {
    width: 100%;
  }
}

/* /////////////////////////////// */
.cta-section {
  padding: 40px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f1f5f9;
}

.cta-card {
  margin: 0 auto;
  background: #006365;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.3);
}

.cta-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 97, 255, 0.15) 0%,
    transparent 70%
  );
  z-index: 1;
}

.cta-content {
  padding: 64px;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.cta-content h2 {
  font-size: 42px;
  color: #f8fafc;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.cta-content h2 span {
  color: #38bdf8;
}

.cta-content p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 500;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: #0061ff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 14px;
  height: 14px;
  color: white;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-main {
  background: #fecf10;
  color: white;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(0, 97, 255, 0.4);
}

.btn-main:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(0, 97, 255, 0.5);
}

.btn-secondary {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.btn-secondary:hover {
  opacity: 0.8;
}

.cta-visual {
  background: #1e293b;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
  color: white;
  bottom: 40px;
  /* left: -40px; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 968px) {
  .cta-card {
    grid-template-columns: 1fr;
    display: none;
  }
  .cta-visual {
    height: 300px;
    order: -1;
  }
  .cta-content {
    padding: 40px 30px;
    text-align: center;
  }
  .cta-benefits {
    justify-items: center;
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-main {
    width: 100%;
  }
  .floating-card {
    left: 20px;
    bottom: 20px;
  }
}
