.alcateia-destaque 
{
  padding: 180px 8%;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(168,85,247,0.15), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(236,72,153,0.12), transparent 60%),
    linear-gradient(160deg, #070712, #0b0b1f, #050510);
  overflow: hidden;
}

.alcateia-container 
{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.foto-card-elite {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  max-height: 520px;
  box-shadow: 0 50px 120px rgba(0,0,0,0.8);
  transition: 0.8s cubic-bezier(.2,.8,.2,1);
}

.foto-card-elite img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.foto-card-elite:hover {
  transform: translateY(-15px) scale(1.03);
}

.foto-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
}

.foto-info-elite {
  position: absolute;
  bottom: 35px;
  left: 35px;
  color: #fff;
}

.badge-elite 
{
  background: linear-gradient(135deg, #a855f7, #ec4899);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
}

.foto-info-elite h3 
{
  font-size: 30px;
  margin-bottom: 5px;
}

.foto-info-elite p 
{
  font-size: 14px;
  color: #c084fc;
}

.titulo-elite 
{
  font-size: 40px;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 3px;
}

.titulo-elite span
{
  background: linear-gradient(90deg, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.titulo-elite span::after 
{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ec4899, #a855f7);
  animation: underlineGlow 2s infinite alternate;
}

@keyframes underlineGlow 
{
  from { opacity: .4; }
  to { opacity: 1; }
}

.video-card-elite 
{
  border-radius: 24px;
  overflow: hidden;
  max-height: 520px;
  box-shadow: 0 50px 120px rgba(0,0,0,0.8);
  transition: 0.6s ease;
}

.video-card-elite iframe 
{
  width: 100%;
  height: 520px;
  border: none;
}

.video-card-elite:hover 
{
  transform: scale(1.02);
}

.btn-elite 
{
  display: inline-block;
  margin-top: 40px;
  padding: 18px 45px;
  border-radius: 60px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.6s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 25px 70px rgba(168,85,247,0.5);
}

.btn-elite:hover 
{
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 35px 90px rgba(236,72,153,0.7);
}

.reveal-left,
.reveal-right 
{
  opacity: 0;
  transition: 1.4s cubic-bezier(.2,.8,.2,1);
}

.reveal-left 
{
  transform: translateX(-100px);
}

.reveal-right 
{
  transform: translateX(100px);
}

.reveal-left.active,
.reveal-right.active 
{
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 992px) {
  .alcateia-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .foto-card-elite img,
  .video-card-elite iframe {
    height: 380px;
  }

  .titulo-elite {
    font-size: 34px;
  }
}