/* CTA ANUNCIAR (reutilizável: studios + home) */

.cta-anunciar{
  width:100%;
  background:#fff;
  border-top:0;
  padding:16px 0 10px;
}

.cta-anunciar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  box-sizing:border-box;
}

.cta-anunciar-content{
  display:flex;
  align-items:center;
  gap:14px;
  flex:1 1 auto;
  min-width:260px;
  box-sizing:border-box;
}

.cta-icon{
  position:relative;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ff6600;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  flex-shrink:0;
  line-height:1;
}

.cta-icon-main{
  font-size:18px;
  transform:translateX(0px);
}

.cta-icon-badge{
  position:absolute;
  top:-3px;
  right:-3px;
  font-size:14px;
  color:#1f4d46;
  background:#fff;
  border-radius:50%;
  line-height:1;
}

.cta-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.cta-title{
  font-size:16px;
  font-weight:600;
  color:#222;
  line-height:1.2;
}

.cta-subtitle{
  font-size:13px;
  color:#666;
  line-height:1.3;
}

.cta-anunciar .cta-btn{
  white-space:nowrap;
  align-self:center;
  background:#ff6600;
  color:#fff;
  padding:12px 24px;
  border-radius:8px;
  font-weight:600;
  transition:all .2s ease;
}

.cta-anunciar .cta-btn:hover{
  background:#e65c00;
}

@media (max-width:768px){
  .cta-anunciar{
    padding:18px 0 14px;
  }

  .cta-anunciar-inner{
    padding:0 16px;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .cta-anunciar .cta-btn{
    width:100%;
    text-align:center;
  }
}