.cta-watch {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 26px;
    background-color: #22c55e; /* verde bonito */
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, transform 0.15s ease;
  }
  
  /* Hover */
  .cta-watch:hover {
    background-color: #16a34a; /* verde mais escuro */
    transform: translateY(-2px);
  }
  
  /* Mobile: botão mais largo */
  @media (max-width: 600px) {
    .cta-watch {
      width: 100%;
      font-size: 17px;
      padding: 14px 20px;
    }
  }
  